If you install gitosis on ubuntu-server 10.10 via apt-get:
sudo apt-get install gitosis
The post-install script will create a new gitosisuser.
This user will be used to allow people to connect with SSH using public keys. That is, without requiring each user to have their own account on your server:
git clone [email protected]:project.git
git remote add origin [email protected]:project.git
So far, so good. But:
I have seen many times and I personally prefer to use the gitusername for that:
git clone [email protected]:project.git
git remote add origin [email protected]:project.git
- Is there any reason we use
gitosisinstead of simplygiton ubuntu-server? - Should I avoid renaming the
gitosisuser togitwith:sudo usermod -l git gitosis
Any idea welcome