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
It would be great to be able to define custom aliases in mrgit, similar to git aliases. For instance, I use:
git
git master
What is define this way:
master = !sh -c 'rem=$(git config branch.master.remote) && git fetch --all -p && git checkout master && git reset --hard $rem/master && git submodule update'
It would be great to be able to do:
mrgit master
Which will do:
mrgit exec "git master"
I think that we can start from simple aliases, which assign commands with mrgit exec executions.
mrgit exec
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It would be great to be able to define custom aliases in mrgit, similar to
git
aliases. For instance, I use:What is define this way:
It would be great to be able to do:
Which will do:
I think that we can start from simple aliases, which assign commands with
mrgit exec
executions.The text was updated successfully, but these errors were encountered: