mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-06 17:46:00 +02:00
git-fetch: add German translation
This commit is contained in:
parent
34d67d975f
commit
9113621979
1 changed files with 24 additions and 0 deletions
24
pages.de/common/git-fetch.md
Normal file
24
pages.de/common/git-fetch.md
Normal file
|
@ -0,0 +1,24 @@
|
|||
# git fetch
|
||||
|
||||
> Lade Objekte und Referenzen (refs) von einem entfernten Repository.
|
||||
> Mehr Informationen: <https://git-scm.com/docs/git-fetch>.
|
||||
|
||||
- Hole die neusten Änderungen von dem standardmäßigen Repository im Upstream (wenn gesetzt):
|
||||
|
||||
`git fetch`
|
||||
|
||||
- Hole neue Branches von einem bestimmten Repository im Upstream:
|
||||
|
||||
`git fetch {{name_des_upstream_repository}}`
|
||||
|
||||
- Hole die neusten Änderungen von allen Repositories im Upstream:
|
||||
|
||||
`git fetch --all`
|
||||
|
||||
- Lade auch die Tags des Repository im Upstream:
|
||||
|
||||
`git fetch --tags`
|
||||
|
||||
- Lösche lokale Referenzen auf entfernte Branches, die im Upstream-Repository nicht mehr existieren:
|
||||
|
||||
`git fetch --prune`
|
Loading…
Add table
Reference in a new issue