Is a Open Source Version Control System.
https://git-scm.com/
git --version
git config --global user.name "Your Name"
git config --global user.email "[email protected]"
nano ~/.gitconfig
#.gitconfig
[user]
name = Your Name
email = [email protected]
[github]
user = username
[alias]
a = add
s = status
r = reset
cm = commit -m
cam = commit -am
uns = rm --cached
cob = checkout -b
co = checkout
git config --global -l
press q
to exit
mkdir macdevgit
cd macdevgit
touch readme.md
git init
git add .
git commit -m "Initial Commit"
git remote add origin [email protected]:[user]/[project].git
git push origin master
git branch --all
git remote rm origin
note: origin is the name of the remote
git clone [email protected]:[user]/[project].git