ssh keys

ls -al ~/.ssh ssh-keygen -t rsa -b 4096 -C “youruser@gmail.com”

xclip -sel clip < ~/.ssh/id_rsa.pub

git

mkdir my_git_project cd my_git_project

git init

git config –global user.name ‘youruser’ git config –global user.email ‘youruser@gmail.com’ git config –global color.ui ‘auto’

git status

git globar

git config –global user.name ADD xunorus

lea Verou ´s git advice

git add . git status // to see what changes are going to be commited git commit -m ‘Some descriptive commit message’ git push origin master