[Git]: Remove All Commit History
git
03/21/2020
BASH
git checkout --orphan temp_branchgit add .git commit -m "[REVERT]: reverted commit history"git branch -d master # Delete master branchgit branch -m master # Rename temp_branch to mastergit push -f origin master
- [Git]: Pulling Commit from Other Repository
- [Git]: Authenticate GitHub Account with SSH Key (macOS, Linux)