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
Scott Chacon and Ben Straub. 2014. Pro Git (2nd ed.). Apress, Berkely, CA, USA.



Register your user name and email.
git
$ git config --global user.name 'Sam Tomioka'
$ git config --global user.email 'sam.tomioka@sunovion.com'

curl -H 'Authorization: token <MYTOKEN>'
MYTOKEN is your token. See GitHub Documentation how you can create your token.
Fork another repo

git
$ git clone https://github.com/stomioka/sdtm_mapper

git add . adds all new files.git add -u updates tracking for files that changed names or were deletedgit add -A does both of the abovegit commit -m 'your message' -m to add message. :wq! to save the message and clode Vi text.git add master or git add your-branchgit checkout your-branchgit checkout master