cybercitizen4@lemm.ee to Asklemmy@lemmy.ml · 1 month agoWhat's a handy terminal command you use often?message-squaremessage-square279fedilinkarrow-up1227arrow-down18
arrow-up1219arrow-down1message-squareWhat's a handy terminal command you use often?cybercitizen4@lemm.ee to Asklemmy@lemmy.ml · 1 month agomessage-square279fedilink
minus-squareCaveman@lemmy.worldlinkfedilinkarrow-up7arrow-down1·1 month agog-push which is alias for git push origin `git branch --show` Which I’m writing on my phone without testing or looking
minus-squareCruxil 🇦🇺@aussie.zonelinkfedilinkEnglisharrow-up2·1 month agogit push origin HEAD is a slightly shorter way of doing the same thing, even though you have an alias anyway lol
minus-squareJackbyDev@programming.devlinkfedilinkEnglisharrow-up2·1 month agogit config --global alias.pusho 'push --set-upstream origin HEAD' You’re welcome.
minus-squareCaveman@lemmy.worldlinkfedilinkarrow-up1·1 month agoSo that’s making git push always push to the current branch?
minus-squareJackbyDev@programming.devlinkfedilinkEnglisharrow-up1·edit-21 month 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.
g-push
which is alias forgit push origin `git branch --show`
Which I’m writing on my phone without testing or looking
git push origin HEAD
is a slightly shorter way of doing the same thing, even though you have an alias anyway lolgit 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.