remove .git file code example
Example 1: delete file from a branch git
git rm --cached file1.txt
git commit -m "remove file1.txt"
Example 2: how to remove stuff from git
git rm -r File-Name
Example 3: git delete file
// delete unused file.
// It will be placed on index area, and been deleted at next commit
git rm file-to-delete.ext
Example 4: git remove file
git rm [-f | --force] [-n] [-r] [--cached] [--ignore-unmatch]
[--quiet] [--pathspec-from-file=<file> [--pathspec-file-nul]]
[--] [<pathspec>…]
Example 5: remove git deleted files
git add . => Add all (tracked and modified)/new files in the working tree.
git add -u => Add all modified/removed files which are tracked.
git add -A => Add all (tracked and modified)/(tracked and removed)/new files in the working tree.
git commit -a -m "commit message" - Add and commit modified/removed files which are tracked.