GIT COMMANDS :
Delete branch : git push origin :the-branch Remove file : git rm "filename.ext" Remove folder : git rm - r "foldername"
To confirm : git add . (dot neccesary) git commit -m "comment" git push or git push origin branch ( if you are not in the wanted branch)
To switch branch: git checkout "branch's name"
To create a new branch: git checkout -b "branch's name"
For a optimal cloning, follow theses steps : On git bash: git clone url.git NEXT -> Create a new branch, only if you do important changes! For each changes that you did: On the terminal : git add -a git commit -m "comment" and then git push
Up-to-date your project: git pull