git remove commited file code example
Example 1: github remove a file from a commit
git reset --soft HEAD~1
git reset HEAD <file>
git rm --cached <file>
git commit --amend
git ls-files
Example 2: remove a file from git commit
git reset --soft HEAD^
or
git reset --soft HEAD~1
git reset HEAD path/to/unwanted_file
git commit -c ORIG_HEAD
Example 3: git remove added file to commint
git reset file-name
Example 4: git remove file from commit
git filter-branch --index-filter "git rm -rf --cached --ignore-unmatch path_to_file" HEAD