git
Amend the last commit
git commit --amend
git commit —-amend —-no-editSquash commits
git rebase --interactive --rootForce squash commits - e.g. down to root commit
rm -rf .git
git init
git add .
git commit -m "Initial commit"Forget file after adding to .gitignore
git rm --cached CREDENTIALS.pyPush tags to origin
git push origin --tagsGeneral force push
git push -—force origin'SVN update'
Something along the lines of the below should bring underlying versions up to date:
git stash
git pull
git stash popShow remote URL
git remote show originUseful resources
Download one folder from repo
Use DownGit
Last updated