git delete code example
Example 1: remove git
rm -rf .git
Example 2: delete file from a branch git
git rm --cached file1.txt
git commit -m "remove file1.txt"
Example 3: remove git
rm -rf .git
-r => Remove directories and there contents recursively.
-f => Ignore nonexistent files and arguments, never prompt
for more info run
rm --help
Example 4: 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.
Example 5: delete file from a branch git
git rm file1.txt
git commit -m "remove file1.txt"