Skip to content

csu-cs320/Learning-Git

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 

Repository files navigation

Learning-Git

Basis for students learning to use git, the dominant modern version control tool

Getting git

The git website has a page on installing git. The school computers already have git installed. For Linux users, you know what to do. For Mac users, I suggest using Homebrew as a package manager. You can ask it to install git with brew install git.

Setup

Here's the setup page on the website. A minimal setup involves recording your identity:

$ git config --global user.name "John Doe"
$ git config --global user.email [email protected]

Consider setting up these aliases for your convenience:

$ git config --global alias.at "status"
$ git config --global alias.logg 'log --graph --format="%C(auto)%h%d %s %Cgreen@%Creset{%ar}"'

About

Basis for students learning to use git, the dominant modern version control tool

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors