Comandos git básicos para fluxo de trabalho simples básico
inicializar o repositório git no diretório atual
git init
adicione o arquivo ao teste, ou seja, o arquivo que precisa ir para o próximo commit
git add <file-name> // adds the particular file
git add <filenames> // list separated by spaces
git add . // adds the all the files
verificar o status dos arquivos
git status -s
gravando alterações de arquivo no repo
git commit -m "commit the file from staging"
verifique o histórico de commits
git log