git
remove files from a commit that wasn't pushed yet:
git reset --soft HEAD~1
basics:
git add .
git commit -m "write commit message here"
git push
setup:
git config --global user. email "you@example.com"
git config --global user.name "yourusername"
remove files from a commit that wasn't pushed yet:
git reset --soft HEAD~1
basics:
git add .
git commit -m "write commit message here"
git push
setup:
git config --global user. email "you@example.com"
git config --global user.name "yourusername"