Comprehensive Git command reference manual with detailed usage, parameter descriptions, and practical examples. Features search functionality for quick lookup.
git initgit init [options] [directory]git clonegit clone [options] <repository-url> [directory]git addgit add [options] <file-path>git commitgit commit [options] [commit-message]git branchgit branch [options] [branch-name]git checkoutgit checkout [options] <branch-or-file>git mergegit merge [options] <branch-name>git branch -dgit branch -d <branch-name>git remote addgit remote add <name> <url>git fetchgit fetch [options] [remote-name]git pullgit pull [options] [remote-name] [branch-name]git pushgit push [options] [remote-name] [branch-name]git loggit log [options]git diffgit diff [options] [file]git statusgit status [options]git restoregit restore [options] <file>git resetgit reset [options] [commit]git cleangit clean [options]git stashgit stash [options]git rebasegit rebase [options] <branch>