-
Notifications
You must be signed in to change notification settings - Fork 29.8k
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
contributing: commiter git FAQ #68
Conversation
Describe in details how our current git flow works and could be used. Fix nodejs#67
|
||
```sh | ||
git fetch origin | ||
git merge --ff-only origin/v0.12 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there a reason to prefer fetch + ff-only merge over git pull --rebase
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think the fetch
+ merge
is much more explicit.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
+1 on more explicit
Left two suggestions and there is a typo in the commit log (s/commiter/committer/) but, apart from that, LGTM. |
+1 |
@bnoordhuis pushed a fix |
Cheers, LGTM. |
Landed in dca1ee4, thank you! |
wasn't there talk of automating all of this? |
@mikeal there was, but knowing how to use git is still good. And this could be a good starting point for a people working on that tool. |
Describe in details how our current git flow works and could be used.
Fix #67