May 2017
Beginner
268 pages
6h 1m
English
It's very easy to create a Git repo. Follow these steps:
sudo apt-get install git
cd mkdir puppet
cd puppet git init Initialized empty Git repository in /home/vagrant/puppet/.git/
You can change the files in your repo as much as you like, but Git will not know about the changes until you make what's called a commit. You can think of a commit as being like a snapshot of the repo at a particular moment, but it also stores information about what changed in the repo since the previous commit. Commits are ...
Read now
Unlock full access