Бесплатный конвертер
Команды 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 --listgit 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-projectgit clone
Clone a remote repository to your local machine
Пример:
git clone https://github.com/user/repo.gitgit clone --depth
Shallow clone with limited history
Пример:
git clone --depth 1 https://github.com/user/repo.gitgit add
Stage a specific file for the next commit
Пример:
git add src/index.jsgit 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 -pgit status
Show the working tree status (staged, unstaged, untracked)
Пример:
git statusgit status -s
Show a compact status summary
Пример:
git status -sgit diff
Show unstaged changes between working tree and index
Пример:
git diff src/app.jsgit diff --staged
Show staged changes that will go into the next commit
Пример:
git diff --stagedgit restore
Discard changes in the working directory
Пример:
git restore src/index.jsgit restore --staged
Unstage a file (remove from staging area)
Пример:
git restore --staged src/index.jsgit rm
Remove a file from the working tree and index
Пример:
git rm old-file.txtgit mv
Move or rename a file and stage the change
Пример:
git mv oldname.js newname.jsgit 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 --graphgit log --oneline
Show compact one-line commit history
Пример:
git log --oneline -20git log --author
Filter commit history by author
Пример:
git log --author="Alice" --onelinegit log --since
Show commits after a given date
Пример:
git log --since="2024-01-01" --onelinegit show
Show details of a specific commit
Пример:
git show abc1234git diff HEAD
Show all changes since the last commit
Пример:
git diff HEADgit shortlog
Summarize commit history grouped by author
Пример:
git shortlog -sngit branch
List all local branches
Пример:
git branch -agit branch <name>
Create a new branch at the current commit
Пример:
git branch feature/logingit branch -d
Delete a merged local branch
Пример:
git branch -d feature/logingit branch -D
Force-delete a branch regardless of merge status
Пример:
git branch -D old-branchgit branch -m
Rename the current branch
Пример:
git branch -m new-branch-namegit checkout
Switch to an existing branch
Пример:
git checkout maingit checkout -b
Create and switch to a new branch
Пример:
git checkout -b feature/new-uigit switch
Switch to an existing branch (modern syntax)
Пример:
git switch maingit switch -c
Create and switch to a new branch (modern syntax)
Пример:
git switch -c feature/api-v2git merge
Merge a branch into the current branch
Пример:
git merge feature/logingit merge --no-ff
Merge with a merge commit even if fast-forward is possible
Пример:
git merge --no-ff feature/logingit rebase
Reapply commits on top of another branch
Пример:
git rebase maingit rebase -i
Interactive rebase to squash, reorder, or edit commits
Пример:
git rebase -i HEAD~3git remote -v
List remote connections with their URLs
Пример:
git remote -vgit remote add
Add a new remote repository connection
Пример:
git remote add origin https://github.com/user/repo.gitgit remote remove
Remove a remote connection
Пример:
git remote remove origingit remote set-url
Change the URL of an existing remote
Пример:
git remote set-url origin [email protected]:user/repo.gitgit fetch
Download objects and refs from a remote without merging
Пример:
git fetch origingit fetch --all
Fetch from all remotes
Пример:
git fetch --allgit pull
Fetch and integrate changes from a remote branch
Пример:
git pull origin maingit pull --rebase
Pull and rebase instead of merge
Пример:
git pull --rebase origin maingit push
Upload local commits to a remote branch
Пример:
git push origin maingit push -u
Push and set upstream tracking branch
Пример:
git push -u origin feature/logingit push --force-with-lease
Force push safely (fails if remote has new commits)
Пример:
git push --force-with-lease origin feature/logingit push --delete
Delete a remote branch
Пример:
git push origin --delete old-branchgit 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 popgit 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 listgit stash drop
Remove a specific stash entry
Пример:
git stash drop stash@{1}git stash clear
Remove all stashed entries
Пример:
git stash cleargit 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.0git 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-betagit push --tags
Push all local tags to the remote
Пример:
git push origin --tagsgit push origin <tag>
Push a specific tag to the remote
Пример:
git push origin v1.0.0git describe
Show the most recent tag reachable from the current commit
Пример:
git describe --tags --abbrev=0git reset --soft
Move HEAD back, keep changes staged
Пример:
git reset --soft HEAD~1git reset --mixed
Move HEAD back, unstage changes (default)
Пример:
git reset HEAD~1git reset --hard
Move HEAD back and discard all changes
Пример:
git reset --hard HEAD~1git revert
Create a new commit that undoes a previous commit
Пример:
git revert abc1234git revert --no-commit
Revert changes without creating a commit yet
Пример:
git revert --no-commit abc1234git clean -fd
Remove untracked files and directories
Пример:
git clean -fdgit clean -n
Dry run: show what would be removed by clean
Пример:
git clean -ngit checkout -- <file>
Restore a file to the last committed state
Пример:
git checkout -- src/index.jsgit cherry-pick
Apply a specific commit from another branch
Пример:
git cherry-pick abc1234git cherry-pick -n
Cherry-pick without committing (stage only)
Пример:
git cherry-pick -n abc1234git bisect start
Start a binary search to find a bug-introducing commit
Пример:
git bisect start && git bisect bad && git bisect good v1.0git bisect good/bad
Mark a commit as good or bad during bisect
Пример:
git bisect goodgit reflog
Show the history of HEAD and branch tip movements
Пример:
git reflog --date=isogit submodule add
Add a repository as a submodule
Пример:
git submodule add https://github.com/user/lib.git libs/libgit submodule update
Initialize and update all submodules
Пример:
git submodule update --init --recursivegit worktree add
Check out a branch in a new working directory
Пример:
git worktree add ../hotfix hotfix/criticalgit blame
Show who last modified each line of a file
Пример:
git blame -L 10,20 src/app.jsgit archive
Create a zip/tar archive of a tree
Пример:
git archive --format=zip HEAD > release.zipПохожие инструменты
Посмотреть все инструментыКоманды Docker Шпаргалка
Подробная шпаргалка по командам Docker. Ищите 70+ основных команд Docker с примерами, описаниями и копированием одним кликом.
Команды Vim Шпаргалка
Полная шпаргалка по командам Vim. Поиск по 80+ основным командам Vim с примерами, описаниями и копированием одним кликом.
Linux / Bash Шпаргалка по Командам
Полная шпаргалка по командам Linux и Bash. Ищите более 80 основных команд с примерами, описаниями и копированием в один клик.
SQL запрос Форматирование и подсветка
Форматируйте, украшайте и подсвечивайте SQL-запросы мгновенно в браузере. Бесплатно, безопасно, загрузка не требуется.