मोफत कनवर्टर

Git आदेश फसवणूक पत्रक

व्यापक Git कमांड चीट शीट. उदाहरणे, वर्णन आणि एक-क्लिक कॉपीसह 80+ आवश्यक Git कमांड शोधा.

git config --global user.name
Set the global username for commits
उदाहरण:git config --global user.name "Your Name"
git config --global user.email
Set the global email for commits
उदाहरण:git config --global user.email "[email protected]"
git config --list
List all Git configuration settings
उदाहरण:git config --list
git config --global core.editor
Set the default text editor for Git
उदाहरण:git config --global core.editor "vim"
git init
Initialize a new Git repository in the current directory
उदाहरण:git init my-project
git clone
Clone a remote repository to your local machine
उदाहरण:git clone https://github.com/user/repo.git
git clone --depth
Shallow clone with limited history
उदाहरण:git clone --depth 1 https://github.com/user/repo.git
git add
Stage a specific file for the next commit
उदाहरण:git add src/index.js
git add .
Stage all modified and new files in the current directory
उदाहरण:git add .
git add -p
Interactively stage parts (hunks) of changed files
उदाहरण:git add -p
git status
Show the working tree status (staged, unstaged, untracked)
उदाहरण:git status
git status -s
Show a compact status summary
उदाहरण:git status -s
git diff
Show unstaged changes between working tree and index
उदाहरण:git diff src/app.js
git diff --staged
Show staged changes that will go into the next commit
उदाहरण:git diff --staged
git restore
Discard changes in the working directory
उदाहरण:git restore src/index.js
git restore --staged
Unstage a file (remove from staging area)
उदाहरण:git restore --staged src/index.js
git rm
Remove a file from the working tree and index
उदाहरण:git rm old-file.txt
git mv
Move or rename a file and stage the change
उदाहरण:git mv oldname.js newname.js
git commit -m
Record staged changes with a commit message
उदाहरण:git commit -m "feat: add login page"
git commit -am
Stage all tracked files and commit in one step
उदाहरण:git commit -am "fix: correct typo in README"
git commit --amend
Modify the most recent commit (message or content)
उदाहरण:git commit --amend -m "Updated commit message"
git log
Show the commit history for the current branch
उदाहरण:git log --oneline --graph
git log --oneline
Show compact one-line commit history
उदाहरण:git log --oneline -20
git log --author
Filter commit history by author
उदाहरण:git log --author="Alice" --oneline
git log --since
Show commits after a given date
उदाहरण:git log --since="2024-01-01" --oneline
git show
Show details of a specific commit
उदाहरण:git show abc1234
git diff HEAD
Show all changes since the last commit
उदाहरण:git diff HEAD
git shortlog
Summarize commit history grouped by author
उदाहरण:git shortlog -sn
git branch
List all local branches
उदाहरण:git branch -a
git branch <name>
Create a new branch at the current commit
उदाहरण:git branch feature/login
git branch -d
Delete a merged local branch
उदाहरण:git branch -d feature/login
git branch -D
Force-delete a branch regardless of merge status
उदाहरण:git branch -D old-branch
git branch -m
Rename the current branch
उदाहरण:git branch -m new-branch-name
git checkout
Switch to an existing branch
उदाहरण:git checkout main
git checkout -b
Create and switch to a new branch
उदाहरण:git checkout -b feature/new-ui
git switch
Switch to an existing branch (modern syntax)
उदाहरण:git switch main
git switch -c
Create and switch to a new branch (modern syntax)
उदाहरण:git switch -c feature/api-v2
git merge
Merge a branch into the current branch
उदाहरण:git merge feature/login
git merge --no-ff
Merge with a merge commit even if fast-forward is possible
उदाहरण:git merge --no-ff feature/login
git rebase
Reapply commits on top of another branch
उदाहरण:git rebase main
git rebase -i
Interactive rebase to squash, reorder, or edit commits
उदाहरण:git rebase -i HEAD~3
git remote -v
List remote connections with their URLs
उदाहरण:git remote -v
git remote add
Add a new remote repository connection
उदाहरण:git remote add origin https://github.com/user/repo.git
git remote remove
Remove a remote connection
उदाहरण:git remote remove origin
git remote set-url
Change the URL of an existing remote
उदाहरण:git remote set-url origin [email protected]:user/repo.git
git fetch
Download objects and refs from a remote without merging
उदाहरण:git fetch origin
git fetch --all
Fetch from all remotes
उदाहरण:git fetch --all
git pull
Fetch and integrate changes from a remote branch
उदाहरण:git pull origin main
git pull --rebase
Pull and rebase instead of merge
उदाहरण:git pull --rebase origin main
git push
Upload local commits to a remote branch
उदाहरण:git push origin main
git push -u
Push and set upstream tracking branch
उदाहरण:git push -u origin feature/login
git push --force-with-lease
Force push safely (fails if remote has new commits)
उदाहरण:git push --force-with-lease origin feature/login
git push --delete
Delete a remote branch
उदाहरण:git push origin --delete old-branch
git stash
Temporarily save uncommitted changes to a stack
उदाहरण:git stash push -m "WIP: half-done feature"
git stash pop
Apply the most recent stash and remove it from the stack
उदाहरण:git stash pop
git stash apply
Apply a stash without removing it from the stack
उदाहरण:git stash apply stash@{0}
git stash list
List all stashed changes
उदाहरण:git stash list
git stash drop
Remove a specific stash entry
उदाहरण:git stash drop stash@{1}
git stash clear
Remove all stashed entries
उदाहरण:git stash clear
git stash show
Show a summary of changes in a stash
उदाहरण:git stash show -p stash@{0}
git stash branch
Create a branch from a stash
उदाहरण:git stash branch feature/stashed stash@{0}
git tag
List all existing tags
उदाहरण:git tag -l "v1.*"
git tag <name>
Create a lightweight tag at the current commit
उदाहरण:git tag v1.0.0
git tag -a
Create an annotated tag with a message
उदाहरण:git tag -a v1.0.0 -m "Release version 1.0.0"
git tag -d
Delete a local tag
उदाहरण:git tag -d v1.0.0-beta
git push --tags
Push all local tags to the remote
उदाहरण:git push origin --tags
git push origin <tag>
Push a specific tag to the remote
उदाहरण:git push origin v1.0.0
git describe
Show the most recent tag reachable from the current commit
उदाहरण:git describe --tags --abbrev=0
git reset --soft
Move HEAD back, keep changes staged
उदाहरण:git reset --soft HEAD~1
git reset --mixed
Move HEAD back, unstage changes (default)
उदाहरण:git reset HEAD~1
git reset --hard
Move HEAD back and discard all changes
उदाहरण:git reset --hard HEAD~1
git revert
Create a new commit that undoes a previous commit
उदाहरण:git revert abc1234
git revert --no-commit
Revert changes without creating a commit yet
उदाहरण:git revert --no-commit abc1234
git clean -fd
Remove untracked files and directories
उदाहरण:git clean -fd
git clean -n
Dry run: show what would be removed by clean
उदाहरण:git clean -n
git checkout -- <file>
Restore a file to the last committed state
उदाहरण:git checkout -- src/index.js
git cherry-pick
Apply a specific commit from another branch
उदाहरण:git cherry-pick abc1234
git cherry-pick -n
Cherry-pick without committing (stage only)
उदाहरण:git cherry-pick -n abc1234
git bisect start
Start a binary search to find a bug-introducing commit
उदाहरण:git bisect start && git bisect bad && git bisect good v1.0
git bisect good/bad
Mark a commit as good or bad during bisect
उदाहरण:git bisect good
git reflog
Show the history of HEAD and branch tip movements
उदाहरण:git reflog --date=iso
git submodule add
Add a repository as a submodule
उदाहरण:git submodule add https://github.com/user/lib.git libs/lib
git submodule update
Initialize and update all submodules
उदाहरण:git submodule update --init --recursive
git worktree add
Check out a branch in a new working directory
उदाहरण:git worktree add ../hotfix hotfix/critical
git blame
Show who last modified each line of a file
उदाहरण:git blame -L 10,20 src/app.js
git archive
Create a zip/tar archive of a tree
उदाहरण:git archive --format=zip HEAD > release.zip

या साधनाबद्दल

git कमांडसाठी सर्वसमावेशक द्रुत-संदर्भ मार्गदर्शक. सामान्यतः वापरल्या जाणाऱ्या आदेश, वाक्यरचना आणि वर्गवारीनुसार आयोजित केलेली उदाहरणे ब्राउझ करा. शोधण्यायोग्य आणि मोबाइल-अनुकूल — जेव्हा आपल्याला द्रुत स्मरणपत्राची आवश्यकता असेल तेव्हा त्वरित प्रवेशासाठी हे पृष्ठ बुकमार्क करा.

कसे वापरावे

  1. वर्गीकृत संदर्भ विभाग ब्राउझ करा.
  2. विशिष्ट आदेश किंवा वाक्यरचना शोधण्यासाठी शोध बार वापरा.
  3. वापर उदाहरणे आणि स्पष्टीकरणे पाहण्यासाठी कोणत्याही एंट्रीवर क्लिक करा.
  4. तुमच्या टर्मिनल किंवा एडिटरमध्ये वापरण्यासाठी थेट कमांड कॉपी करा.

वारंवार विचारले जाणारे प्रश्न

हा संदर्भ अद्ययावत आहे का?
संदर्भामध्ये मोठ्या प्रमाणात वापरल्या जाणाऱ्या कमांड्स आणि सिंटॅक्स समाविष्ट आहेत जे आवृत्त्यांमध्ये स्थिर आहेत. नवीनतम जोडण्या किंवा आवृत्ती-विशिष्ट वैशिष्ट्यांसाठी, अधिकृत दस्तऐवजीकरण तपासा.
मी हे ऑफलाइन वापरू शकतो का?
एकदा लोड झाल्यानंतर, पृष्ठ इंटरनेट कनेक्शनशिवाय कार्य करते. द्रुत प्रवेशासाठी ते बुकमार्क करा — पुढील नेटवर्क विनंत्यांशिवाय सर्व सामग्री ब्राउझरमध्ये प्रस्तुत केली जाते.
हे सर्वसमावेशक आहे की फक्त मूलभूत आहे?
हे सर्वात सामान्यपणे वापरल्या जाणाऱ्या आज्ञा आणि नमुने समाविष्ट करते जे दररोजच्या 90% कार्ये हाताळतात. विशिष्ट किंवा प्रगत वैशिष्ट्यांसाठी, अधिकृत दस्तऐवजीकरण पहा.
मी जोड सुचवू शकतो का?
आम्ही नियमितपणे आमचे संदर्भ अद्यतनित करतो. तुम्हाला गहाळ कमांड दिसल्यास किंवा सूचना असल्यास, आमच्या संपर्क पृष्ठाद्वारे आम्हाला कळवा.