
Git - git-show Documentation
Useful for commands like git show that show the patch by default to squelch their output, or to cancel the effect of options like --patch, --stat earlier on the command line in an alias.
Git - Viewing the Commit History
A huge number and variety of options to the git log command are available to show you exactly what you’re looking for. Here, we’ll show you some of the most popular.
Git - git-show Documentation
Show the notes (see git-notes [1]) that annotate the commit, when showing the commit log message. This is the default for git log, git show and git whatchanged commands when there …
Git - git-ls-files Documentation
Show files having resolve-undo information in the index together with their resolve-undo information. (resolve-undo information is what is used to implement "git checkout -m $PATH", …
Git - Inspection and Comparison
The git describe command is used to take anything that resolves to a commit and produces a string that is somewhat human-readable and will not change. It’s a way to get a description of …
Git - git-diff Documentation
Useful for commands like git show that show the patch by default to squelch their output, or to cancel the effect of options like --patch, --stat earlier on the command line in an alias.
Git - Remote Branches
You can get a full list of remote references explicitly with git ls-remote <remote>, or git remote show <remote> for remote branches as well as more information.
Git - git-show-ref Documentation
Show references matching one or more patterns. Patterns are matched from the end of the full name, and only complete parts are matched, e.g. master matches refs/heads/master, …
Git - git-remote Documentation
OPTIONS -v --verbose Be a little more verbose and show remote url after name. For promisor remotes, also show which filters (blob:none etc.) are configured. NOTE: This must be placed …
Git - Working with Remotes
If you want to see more information about a particular remote, you can use the git remote show <remote> command. If you run this command with a particular shortname, such as origin, you …