Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
git-seminar
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Maximilian Konzack
git-seminar
Commits
431268ba
Verified
Commit
431268ba
authored
6 years ago
by
ck85nori
Browse files
Options
Downloads
Patches
Plain Diff
uses simpler branch names in merge
parent
5cc4c570
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
basics.html
+3
-5
3 additions, 5 deletions
basics.html
with
3 additions
and
5 deletions
basics.html
+
3
−
5
View file @
431268ba
...
...
@@ -803,8 +803,7 @@
```bash
git remote add alice https://...
git fetch alice
git checkout master
git merge alice/topic/feature
git merge alice/master
# fix conflicts
git push
```
...
...
@@ -813,7 +812,6 @@
```bash
git fetch upstream
git checkout topic/feature
git merge origin/master
# fix conflicts
git push
...
...
@@ -877,7 +875,7 @@
```bash
git remote add alice https://...
git fetch alice
git rebase master alice/
topic/feature
git rebase master alice/
master
# fix conflicts
git push
# close merge request
...
...
@@ -887,7 +885,7 @@
```bash
git fetch upstream
git rebase origin/master
topic/feature
git rebase origin/master
master
# fix conflicts
# force push because branch history changed
git push --force
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment