I have been using git push origin branch-name
for a while even for the fact that I am already on the branch-name
branch (check with git branch
).
So I wonder is there something like git push origin this
sorta command so that I can push change into my branch that I am already on, without have to do the two step process of git branch
and then the copy and paste of branch name every time?
Been doing this for a year and silly enough I think its time for a better way to do this to save my time. Thanks!