you are a ball in a freak'in crazy world
cd
ssh-keygen -t rsa -C "[email protected]"
cd ~/.ssh
cat ~/.ssh/id_rsa.pub
copy the contents of id_rsa.pub and add it to your ssh keys under settings in your account
For first time clone whole project:
git clone https://github.com/hqt08/CubeMaze.git
For pulling down any changes, and committing then pushing up your new changes:
git pull
git add your/new/files or for all: git add .
git commit -a -m "your new message"
git push