From a104ba4b48f60daf381de8cb318f2a331a51cc3a Mon Sep 17 00:00:00 2001 From: Frantisek Hrbata Date: Sun, 20 Dec 2020 15:56:22 +0100 Subject: [PATCH] doc: git-mr-create add info about default tags Signed-off-by: Frantisek Hrbata --- Documentation/git-mr-create.txt | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) 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. -- 1.7.10.4