问题很简单,如何在不使用完整命令的情况下为我的活动分支提取更改git pull origin <branch_name>
必须有此命令的快捷方式,是否存在?
git checkout -b feature_x
git push origin feature_x
git pull origin feature_x # is there shortcut, keeping in mind this is active branch
由于
更新
根据波纹管接受的答案,这是输出,解释更多
>git remote show origin
* remote origin
Fetch URL: git@github.com:XXX/FooBar.git
Push URL: git@github.com:XXX/FooBar.git
HEAD branch: master
Remote branches:
master tracked
feature_x tracked
Local branches configured for 'git pull':
master merges with remote master
feature_x merges with remote feature_x
Local refs configured for 'git push':
master pushes to master (up to date)
feature_x pushes to feature_x (up to date)
答案 0 :(得分:2)
git push --set-upstream origin feature_x
只允许git pull
成为git pull origin feature_x
的简写