Wiki » History » Version 2
Version 1 (Gateau, Thibault, 02/19/2019 12:59 PM) → Version 2/15 (Gateau, Thibault, 02/19/2019 01:02 PM)
h1.
Create local git repository and initialize it
h2.
#create a local git server
#T1>
T1>
cd && mkdir serverTestGit && cd serverTestGit
mkdir projet.git && cd projet.git
git --bare init
h2.
#initialize it
#T2>
T2>
#cloner le repo pseudo-distant
cd && mkdir git && cd git
git clone <user>@localhost:~/serverTestGit
cd serverTestGit
#configurer l'<user> local
git config --global user.email <user@userplace.eu>
git config --global user.name <user>
#faire un premier commit et le pusher
echo "lorem ispum \n titi \ toto" >> readme.md
git add readme.md
git commit -m "initial commit"
git push origin master
h2.
#use it...
h1.
Useful links
* https://sourceforge.isae.fr/projects/dcas-soft-espace/repository/raw/supportLight.zip
Create local git repository and initialize it
h2.
#create a local git server
#T1>
T1>
cd && mkdir serverTestGit && cd serverTestGit
mkdir projet.git && cd projet.git
git --bare init
h2.
#initialize it
#T2>
T2>
#cloner le repo pseudo-distant
cd && mkdir git && cd git
git clone <user>@localhost:~/serverTestGit
cd serverTestGit
#configurer l'<user> local
git config --global user.email <user@userplace.eu>
git config --global user.name <user>
#faire un premier commit et le pusher
echo "lorem ispum \n titi \ toto" >> readme.md
git add readme.md
git commit -m "initial commit"
git push origin master
h2.
#use it...
h1.
Useful links
* https://sourceforge.isae.fr/projects/dcas-soft-espace/repository/raw/supportLight.zip