सचित्र उदाहरणांसह उपयुक्त गिट कमांडची तपशीलवार यादी येथे आहे:
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)