-
-
Notifications
You must be signed in to change notification settings - Fork 580
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
git pull (fetch+simple merge) #319
Comments
I might be wrong, but wouldn't it be better to first implement an interface for merging and solving conflicts? And then reuse that interface when fast-forward pull is not possible? |
yeah I am at that point, I am reducing the scope of this to conflict free merging and otherwise will discard the merge with an error message. the whole merging/conflict story is post-0.11 |
so good news. the fast forward merge support works. I'd like to cleanup somethings first and then tackle three-way merging in a separate ticket. for now we have a secret key todo:
|
git pull is short for
git-fetch
+git-merge
/git-rebase
.I added
asyncgit::fetch_origin
already so now all that's left is to merge/rebase afterwards.this is to be more specific than #90
The text was updated successfully, but these errors were encountered: