2
在水銀,我通常這樣做:該Mercurial操作初始化並上傳回購的git相當於什麼?
hg init
hg addremove
hg commit -m "init repo"
hg push https://arezzo:[email protected]/arezzo/mynewrepo
我想類似的東西在Git和它沒有工作:
git init .
git add .
git commit -m "init repo"
git push https://arezzo:[email protected]/arezzo/mynewrepo
push
後,我得到的消息是:
Everything up-to-date
沒有被推送到bitbucket。
謝謝!隨後的每次推送都會使用您使用的'push'語法:'git push -u origin master'?如果我使用'git push https:// arezzo:mypassword @ bitbucket.org/arezzo/mynewrepo'作爲後續'push'會發生什麼? – arezzo
現在,使用完整的URL將會在遠程存儲庫中存在'master'。然而,對於後續的推送,我只需要:'git push origin master',因爲你不需要多次'-u',我認爲'git push origin'和'git push'的默認行爲令人困惑。最好明確地說出你想推哪個分支。 –
謝謝。還有一件事:所以'origin'是分支的名字,'master'是名字。 。 。什麼?遠程分支? – arezzo