How to create a git repository on your own server:
mkdir <dir-name>
chown <username>:<git-users-group> <dir-name>
chmod g+ws <dir-name>
cd <dir-name>
git init
chmod g+ws .git
git config –bool core.bare true
Mar 24
How to create a git repository on your own server:
mkdir <dir-name>
chown <username>:<git-users-group> <dir-name>
chmod g+ws <dir-name>
cd <dir-name>
git init
chmod g+ws .git
git config –bool core.bare true