git push reject
git fetch korg
git rebase -i korg/nemo
保持commit不变,添加更改。
git commit --amend
===============================================
哈哈,我找到怎么样找到删除的commit:
http://serverfault.com/questions/56722/git-seemed-to-be-in-no-branch-and-then-lost-my-changes
As long as you've not done a git gc
, then you've not lost anything. All you need to do is find it again :) What do you get with:
git reflog showThat should show you what happened, and the id of the missing node(s).
============================================================================================
摘录一下另一哥们的总结:http://jianlee.ylinux.org/Computer/Software/git.html#sec3
命令行项目目录下输入 "git gui" 就可以启动 Gui 操作,简单明了,我很喜欢 这种方式,一目了然!
Qgit 是一个更好的 GUI 软件 : http://digilander.libero.it/mcostalba/
git-reset --hard HEAD~1效果就是在当前的branch上,回退一次commit,在回退到的commit之后的所有修 改都被丢弃,所以要慎重使用。而git-reset —hard 的效果就是,在最后的一次 commit之后的所有修改都被丢弃。所以,建议的操作是:
git-checkout -b tmpbranch git-reset --hard
git-reset --soft HEAD~1效果就是仅仅取消一次commit,但是所有的修改都保留
git-revert <commitid>一般是按照某一次的commit完全反向的进行一次commit,如果commitid是最近一 次commit的commitid,那么他的效果和 git-reset —hard HEAD~1 && git-commit -a -m ‘revert commit <commitid> xxx....' 完全一下。
git archive --format=tar --prefix=tms-mutter-0.25.6/ HEAD | bzip2 / > ../tms-mutter-0.25.6.tar.bz2
patch -p1 < *.patch git am *.patchhttp://blog.csdn.net/muojie/article/details/6655827
============================================================================
以下转自:http://wuzongbin2008.blog.163.com/blog/static/2146873320110613821860/
Posted by admin in Git
reset命令有3种方式:
以下是一些reset的示例:
#回退所有内容到上一个版本 git reset HEAD^ #回退a.py这个文件的版本到上一个版本 git reset HEAD^ a.py #向前回退到第3个版本 git reset –soft HEAD~3 #将本地的状态回退到和远程的一样 git reset –hard origin/master #回退到某个版本 git reset 057d #回退到上一次提交的状态,按照某一次的commit完全反向的进行一次commit git revert HEAD
这种情况下,我们想把本地和远程仓库都回退到某个版本,该怎么做呢?
前面讲到的git reset只是在本地仓库中回退版本,而远程仓库的版本不会变化
这样,即时本地reset了,但如果再git pull,那么,远程仓库的内容又会和本地之前版本的内容进行merge
这并不是我们想要的东西,这时可以有2种办法来解决这个问题:
#新建old_master分支做备份 git branch old_master #push到远程 git push origin old_master:old_master #本地仓库回退到某个版本 git reset –hard bae168 #删除远程的master分支 git push origin :master #重新创建master分支 git push origin master
$ git push origin :master error: By default, deleting the current branch is denied, because the next error: 'git clone' won't result in any file checked out, causing confusion. error: error: You can set 'receive.denyDeleteCurrent' configuration variable to error: 'warn' or 'ignore' in the remote repository to allow deleting the error: current branch, with or without a warning message. error: error: To squelch this message, you can set it to 'refuse'. error: refusing to delete the current branch: refs/heads/master To [email protected]:gitosis_test ! [remote rejected] master (deletion of the current branch prohibited) error: failed to push some refs to '[email protected]:gitosis_test'
git receive.denyDeleteCurrent warn
然后,就可以删除远程的master分支了
虽然说有以上2种方法可以回退远程分支的版本,但这2种方式,都挺危险的,需要谨慎操作……
我就用git reset --hard把我没有commit的代码全部删除过,晕。。。