I would also suggest fetch. Pull is fetch and merge. So if you don't want to merge, you can just fetch.
Emacs
A community for the timeless and infinitely powerful editor. Want to see what Emacs is capable of?!
Get Emacs
Rules
- Posts should be emacs related
- Be kind please
- Yes, we already know: Google results for "emacs" and "vi" link to each other. We good.
Emacs Resources
Emacs Tutorials
- Beginner’s Guide to Emacs
- Absolute Beginner's Guide to Emacs
- How to Learn Emacs: A Hand-drawn One-pager for Beginners
Useful Emacs configuration files and distributions
Quick pain-saver tip
I am okay with this approach. I just wanted to make sure that I am not missing anything. Magit claims that it provides all the features that are normally available via CLI route. So I thought may be `git pull --no-rebase` is hidden somewhere in the user interface.
That I cannot answer. Never used that flag. Maybe try grepping the magit package.
You and chatgpt in unison...
That's why I said 'also.'
I avoid the need to do this by always keeping my local changes in a branch. Then I can pull master from the remote without any merging, rebase my branch, then merge the branch back into master in a fast forward. Keeps a clean stack of commits without any merges in the history.
No rebase is the default for both magit and git
This. Git pull will never rebase unless told to do so.
I understand that. But we have to choose betweet --rebase
, --no-rebase
or --ff-only
when git gets stuck.
If Magit is functioning correctly, it shouldn't error out when both the remote and local repos have been updated post the last sync. Currently, to resolve this, I resort to the CLI and run git pull --no-rebase
, which prompts for a comment and creates a new commit upon saving.
I want exactly this behavior inside Magit. Is there a setting to do that?
You are doing something wrong and/or your understanding of git/magit is lacking. Pulling from a divergent remote branch is what we all do, every single day and Magit obviously covers this scenario, by default - without rebasing.
What happens after the magit error? are you in a merge situation? is magit waiting for you to resolve conflicts? if you press m
are you asked to to complete or abort the merge?
It should error out in a such case and you should rebase your local changes from remote whenever you can, manually fixing the conflicts if they exist.
The only use case for no rebase is when you have a gitconfig not to rebase on pull and you manually want to just pull, which is a quite rare use case.
Could potentially add it to the pull interface:
(transient-append-suffix 'magit-pull "-r" '("-R" "No rebase" "--no-rebase"))
(positions it under the rebase flag -r
)