mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-13 06:35:46 +02:00
Create git-fetch.md
This commit is contained in:
parent
f3ffaf83e2
commit
aed452d5b2
1 changed files with 24 additions and 0 deletions
24
pages.ar/common/git-fetch.md
Normal file
24
pages.ar/common/git-fetch.md
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
# git fetch
|
||||||
|
|
||||||
|
> تنزيل الكائنات والمراجع من مستودع خارجي.
|
||||||
|
> لمزيد من التفاصيل: <https://git-scm.com/docs/git-fetch>.
|
||||||
|
|
||||||
|
- سحب آخر التعديلات من المستودع الخارجي الافتراضي (إذا كان مضبوطًا):
|
||||||
|
|
||||||
|
`git fetch`
|
||||||
|
|
||||||
|
- سحب الفروع الجديدة من مستودع خارجي معين:
|
||||||
|
|
||||||
|
`git fetch {{remote_name}}`
|
||||||
|
|
||||||
|
- سحب آخر التعديلات من جميع المستودعات الخارجية:
|
||||||
|
|
||||||
|
`git fetch --all`
|
||||||
|
|
||||||
|
- سحب العلامات (tags) أيضًا من المستودع الخارجي:
|
||||||
|
|
||||||
|
`git fetch --tags`
|
||||||
|
|
||||||
|
- حذف المراجع المحلية للفروع الخارجية التي تم حذفها في المستودع الخارجي:
|
||||||
|
|
||||||
|
`git fetch --prune`
|
Loading…
Add table
Reference in a new issue