diff options
author | Jonas Smedegaard <dr@jones.dk> | 2007-10-28 18:40:12 +0100 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2007-10-28 18:40:12 +0100 |
commit | 90ac3ddb96fa6516388bc5f6f04a4acd228d28e0 (patch) | |
tree | fc6a1d3fd312ac57e9f2d07fd51b59a4cca5966a | |
parent | ae68052e87dad54b16a9878f98dd9a2207bb9cb1 (diff) |
Forking development requires changing (not adding) the origin.
-rw-r--r-- | README | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -36,11 +36,11 @@ working repository - like this: GIT_DIR=public_dir/repository_name.git git --bare init --shared chmod +x public_dir/repository_name.git/hooks/post-update -To actually use your newly created public repository as above, you first need -to populate it with your current working repository (the --all option is only -this once, not on subsequent pushes) - like this: +To actually use your newly created public repository created above, you need to +populate it with your current working repository (the --all option is only this +once, not on subsequent pushes) - like this: - git remote add origin git-reference-to-public-repository + 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 |