July 2018
Intermediate to advanced
354 pages
10h 57m
English
It's very simple and straightforward to create an alias. You simply need to configure it with git config.
What we will do is check a branch and then create its aliases one by one and execute them to view their output by performing the following steps:
$ git checkout -b gitAlias --track origin/stable-3.2 Branch gitAlias set up to track remote branch stable-3.2 from origin. Switched to a new branch 'gitAlias'
$ git config alias.amm 'commit --amend'
Read now
Unlock full access