@[email protected] to [email protected] • 3 months agoWhat's a handy terminal command you use often?message-square265fedilinkarrow-up1217arrow-down18
arrow-up1209arrow-down1message-squareWhat's a handy terminal command you use often?@[email protected] to [email protected] • 3 months agomessage-square265fedilink
minus-squareJackbyDevlinkfedilinkEnglish2•3 months agogit config --global alias.pusho 'push --set-upstream origin HEAD' You’re welcome.
minus-squareJackbyDevlinkfedilinkEnglish1•edit-23 months agoWhen you’re pushing a new branch you’ve never pushed before you need the -u command. That’s what this alias is for. As long as the config’s push.default isn’t matching, git push without arguments will only push the current branch.
git config --global alias.pusho 'push --set-upstream origin HEAD'
You’re welcome.
So that’s making
git push
always push to the current branch?When you’re pushing a new branch you’ve never pushed before you need the
-u
command. That’s what this alias is for.As long as the config’s
push.default
isn’tmatching
,git push
without arguments will only push the current branch.