git-go
git-go copied to clipboard
Auto push to new branches?
automatically run
git push -u origin $branchName
if this comes up?
Please specify which branch you want to merge with.
See git-pull(1) for details.
git pull <remote> <branch>
If you wish to set tracking information for this branch you can do so with:
git branch --set-upstream-to=<remote>/<branch> fix-bottom
could be too much magic
@1wheel See my note here. Am in the process of overhauling my command line, so sorting through these tools.
You might try an alias like this..
go = "!f() { git add -A && git commit -m \"$1\" }; git pull; git push || git push origin HEAD; f"