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
In a typical git alias section, aliases can execute either a git command or a shell command:
[alias] # Git command pushForce = push --force-with-lease # Shell command fetchRebase = "!git fetch origin master && git rebase origin/master && git update-ref refs/heads/master origin/master"
It would be great to be able to do the same with revset aliases:
[branchless "revsets.alias"] # Git branchless command grandChildren = children(children($1)) # Shell command pushed = "!are_commits_pushed($1)"
The text was updated successfully, but these errors were encountered:
I would love to add the 'enhancement' label to this, but I don't see a way to do that. I hope someone else can help with that!
Sorry, something went wrong.
No branches or pull requests
In a typical git alias section, aliases can execute either a git command or a shell command:
It would be great to be able to do the same with revset aliases:
The text was updated successfully, but these errors were encountered: