July 2018
Intermediate to advanced
354 pages
10h 57m
English
We will configure our newly created template, and then we will make a commit that will utilize the template.
To configure the template, we need to use git config commit.template <pathtofile> to set it, and, as soon as it is set, we can try to create a commit and see how it works:
$ git config commit.template ~/committemplate
$ git config --list | grep template commit.template=/Users/JohnDoe/committemplate
Read now
Unlock full access