Projet

Général

Profil

Wiki » Historique » Version 2

Denise DERRIEN-PÉDEN, 27/06/2017 11:24

1 1 Jean-Marc TÊTU
h1. Comment utiliser Redmine 
2
3 2 Denise DERRIEN-PÉDEN
h2. Documentation réservée aux membres d'IMT Atlantique :
4 1 Jean-Marc TÊTU
5
* https://intranet.telecom-bretagne.eu/logistique/logistique_informatique/modes_d_emplois/redmine/
6
* https://formations.telecom-bretagne.eu/fad/course/view.php?id=23996
7
8 2 Denise DERRIEN-PÉDEN
h2. Documentation accessible à tous :
9 1 Jean-Marc TÊTU
10
* http://www.redmine.org/projects/redmine/wiki/FrGuide
11
12
13
h1.  Logiciels de gestion de version
14
15
16
Exemples de jeu de commande pour recopier le dépôt en local, y ajouter le fichier bob, puis modifier ce même fichier.
17
18
h2. SVN
19
20
21
<pre>
22
svn co https://redmine-df.telecom-bretagne.eu/svn/test_charge
23
cd test_charge/
24
touch bob
25
svn add bob
26
svn commit -m "0"
27
echo "hello world" > bob
28
svn commit -m "1"
29
</pre> 
30
31
32
h2.  GIT
33
34
35
<pre>
36
git clone http://redmine-df.telecom-bretagne.eu/git/test_charge
37
cd test_charge/
38
touch bob
39
git add bob
40
git commit -m "0"
41
git push --set-upstream  http://redmine-df.telecom-bretagne.eu/git/test_charge
42
echo "hello world" > bob
43
git commit -a -m "1"
44
git push
45
</pre>