fix wrong i18n key and added step 6 the push

This commit is contained in:
Sebastian Sdorra
2018-12-11 09:53:40 +01:00
parent f834dd5297
commit 858d2816da
2 changed files with 9 additions and 2 deletions

View File

@@ -45,6 +45,12 @@ class GitMergeInformation extends React.Component<Props> {
git commit -m "Merge {source} into {target}"
</code>
</pre>
{t("scm-git-plugin.information.merge.push")}
<pre>
<code>
git push
</code>
</pre>
</div>
);
}

View File

@@ -6,11 +6,12 @@
"replace" : "Push an existing repository",
"merge": {
"heading": "How to merge source branch into target branch",
"clean": "1. Make sure your workspace is clean and checkout target branch",
"checkout": "1. Make sure your workspace is clean and checkout target branch",
"update": "2. Update workspace",
"merge": "3. Merge source branch",
"resolve": "4. Resolve merge conflicts and add corrected files to index",
"commit": "5. Commit"
"commit": "5. Commit",
"push": "6. Push your merge"
}
},
"config": {