Skip to content
Snippets Groups Projects
Verified Commit 431268ba authored by ck85nori's avatar ck85nori :railway_track:
Browse files

uses simpler branch names in merge

parent 5cc4c570
No related branches found
No related tags found
No related merge requests found
...@@ -803,8 +803,7 @@ ...@@ -803,8 +803,7 @@
```bash ```bash
git remote add alice https://... git remote add alice https://...
git fetch alice git fetch alice
git checkout master git merge alice/master
git merge alice/topic/feature
# fix conflicts # fix conflicts
git push git push
``` ```
...@@ -813,7 +812,6 @@ ...@@ -813,7 +812,6 @@
```bash ```bash
git fetch upstream git fetch upstream
git checkout topic/feature
git merge origin/master git merge origin/master
# fix conflicts # fix conflicts
git push git push
...@@ -877,7 +875,7 @@ ...@@ -877,7 +875,7 @@
```bash ```bash
git remote add alice https://... git remote add alice https://...
git fetch alice git fetch alice
git rebase master alice/topic/feature git rebase master alice/master
# fix conflicts # fix conflicts
git push git push
# close merge request # close merge request
...@@ -887,7 +885,7 @@ ...@@ -887,7 +885,7 @@
```bash ```bash
git fetch upstream git fetch upstream
git rebase origin/master topic/feature git rebase origin/master master
# fix conflicts # fix conflicts
# force push because branch history changed # force push because branch history changed
git push --force git push --force
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment