Repo
- repo 切换分支
cd .repo/manifests/
git branch -avv
找到你要的分支名
repo init -b 分支名 -m 配置文件.xml
repo sync -c --no-tags
随便进入一个仓库就可以看到远程分支是不是切换的了
git reflog
git reflog 可以查看所有分支的所有操作记录(包括(包括commit和reset的操作),包括已经被删除的commit记录,git log则不能察看已经删除了的commit记录
具体一个例子,假设有三个commit, git st:
commit3: add test3.c
commit2: add test2.c
commit1: add test1.c
如果执行git reset --hard HEAD~1则 删除了commit3,如果发现删除错误了,需要恢复commit3,这个时候就要使用git reflog
HEAD@{0}: HEAD~1: updating HEAD
63ee781 HEAD@{1}: commit: test3:q
加粗的即是被删除了的 commit3,运行git log则没有这一行记录
可以使用git reset --hard 63ee781将红色记录删除,则恢复了cmmit3,运行git log后可以看到:
commit3: add test3.c
commit2: add test2.c
commit1: add test1.c
这里也可以使用另外一种方法来实现:git cherry-pick 63ee78
git revert 到某个版本且保留提交记录
现在有
8
7
6
5
4
3
2
1
若干提交, 1 是最前面的,现在想回滚到 4 , git revert git revert 4…8 命令可以把 5678 逐个 revert ,但是如果其中有 merge commit 就不能这么用。那么该怎么做?
git reset --hard 4
git reset --soft 8
git commit -m ‘Reverted 5 6 7 8’
本文来自博客园,作者:寒风凛凛,转载请注明原文链接:https://www.cnblogs.com/dongxiaofat/p/15426391.html