Git
Git is my go to version control system.
It's usually installed on Ubuntu when you install the OS. The last time I did this though, it was not. Install it:
sudo apt-get install git
Verify Your Install:
git --version
with the output:
git version 2.20.1
The exact version will likely evolve over time.
Basic Set Up
To use Git we need to have some basic configuration set up. If we forget to do this, the first time we try and commit something we will be prompted for it.
$ git config --global user.name "FirstName LastName"
$ git config --global user.email "something@domain.somethingelse"
In addition, instead of Git opening Vim when it wants further information, I prefer it to open nano:
$ git config --global core.editor "nano -w"
And to handle line endings in a way that Windows can also deal with (this is totally optional):
$ git config --global core.autocrlf input
Introductions to Git / Where to look for help:
- Software Carpentry's Version Control with Git
- PP4RS' Introduction to Git