Git basics
Git is an invaluable tool to programmers and computational linguists alike. Version control is a powerful tool that can make integration with large groups of people a breeze and allow one to rectify regressions promptly.
This is not a very intricate tutorial for how git works under the hood (though there is a small bit of discussion about this). The primary focus is in how to use git effectively.
Cloning a Repository
This chapter discusses how to clone a repository. This is most likely the first thing one will do...
Git hist
This is an excellent alias for git hist to add to your .gitconfig file git log --pretty=format:"...
Introduction
The Guided Git Tutorial is an invaluable resource for learning how to effectively use git. This c...
Checkout
One of the most powerful functionalities provided by git is the checkout functionality. This com...