Setup and Config
Getting and Creating Projects
Basic Snapshotting
Branching and Merging
Sharing and Updating Projects
Inspection and Comparison
Patching
Debugging
External Systems
Administration
Server Admin
Plumbing Commands
- 1.8.1.1 → 1.8.3.1 no changes
-
1.8.1
12/31/12
- 1.7.10.4 → 1.8.0.3 no changes
-
1.7.10.3
05/25/12
- 1.7.7.1 → 1.7.10.2 no changes
-
1.7.7
09/30/11
- 1.7.6.1 → 1.7.6.6 no changes
-
1.7.6
06/26/11
- 1.7.4.1 → 1.7.5.4 no changes
-
1.7.4
01/31/11
- 1.7.2.3 → 1.7.3.5 no changes
-
1.7.2.2
08/19/10
- 1.7.2.1 no changes
-
1.7.2
07/21/10
- 1.7.1.2 → 1.7.1.4 no changes
-
1.7.1.1
06/29/10
-
1.7.1
04/24/10
- 1.7.0.1 → 1.7.0.9 no changes
-
1.7.0
02/12/10
git-notes(1) Manual Page
NAME
git-notes - Add/inspect commit notes
SYNOPSIS
git notes (edit [-F <file> | -m <msg>] | show) [commit]
DESCRIPTION
This command allows you to add notes to commit messages, without changing the commit. To discern these notes from the message stored in the commit object, the notes are indented like the message, after an unindented line saying "Notes:".
To disable commit notes, you have to set the config variable core.notesRef to the empty string. Alternatively, you can set it to a different ref, something like "refs/notes/bugzilla". This setting can be overridden by the environment variable "GIT_NOTES_REF".
SUBCOMMANDS
- edit
Edit the notes for a given commit (defaults to HEAD).
- show
Show the notes for a given commit (defaults to HEAD).
OPTIONS
- -m <msg>
Use the given note message (instead of prompting). If multiple -m (or -F) options are given, their values are concatenated as separate paragraphs.
- -F <file>
Take the note message from the given file. Use - to read the note message from the standard input. If multiple -F (or -m) options are given, their values are concatenated as separate paragraphs.
Author
Written by Johannes Schindelin <johannes.schindelin@gmx.de>
Documentation
Documentation by Johannes Schindelin
GIT
Part of the git(7) suite