git-fetch: add German translation
This commit is contained in:

committed by
Starbeamrainbowlabs

parent
34d67d975f
commit
9113621979
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`
|
Reference in New Issue
Block a user