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
'SVN update'
Something along the lines of the below should bring underlying versions up to date:
Show remote URL
Useful resources
Download one folder from repo
Use DownGit
Last updated