This is an old revision of the document!


Git is a powerful, distributed version control system. Consider installing it as specified on the linked site.

Likely you'll wish to have ssh keypairs in place when using git to coordinate source code between multiple machines (which are called “remotes” in git terms).

There are a few settings that you must set to prevent having to have a ton of flags on the command line for your git commands, then there are many more that you may just like to have in place. Consider those in the sample below.

Oh by the way, you can set global git configuration options on the command line by doing things like the following (example demonstrates the first few settings from the subsequent global .giticonfig file):

git config --global user.name "YOUR_NAME"
git config --global user.email "YOUR@EMAIL.EDU"
git config --global color.ui true

You can also open the file $USER/.gitconfig and edit it to match the formatting below.

Global Configuration

# who should git assume you're committing as?
[user]
	name = Michael Stewart
	email = stewarmc@jmu.edu
[color]
	ui = true
[init]
	defaultBranch = main

# how should git handle reconciling divergent branches when pulling?
[pull]
	rebase = true

# git should remember how i've resolved a given conflict and not prompt me for that conflict again
[rerere]
	enabled = true

# if you just want to add one of these from the command line, you might do something like
# git config --global rerere.enabled true

# optional but popular aliases
[alias]
  ci = commit
  st = status
  co = checkout
  di = diff --color-words
  br = branch