当前位置:   article > 正文

Git pull 与 push 默认行为

git 如何 每次pull 默认 pull origin

默认行为

什么是git pull与push的默认行为?

那就是在我们本该输入git pull origin <branch>或者git push origin <branch>时,我们只想输入git pull或者git push,这个就可以叫做git pull 与git push 的默认行为。

upstream downstream

本地分支 x push 到远程分支 y (不过一般我们会保持本地分支和远程分支名称统一),那远程分支y就是本地分支x的upstream。 那downstream 很明显,x就是y的downstream。

设置git push默认行为

  1. # git push -u origin master
  2. 或者
  3. # git push --set-upstream origin master

设置git pull默认行为

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

你还可以去设置 refs,这里我也没研究看,自行研究吧。

到这里,我们就可以很好的偷懒了

  1. branch master
  2. # git pull
  3. # git push

git pull与push默认行为完毕。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/713101
推荐阅读
相关标签
  

闽ICP备14008679号