I really love the ability to use -
as shorthand to refer to the last branch I was on.
I was wondering if there is shorthand to refer to the current branch I am on? For example,
Before
$(dev/my_branch) git push -f origin dev/my_branch
$(dev/my_branch) git branch --set-upstream-to=origin/dev/my_branch
After
$(dev/my_branch) git push -f origin .
$(dev/my_branch) git branch --set-upstream-to=origin/.