यहां उदाहरणात्मक उदाहरणों के साथ उपयोगी 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
दूरस्थ सर्वर और उनके यूआरएल पते की सूची बनाएं।
उदाहरण:
$ 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)