Git Commands: Difference between revisions
Jump to navigation
Jump to search
(38 intermediate revisions by the same user not shown) | |||
Line 6: | Line 6: | ||
* [[git config]] | * [[git config]] | ||
=Local Repository Information= | |||
* [[git config]] | |||
* [[git log]] | |||
* [[git tag]] | |||
* [[git blame]] | |||
* [[git bisect]] | |||
* [[git cat-file]] | |||
* [[git show-ref]] | |||
* [[git ls-files]] | |||
* [[git merge-base]] | |||
* [[git reflog]] | |||
* [[git rev-list]] | |||
* [[git rev-parse]] | |||
* [[git diff]] | |||
* [[git symbolic-ref]] | |||
* [[git status]] | |||
* [[git check-ingore]] | |||
=Local Repository Manipulation= | =Local Repository Manipulation= | ||
* [[git checkout]] | |||
* [[git commit]] | |||
* [[git tag]] | |||
* [[git reset]] | * [[git reset]] | ||
* [[git update-index]] | |||
* [[git clean]] | |||
* [[git apply]] | |||
* [[git cherry-pick]] | |||
* [[git rm]] | |||
* [[git add]] | |||
* [[git switch]] | |||
==Low-Level Repository Operations== | |||
* [[git write-tree]] | |||
* [[git commit-tree]] | |||
=Branch Operations= | =Branch Operations= | ||
* [[git branch]] | |||
* [[git merge]] | |||
* [[git rebase]] | |||
=Remote Repository Interaction= | =Remote Repository Interaction= | ||
* [[git ls-remote]] [[git remote]] | * [[git ls-remote]], [[git remote#Overview|git remote]] | ||
* [[git clone]] | * [[git clone]] | ||
* [[git fetch]] | * [[git fetch]] | ||
* [[git push]] | * [[git push]] | ||
* [[git pull]] | * [[git pull]] | ||
=Local Work Area Interaction= | |||
* [[git stash]] |
Latest revision as of 02:29, 25 July 2023
Internal
Configuration Commands
Local Repository Information
- git config
- git log
- git tag
- git blame
- git bisect
- git cat-file
- git show-ref
- git ls-files
- git merge-base
- git reflog
- git rev-list
- git rev-parse
- git diff
- git symbolic-ref
- git status
- git check-ingore
Local Repository Manipulation
- git checkout
- git commit
- git tag
- git reset
- git update-index
- git clean
- git apply
- git cherry-pick
- git rm
- git add
- git switch