summaryrefslogtreecommitdiff
path: root/po
diff options
context:
space:
mode:
Diffstat (limited to 'po')
0 files changed, 0 insertions, 0 deletions
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 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 config remote.origin.url git-reference-to-public-repository
  • git push --all
  • To instead populate your newly created public repository with a multi-branched
  • local repository, first make a complete clone with all branches setup locally,
  • and push it all - like this for repository with master and master-da branches:
  • git clone git-reference-to-old-public-repository some-temp-dir