Collection of data that can be used for development.
git add .
git commit -m "update"
git push
git reset --hard
to discarde any changes not committed to tracked files in the working treegit clean -fxd
to delete untracked file recursively (f) and directories (d) also in .gitignore (x)git rm -r --cached .
to delete cached filesgit gc --aggressive --prune=now
Cleanup unnecessary files and optimize the local repository
git checkout -- README.md
to revert file README.md to last commit
git config --global credential.helper wincred