git reset --mixed -------
保留本地修改,然后回退到之前某个节点,重新git add, git commit, git push
这样可以减少commit的节点数
在自己的节点上,可以配合git push origin test -f使用
git cherry-pick --
将另外一个分支的节点,合并到当前分支
git fetch original branch_name
拉去另一个分支最新的commit代码
保留本地修改,然后回退到之前某个节点,重新git add, git commit, git push
这样可以减少commit的节点数
在自己的节点上,可以配合git push origin test -f使用
将另外一个分支的节点,合并到当前分支
拉去另一个分支最新的commit代码
本文标题:git 用法
本文链接:https://www.haomeiwen.com/subject/xgmlyrtx.html
网友评论