git
Tell git
who you are.
$ git config --global user.name "Ash Williams"
$ git config --global user.email "ash@s-mart.biz"
$ git config --global init.defaultBranch "main"
[source]
Verify the commands above created a ~/.gitconfig
file.
$ cat ~/.gitconfig
Add a few useful aliases to ~/.alias
.
alias ga="git add" # usage: ga filename
alias gc="git commit -m" # usage: gc "commit message"
alias gs="git status" # usage: gs
Other git
configuration commands:
# show current configuration
$ git config --list
# fast-forward (instead of rebase) when pulling code
$ git config --global pull.ff only
# create a global .gitignore using gitignore.io
$ curl -L https://www.toptal.com/developers/gitignore/api/ruby,node,linux -o ~/.gitignore
$ git config --global core.excludesfile ~/.gitignore
If you need to manage git settings by folder, read about how to use
Conditional Includes
from within your ~/.gitconfig
file.