merges
. merges
and are numerically named (e.g /refs/heads/mr/1
). body
which contains a front matter and body sections. The front matter part is used to store merge request metadata while the body section contains the content describing the merge request.master
origin
as our remote name since our network remote node was added under the origin
name. feat
that will add a new file named file.txt
. origin
as our remote name since our network remote node was added under the origin
name. kit mr create
command is used to create the merge request. First, we may check out the base branch:merges/1
, where 1
is the merge request unique identifier. You can specify an alternative number by using the -i
flag.--target
flag species the target branch that will be merged into the base branch master
. For us, the feat
branch is our target branch. --targetHash
flag specifies the hash we expect the base branch to change to after a successful merge. We used ~
to indicate that we want the current hash of thetarget
branch but you can explicitly provide the full hash if you wish./<repo-name>/<branch>
. For example, if the target branch dev
exists on a repo namedexample
, the --target
will be /example/dev
. If--target
is not prefixed with /
it will be considered as a branch on the base repository.1
for which the push operation intends to fulfil. It tells the network that the intent is to fulfil a merge the new changes of the base branch according to match the approved target of a merge request with ID=1
. -i
flag.-i
flag is not required if you are already checked into the target merge request branch.--reply
or -r
flags.--reactions
or -e
flags.list
command: --reverse
to reverse the order. You can also limit the number of issues returned with --limit
or -n
flags. read
command to read the comments of a specific merge request. Supposing there is a merge request with ID = 2
, it can be read like this:--reverse
to reverse the order. You can also limit the number of comments returned with --limit
or -n
flags.close
command. The example command below will close a merge request with ID=2
.reopen
command:opened
or closed
.