Compare commits

..

No commits in common. "2a14b71435ad805f95f558290b8bfa487097194e" and "d8d96e7323959a6ab12cca0c028ef7df81c51442" have entirely different histories.

2 changed files with 0 additions and 12 deletions

View File

@ -1,6 +1,5 @@
{ {
"index": "Intro", "index": "Intro",
"cli": "CLI", "cli": "CLI",
"git": "Git",
"dev_ops": "Dev Ops" "dev_ops": "Dev Ops"
} }

View File

@ -1,11 +0,0 @@
# Remove files from repository
How to remove files from the repository, without deleting them locally. [Original SO](https://stackoverflow.com/a/1143800)
```bash
# File
git rm --cached file_to_remove.txt
# Dir
git rm --cached -r directory_to_remove
```