Comprehensive Git command reference manual with detailed usage, parameter descriptions, and practical examples. Features search functionality for quick lookup.
git init
git init [options] [directory]
git clone
git clone [options] <repository-url> [directory]
git add
git add [options] <file-path>
git commit
git commit [options] [commit-message]
git branch
git branch [options] [branch-name]
git checkout
git checkout [options] <branch-or-file>
git merge
git merge [options] <branch-name>
git branch -d
git branch -d <branch-name>
git remote add
git remote add <name> <url>
git fetch
git fetch [options] [remote-name]
git pull
git pull [options] [remote-name] [branch-name]
git push
git push [options] [remote-name] [branch-name]
git log
git log [options]
git diff
git diff [options] [file]
git status
git status [options]
git restore
git restore [options] <file>
git reset
git reset [options] [commit]
git clean
git clean [options]
git stash
git stash [options]
git rebase
git rebase [options] <branch>