git-count
Print the total number of commits.Part of git-extras.
git-extras
git-count-objects
Count the number of unpacked objects and their disk consumption.
git-contrib
Display commits from an author.Part of git-extras.
git-config
Manage custom configuration options for Git repositories.These configurations can be local (for the current repository) or global (for the current user).
git-commits-since
Display commits since a time or date.Part of git-extras.
git-commit
Commit files to the repository.
git-commit-tree
Low level utility to create commit objects.See also: git commit.
git commit
git-commit-graph
Write and verify Git commit-graph files.
git-column
Display data in columns.
git-cola
A powerful Git GUI with a slick and intuitive user interface.
git-coauthor
Add another author to the latest commit. Since this command rewrites the Git history, --force will be needed when pushing next time.Part of git-extras.
--force
git-clone
Clone an existing repository.
git-clear
Clear a Git working directory as if it was freshly cloned with the current branch including files in .gitignore.Part of git-extras.
.gitignore
git-clear-soft
Clear a Git working directory as if it was freshly cloned with the current branch excluding files in .gitignore.Part of git-extras.
git-clean
Remove files not tracked by Git from the working tree.
git-cherry
Find commits that have yet to be applied upstream.
git-cherry-pick
Apply the changes introduced by existing commits to the current branch.To apply changes to another branch, first use git checkout to switch to the desired branch.
git checkout
git-checkout
Checkout a branch or paths to the working tree.
git-checkout-index
Copy files from the index to the working tree.
git-check-ref-format
Check if a reference name is acceptable, and exit with a non-zero status if it is not.