Haris Krajina
Haris Krajina

Reputation: 15266

Git pull changes for active branch

Question is simple how can I pull changes for my active branch without using full command git pull origin <branch_name> there must be shortcut for this command, is there?

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

Thanks

UPDATE

Based on bellow accepted answer this is output which explains more

>git remote show origin
* remote origin
  Fetch URL: [email protected]:XXX/FooBar.git
  Push  URL: [email protected]: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)

Upvotes: 0

Views: 1351

Answers (1)

jdd
jdd

Reputation: 4336

git push --set-upstream origin feature_x will allow just git pull to be a shorthand for git pull origin feature_x

Upvotes: 2

Related Questions