git config user.name // your name
git config user.email // the email you will use
git init //initialize a repository in a folder, for this you will need:
git clone (https adress) //clones a repository
git add . // to add all types of files to your repo
git commit -m "comment" // commit all your added files and name your commit
git push // push your las commit
git status //check your commit status (untracked files)