-
Notifications
You must be signed in to change notification settings - Fork 0
Help
Eric Bouchut edited this page Oct 31, 2018
·
3 revisions
Here is how to display the man page for the git sub command rebase
from the command line.
git help rebase
Another option is to call man(1)
like so:
man git-rebase
As man does not support space in its parameter, man indexed the man page about git rebase
in git-rebase
.
git help -w rebase
git help everyday