June 2014
Intermediate to advanced
328 pages
7h 26m
English
If we want to work and prosper with Git, we have to grasp its principles. There are theories and some alternatives on how we can manage our Puppet code with Git in a safe and comfortable way.
In this section, we will review:
Git is generally available as a native package in every modern OS. Once we have installed it, we can configure our name and e-mail (that will appear in all our commits) with the following:
git config --global user.name "Alessandro Franceschi" git config --global user.email al@lab42.it
These commands simply create the relevant entries in the ~/.gitconfig file. We can ...