1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
|
.\" generated with Ronn-NG/v0.9.1
.\" http://github.com/apjanke/ronn-ng/tree/0.9.1
.TH "GIT\-STAMP" "1" "September 2024" "" "Git Extras"
.SH "NAME"
\fBgit\-stamp\fR \- Stamp the last commit message
.SH "SYNOPSIS"
\fBgit stamp [<options>] <id> [<messages>]\fR
.SH "DESCRIPTION"
Lets you amend the last commit with a stamp message\.
.P
The command appends a message with its identifier to the last commit message\.
.br
By default all stamps are appended as a new paragraph to the commit message\.
.br
You can change this behavior by using the \-\-replace flag\.
.br
With this flag, all the related stamps with the same identifier will be removed first before the new one gets appended\.
.P
\fBWARNING!\fR If a commit message without stamp have a line starting with the same identifier, it will be interpreted as a stamp
.SH "OPTIONS"
\-r, \-\-replace
.IP "" 4
.nf
Replace all previous stamps in the last commit message that have the same identifier
The identifier is case insensitive for this replacement
.fi
.IP "" 0
.SH "EXAMPLES"
Commit message is
.IP "" 4
.nf
| Fix timezone bug
.fi
.IP "" 0
.P
Reference the issues numbers from your bug tracker
.IP "" 4
.nf
$ git stamp Issue FOO\-123
$ git stamp Issue FOO\-456 \e#close
| Fix timezone bug
|
| Issue FOO\-123
|
| Issue FOO\-456 #close
.fi
.IP "" 0
.P
Link to its review page
.IP "" 4
.nf
$ git stamp Review https://reviews\.foo\.org/r/4567/
| Fix timezone bug
|
| Issue FOO\-123
|
| Issue FOO\-456 #close
|
| Review https://reviews\.foo\.org/r/4567/
.fi
.IP "" 0
.P
Replace previous issues with a new one
.br
(Note that the identifier is case insensitive)
.IP "" 4
.nf
$ git stamp \-\-replace issue BAR\-123
| Fix timezone bug
|
| Review https://reviews\.foo\.org/r/4567/
|
| issue BAR\-123
.fi
.IP "" 0
.SH "AUTHOR"
Written by Damien Tardy\-Panis <\fIdamien@tardypad\.me\fR>
.SH "REPORTING BUGS"
<\fIhttps://github\.com/tj/git\-extras/issues\fR>
.SH "SEE ALSO"
<\fIhttps://github\.com/tj/git\-extras\fR>
|