git revert last commit file code example
Example 1: git add file to last commit
git add the_left_out_file
git commit --amend --no-edit
Example 2: how to revert back to previous commit in git
# This will destroy any local modifications.
# Don't do it if you have uncommitted work you want to keep.
git reset --hard 0d1d7fc32
# Alternatively, if there's work to keep:
git stash
git reset --hard 0d1d7fc32
git stash pop
# This saves the modifications, then reapplies that patch after resetting.
# You could get merge conflicts, if you've modified things which were
# changed since the commit you reset to.
Example 3: How can I reset or revert a file to a specific revision?
git reset <commit hash> <filename>
Example 4: git reset specific file
git checkout c5f567 -- file1/to/restore file2/to/restore