Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Now, in your home folder, you should do the following:

Code Blocknoformat
cd $HOME 
chmod 750 . 
mkdir project 
chmod 770 ./project 
chmod g+s ./project

Poeple in your group can now see into your home folder and write to your $HOME/project folder.

...

It is imperitive that you minimally protect your .ssh folder, espeicially if you use public keys (GIT server uses them, you may also use them on your own) To protect:

Code Blocknoformat
chmod 700 $HOME/.ssh 
chmod \-r go-rwX $HOME/.ssh

Your account security is your responsibility!

...