summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorJoey Hess <joey@kodama.kitenet.net>2008-10-24 17:47:55 -0400
committerJoey Hess <joey@kodama.kitenet.net>2008-10-24 17:47:55 -0400
commitbc63bc9eea8274cdb7bdd289a1253bf418dcbfdd (patch)
tree30cc6112eda264b3f5a1f425b885211dc9654972 /doc
parentf20af3bec35b3da52da9084dc539b5ebb8042165 (diff)
idea
Diffstat (limited to 'doc')
-rw-r--r--doc/news/git_push_to_this_wiki/discussion.mdwn5
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/news/git_push_to_this_wiki/discussion.mdwn b/doc/news/git_push_to_this_wiki/discussion.mdwn
index 4ca18ce8f..252fe724a 100644
--- a/doc/news/git_push_to_this_wiki/discussion.mdwn
+++ b/doc/news/git_push_to_this_wiki/discussion.mdwn
@@ -19,3 +19,8 @@ into this special-purpose branch. I guess it would work nicely if I had only
one offline box with not-yet-pushed changes at the same time, but would break
in awful and various ways when it is not the case. Any alternative idea?
--[[intrigeri]]
+
+> Not that I'm very careful to avoid pushing merge commits (see git log ;-),
+> but I sometimes use `git pull --rebase` to pull changes from a repo. That
+> will rebase your local changes on top of the changes pulled, avoiding the
+> merge commits. I'm sure more involved solutions are possible. --[[Joey]]