有时候,我们从仓库clone代码的时候,在本地会改一些配置文件,但又不能push到master主干上,怎么办?
add (单个文件) 一个一个提交
commit -m "说明"
3.提交后不能马上push 很可能会冲突,你得pull一下,git pull 每次pull但这会有很多提交线显得很low
pull --rebase 就解决了这个问题 但有时候有些配置文件是还没有提交的 你用这个命令的时候会出错。
$ git pull --rebase
error: cannot pull with rebase: Your index contains uncommitted changes.
error: please commit or stash them.
那就 git stash 然后再 git pull --rebase 再git stash pop
这样就完美解决了。