Skip to content

Instantly share code, notes, and snippets.

@kogakure
Created February 22, 2009 09:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kogakure/68414 to your computer and use it in GitHub Desktop.
Save kogakure/68414 to your computer and use it in GitHub Desktop.
Bash: Create an exportable bare git repository
#!/bin/bash
mkdir $1.git
cd $1.git
git --bare init --shared
touch GITWEB_EXPORT_OK
touch git-daemon-export-ok
git --bare update-server-info
chmod a+x hooks/post-update
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment