أوامر Git المفيدة: دليل شامل

فيما يلي قائمة مفصلة بأوامر Git المفيدة ، إلى جانب أمثلة توضيحية:

git init

قم بتهيئة مستودع Git جديد في دليل المشروع الخاص بك.

مثال:

$ git init  
Initialized empty Git repository in /path/to/your/project/.git/  

git clone [url]

استنساخ مستودع بعيد من الخادم إلى جهازك المحلي.

مثال:

$ git clone https://github.com/yourusername/your-repo.git  
Cloning into 'your-repo'...  

git add [file]

أضف ملفًا واحدًا أو أكثر إلى منطقة التدريج للتحضير لملف commit.

مثال:

$ git add index.html  
$ git add *.css  

git commit -m "message"

قم بإنشاء ملف جديد commit بالتغييرات التي تمت إضافتها إلى منطقة التدريج وقم بتضمين رسالتك commit.

مثال:

$ git commit -m "Fix a bug in login process"  
[main 83a9b47] Fix a bug in login process  
1 file changed, 5 insertions(+), 2 deletions(-)  

git status

اعرض الحالة الحالية للمستودع ، بما في ذلك الملفات المعدلة ومنطقة التدريج.

مثال:

$ git status  
On branch main  
Changes not staged for commit:  
 (use "git add <file>..." to update what will be committed)  
 (use "git restore <file>..." to discard changes in working directory)  
        modified:   index.html  
  
no changes added to commit(use "git add" and/or "git commit -a")

git log

اعرض commit محفوظات المستودع.

مثال:

$ git log
commit 83a9b4713f9b6252bfc0367c8b1ed3a8e9c75428(HEAD -> main)  
Author: Your Name <[email protected]>  
Date:   Mon Jul 13 12:34:56 2023 +0200  
  
    Fix a bug in login process  
  
commit 47f1c32798b7e862c4c69718abf6498255f1a3d2  
Author: Your Name <[email protected]>  
Date:   Sun Jul 12 18:42:15 2023 +0200  
  
    Add new homepage  

git branch

أدرج جميع الفروع في المستودع وحدد الفرع الحالي.

مثال:

$ git branch  
* main  
  feature/add-new-feature  
  feature/fix-bug  

git checkout [branch]

قم بالتبديل إلى فرع آخر في المستودع.

مثال:

$ git checkout feature/fix-bug  
Switched to branch 'feature/fix-bug'  

git merge [branch]

دمج فرع آخر في الفرع الحالي.

مثال:

$ git merge feature/add-new-feature  
Updating 83a9b47..65c6017  
Fast-forward  
 new-feature.html| 10 ++++++++++  
 1 file changed, 10 insertions(+)  
 create mode 100644 new-feature.html  

git pull

إحضار ودمج التغييرات من مستودع بعيد في الفرع الحالي.

مثال:

$ git pull origin main  
From https://github.com/yourusername/your-repo  
* branch            main       -> FETCH_HEAD  
Already up to date.  

git push

دفع التغييرات من الفرع الحالي إلى مستودع بعيد.

مثال:

$ git push origin main

git remote add [name] [url]

أضف خادمًا بعيدًا جديدًا إلى قائمة المستودعات البعيدة.

مثال:

$ git remote add upstream https://github.com/upstream-repo/repo.git

git fetch

قم بتنزيل التغييرات من مستودعات بعيدة ولكن لا يتم دمجها في الفرع الحالي.

مثال:

$ git fetch origin

git diff

قارن التغييرات بين منطقة التدريج والملفات المتعقبة.

مثال:

$ git diff

git reset [file]

قم بإزالة ملف من منطقة التدريج وأعده إلى الحالة السابقة.

مثال:

$ git reset index.html

git stash

حفظ التغييرات غير الملتزم بها مؤقتًا للعمل في فرع مختلف دون الالتزام بها.

مثال:

$ git stash
Saved working directory and index state WIP on feature/branch: abcd123 Commit message

git remote -v

قائمة الخوادم البعيدة وعناوين url الخاصة بهم.

مثال:

$ git remote -v  
origin  https://github.com/yourusername/your-repo.git(fetch)  
origin  https://github.com/yourusername/your-repo.git(push)  
upstream        https://github.com/upstream-repo/repo.git(fetch)  
upstream        https://github.com/upstream-repo/repo.git(push)