1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-09-10 13:53:52 +02:00

Create git-pull.md

This commit is contained in:
Machiavelli 2025-03-17 17:18:20 +02:00
parent c6dc91d4f6
commit f3ffaf83e2

View file

@ -0,0 +1,16 @@
# git pull
> سحب فرع من مستودع خارجي ودمجه في المستودع المحلي.
> لمزيد من التفاصيل: <https://git-scm.com/docs/git-pull>.
- تنزيل التعديلات من المستودع الخارجي ودمجها:
`git pull`
- تنزيل التعديلات من المستودع الخارجي مع إعادة ترتيب (rebase) التعديلات:
`git pull {{[-r|--rebase]}}`
- تنزيل التعديلات من مستودع خارجي وفرع محددين، ثم دمجها في HEAD:
`git pull {{remote_name}} {{branch}}`