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 push对远程存储库进行操作时,它的master分支会被更新。这在非裸存储库的情况下是不可取的,最近的 Git 版本显示的警告消息清楚地表明了这一点。
git push
master
我希望能够推送到远程存储库,并更新其远程跟踪分支之一。稍后,当我登录到远程机器并运行命令时,我可以选择将该远程跟踪分支合并到master.
我怎样才能做到这一点?还是有更好的方法将更改推送到非裸存储库?
你可以做:
git push master:some-remote-branch
例如:
git push master:alex/master
(虽然仍然不建议推送到非裸仓库。)
我想您应该只设置一个单独的裸存储库,即。一个没有工作副本。然后你可以登录到远程机器并克隆这个远程存储库,并在你需要的时候获取/拉取它。