從master拉了一個分支test然後在test提交程式碼,推送結果test master都有提交記錄使用sourcetree操作的有知道這是怎麼回事嗎?謝謝!
欢迎选择我的课程,让我们一起见证您的进步~~
應該是預設設定了remote.origin.push到两个分支test和master
remote.origin.push
test
master
沒用過sourcetree,不知道她是用專案裡的.git/config還是自己有什麼特殊的配製檔。
.git/config
不過你可以先檢查下.git/config文件,看看裡面有沒有以下內容:
[remote "origin"] push = master push = test
如果[remote "origin"]片段里有上述配置,那你每次git push時,就會同時向兩個遠端分支都提交了
[remote "origin"]
git push
應該是預設設定了
remote.origin.push
到两个分支test
和master
沒用過sourcetree,不知道她是用專案裡的
.git/config
還是自己有什麼特殊的配製檔。不過你可以先檢查下
.git/config
文件,看看裡面有沒有以下內容:如果
[remote "origin"]
片段里有上述配置,那你每次git push
時,就會同時向兩個遠端分支都提交了