From: Frantisek Hrbata Date: Sun, 20 Dec 2020 14:56:22 +0000 (+0100) Subject: doc: git-mr-create add info about default tags X-Git-Tag: v0.2~9 X-Git-Url: http://www.hrbata.com/gitweb/?a=commitdiff_plain;h=a104ba4b48f60daf381de8cb318f2a331a51cc3a;p=gimrr.git doc: git-mr-create add info about default tags Signed-off-by: Frantisek Hrbata --- diff --git a/Documentation/git-mr-create.txt b/Documentation/git-mr-create.txt index cccde12..57bac13 100644 --- a/Documentation/git-mr-create.txt +++ b/Documentation/git-mr-create.txt @@ -18,8 +18,18 @@ DESCRIPTION Creates a new MR (merge request) from 'REV', which is a revision in whatever form is accepted by git. If 'REV' is not specified, 'HEAD' is used as the default value. New MR is identified by the full 'SHA-1' of 'REV' -and a new reference is created under the 'mrs' refs namespace -'refs/mrs///head'. +and three new references are created under the 'mrs' refs namespace. + +. 'refs/mrs///head' +* This is just a pointer to the MR tip commit. + +. 'refs/mrs///mr' +* Basic MR tags which cannot be changed. See *RESERVED TAGS* in +link:git-mr-tag.html[git-mr-tag(1)]. + +. 'refs/mrs///tags' +* Initial user tags with MR subject and description. These can be +changed by the MR author. Each MR has to have a base specified with the *-b* argument. It's a 'REV' the MR is based on. @@ -46,6 +56,7 @@ OPTIONS Use 'MSG' as MR description. Multiple 'MSG's are concatenated as separate paragraphs. + EXAMPLES -------- Create a new MR based on 'master' branch.