Skip to content

Latest commit

 

History

History
8 lines (7 loc) · 408 Bytes

setting_up_git.md

File metadata and controls

8 lines (7 loc) · 408 Bytes

Installing Git

To install a fresh copy of Git or to upgrade to the latest version, please follow the instructions outlined in: Installing Git

Before you start using Git you need set your username and e-mail with the commands:

git config --global user.name "FIRST_NAME LAST_NAME"
git config --global user.email "[email protected]"