ls - lists all of the folders
ls -la - lists all of the files
cd .. - returns one dir back
cd - enters a directory
. - just install in the current directory
git --version - checks the version of the installed locally git
git config --global user.name "Your Name" - sets up the name of the user
git config --global user.email "[email protected]" - sets up the mail of the user
git config --list - lists all the git configurations
git init - initializes the git repo in the current folder
touch .gitignore - creates a git ignore file
git status - check working tree - both on the git and on local
git checkout master
git pull origin master
git branch --merged - see which branches are merged
git merge <name of the branch you want to merge>
git push origin master
git branch -d <name of the branch> - this deletes it locally!!!
git branch -a - check the repo branches
git push origin --delete <name of the branch> - this deletes it from the repo!