Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 771 Bytes

File metadata and controls

18 lines (13 loc) · 771 Bytes

Git

Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency.// Git comes with CommandLineTools.

By default, git will print non-ASCII file names in quoted octal notation, i.e. "\nnn\nnn…". This can be disabled with:

git config --global core.quotepath off

Setup global git ignore
Configuring ignored files for all repositories on your computer. github/gitignore

cat command-line-tools/.gitignore_global >> ~/.gitignore_global
git config --global core.excludesfile ~/.gitignore_global