Question:
I want to push a branch (not the current) without having to check it out first, how can I achieve that ?
this is how I’d do:
1 2 3 4 5 |
#currently in master git checkout feature git push origin feature git checkout master |
but checking out feature can cause conflicts, can’t I just push another branch than the current one ?
Answer:
Simply:
1 2 |
git push origin feature:feature |
Or shorter:
1 2 |
git push origin feature |