یہاں مثالی مثالوں کے ساتھ مفید گٹ کمانڈز کی ایک تفصیلی فہرست ہے۔
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
ریموٹ سرورز اور ان کے یو آر ایل پتوں کی فہرست بنائیں۔
مثال:
$ 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)