Allow rebasing in git sync
See original GitHub issuegit sync
should allow (or be able to default to) rebasing.
Even though the documentation says the that there is an “Auto-merge/rebase” the code seems to point out that it can only merge. Am I missing something?
Issue Analytics
- State:
- Created 11 years ago
- Comments:14
Top Results From Across the Web
Merging vs. Rebasing | Atlassian Git Tutorial
By default, the git pull command performs a merge, but you can force it to integrate the remote branch with a rebase by...
Read more >Configuring commit rebasing for pull requests - GitHub Docs
Under "Pull Requests", select Allow rebase merging. This allows contributors to merge a pull request by rebasing their individual commits onto the base...
Read more >git-rebase Documentation - Git
Rebase all commits reachable from <branch> , instead of limiting them with an <upstream> . This allows you to rebase the root commit(s)...
Read more >git synchronization of rebased branches - Stack Overflow
I have just experimented with it and using git pull --rebase works when pulling from a rebased branch. Without the --rebase flag, ...
Read more >Introduction to Git rebase and force-push - GitLab Docs
git rebase rewrites the commit history. It can be harmful to do it in shared branches. It can cause complex and hard to...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I think this has been fixed by #92. And 252b1eb allows “always rebase” for
git sync
.Looking at scm.py#L132, when would this return 0?
Does that cause it to always do a merge?