mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 01:02:09 +02:00
git-rm: add German translation
This commit is contained in:
parent
72cc045baa
commit
b2ce57d399
1 changed files with 16 additions and 0 deletions
16
pages.de/common/git-rm.md
Normal file
16
pages.de/common/git-rm.md
Normal file
|
@ -0,0 +1,16 @@
|
|||
# git rm
|
||||
|
||||
> Entferne Dateien aus dem Index des Repositories und von dem lokalen Dateisystem.
|
||||
> Mehr Informationen: <https://git-scm.com/docs/git-rm>.
|
||||
|
||||
- Entferne eine Datei aus dem Index und von dem lokalen Dateisystem:
|
||||
|
||||
`git rm {{datei}}`
|
||||
|
||||
- Entferne ein Verzeichnis:
|
||||
|
||||
`git rm -r {{verzeichnis}}`
|
||||
|
||||
- Entferne eine Datei aus dem Index des Repository, aber behalte sie lokal:
|
||||
|
||||
`git rm --cached {{datei}}`
|
Loading…
Add table
Reference in a new issue