We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
First, it's an excellent idea to try to fix all git command line inconsistencies.
a lot of commands accept the --cached parameter... it should really be --staged
New ideas to ease how tracking works
with no arguments - shows the local/remote tracking settings
with two args: git track master origin/master same as git branch --set-upstream master origin/master but so much easier
git track master origin/master
The famous missing git alias command
Which syncs your changes/updates alias to git pull --rebase && git push
git pull --rebase && git push
The text was updated successfully, but these errors were encountered:
Thanks for the ideas! Adding these to the features section.
Sorry, something went wrong.
I have a few interesting aliases here, just for reference https://github.com/orefalo/bash-profiles/blob/master/git-config.bash
You may close the issue, sincerely
No branches or pull requests
First, it's an excellent idea to try to fix all git command line inconsistencies.
a lot of commands accept the --cached parameter... it should really be --staged
New ideas to ease how tracking works
git track / git tracking
with no arguments - shows the local/remote tracking settings
with two args:
git track master origin/master
same as git branch --set-upstream master origin/master but so much easier
Git alias
The famous missing git alias command
Git Sync
Which syncs your changes/updates
alias to
git pull --rebase && git push
The text was updated successfully, but these errors were encountered: