freeCodeCamp/guide/arabic/miscellaneous/push-a-new-local-branch-to-.../index.md

11 lines
485 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

---
title: Push a New Local Branch to a Remote Git Repository and Track it Too
localeTitle: ادفع فرعًا محليًا جديدًا إلى مستودع Git عن بُعد وتتبعه أيضًا
---
1. إنشاء فرع جديد:
`git checkout -b feature_branch_name`
2. قم بتحرير وإضافة وإلزام ملفاتك.
3. ادفع فرعك إلى المستودع البعيد:
`git push -u origin feature_branch_name`
_إنها بهذه السهولة!_