赞
踩
git subtree push --prefix dist origin gh-pages
以上代码只将dist目录提交到目标分支
git merge dev
git reset --hard id
git reflog
git remote add origin http://gitlab......com
git pull origin master
git reset --hard origin/master
git log --oneline -3
git cherry-pick 可以理解为”挑拣”提交,它会获取某一个分支的单笔提交,并作为一个新的提交引入到你当前分支上。 当我们需要在本地合入其他分支的提交时,如果我们不想对整个分支进行合并,而是只想将某一次提交合入到本地当前分支上,那么就要使用git cherry-pick了。
git cherry-pick [<options>] <commit-ish>...
常用options:
--quit 退出当前的chery-pick序列
--continue 继续当前的chery-pick序列
--abort 取消当前的chery-pick序列,恢复当前分支
-n, --no-commit 不自动提交
-e, --edit 编辑提交信息
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。