// remove all files marked as deleted from git git ls-files --deleted -z | xargs -0 git rm
// change remote url from HTTP to SSH git remote set-url origin [email protected]:USERNAME/REPOSITORY.git
// add files to the previous commit without modifying commit message git commit --amend --no-edit