Git Starter Tutorial

cd ~/Desktop/[target repository name]
git status
vim .gitignore # if not created yet
git add -A
git commit -m "useful information for other developers"
git push origin master # origin and master can be replace by equivalent

Comments