Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我和我的朋友一直在同一个分支上工作。他已将他的更改提交给我们的分支,现在我也想做同样的事情。
我已经进行了本地 git 提交,但我不确定从现在开始的步骤是什么?
您将希望使您的分支保持最新,以便您可以推送您的更改。
首先你会做:
git pull --rebase
您也可以这样做git pull会导致发生合并提交。
git pull
那么你需要做的就是:
git push
并且更改应该在共享的远程分支上。