July 2018
Intermediate to advanced
354 pages
10h 57m
English
It's possible to revert more than one commit in a single revert, for example, git revert master~6..master~2 will revert the commits from the sixth commit from the bottom in the master to the third commit from the bottom in the master (both included).
It is also possible not to create a commit while reverting; passing the -n option to git revert will apply the needed patched, but only to the working tree and the staging area.
Read now
Unlock full access