summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
Diffstat (limited to 'README')
-rw-r--r--README8
1 files changed, 3 insertions, 5 deletions
diff --git a/README b/README
index 289b52d..5280f86 100644
--- a/README
+++ b/README
@@ -47,13 +47,11 @@ once, not on subsequent pushes) - like this:
git config remote.origin.url git-reference-to-public-repository
git push --all
-To resyncronize an older fork of the repository, re-applying local changes on
-top of the newer upstream GIT source, do like this from within your local
-forked repository:
+To resyncronize an older fork of the repository with newer upstream changes, do
+like this (skip first command on subsequent updates):
git remote add ikiwiki http://source.jones.dk/ikiwiki.git
- git fetch ikiwiki
- git rebase ikiwiki/master
+ git pull ikiwiki master
----