Git pull 與 push 默認行爲

默認行爲

什麼是git pull與push的默認行爲?git

那就是在咱們本該輸入git pull origin <branch>或者git push origin <branch>時,咱們只想輸入git pull或者git push,這個就能夠叫作git pull 與git push 的默認行爲。code

upstream downstream

本地分支 x push 到遠程分支 y (不過通常咱們會保持本地分支和遠程分支名稱統一),那遠程分支y就是本地分支x的upstream。 那downstream 很明顯,x就是y的downstream。it

設置git push默認行爲

# git push -u origin master
或者
# git push --set-upstream origin master

設置git pull默認行爲

# git branch --set-upstream-to=origin/master master

你還能夠去設置 refs,這裏我也沒研究看,自行研究吧。ast

到這裏,咱們就能夠很好的偷懶了stream

branch master
# git pull
# git push

git pull與push默認行爲完畢。co

相關文章
相關標籤/搜索