> From: Arnaud BONNET <[email protected]> > Process used: > 1- Creation of deposit (made with the user "ace") > 1- cd /home/ace/RDS/010 > 2 git init --separate-git-dir=/home/ace/RDS/010.git > 3 echo "*%" >> /home/ace/RDS/010.git/.gitignore > 4 echo "* ~" >> /home/ace/RDS/010.git/.gitignore > 5 echo "chn/" >> /home/ace/RDS/010.git/.gitignore
Should be "echo "*%" >> /home/ace/RDS/010/.gitignore". .gitignore lists the files to be ignored in the directory containing the .gitignore file. .gitignore is not part of the .git directory. > 6- git add. > 7- git commit -m "$ date: initialization" > 8- git clone --bare --shared /home/ace/RDS/010.git > /home/ace/depotGIT/RDS010.git > > 2 Use by developers (eg with the user "Arno"): > 1- cd /home/arno > 2- git clone ssh: //ace@localhost//home/ace/depotGIT/RDS010.git -> > first time > 3- cd /home/ace/RDS010 + git pull ssh: > //ace@localhost//home/ace/depotGIT/RDS010.git -> next time Dale -- You received this message because you are subscribed to the Google Groups "Git for human beings" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
