REDMINE GIT » History » Version 13
Frédéric Blanc, 2024-10-22 13:04
1 | 1 | Frédéric Blanc | h1. REDMINE GIT |
---|---|---|---|
2 | |||
3 | h2. REDMINE |
||
4 | |||
5 | 5 | Frédéric Blanc | !clipboard-202407221045-zg2ft.png! |
6 | |||
7 | 6 | Frédéric Blanc | h3. Textile Formatting |
8 | |||
9 | https://www.redmine.org/projects/redmine/wiki/RedmineTextFormattingTextile |
||
10 | 5 | Frédéric Blanc | |
11 | 10 | Frédéric Blanc | h3. Dépôt |
12 | |||
13 | !clipboard-202410221247-wredq.png! |
||
14 | |||
15 | 12 | Frédéric Blanc | !clipboard-202410221302-06ov5.png! |
16 | |||
17 | 10 | Frédéric Blanc | |
18 | 1 | Frédéric Blanc | h2. GIT |
19 | |||
20 | 4 | Frédéric Blanc | !clipboard-202407221044-y6urs.png! |
21 | |||
22 | 7 | Frédéric Blanc | h3. Commande git Linux |
23 | |||
24 | 11 | Frédéric Blanc | Initialisation d’un dépôt Git dans un répertoire existant |
25 | <pre><code class="shell"> |
||
26 | git init |
||
27 | 13 | Frédéric Blanc | git add * |
28 | git commit -m "Initializing" |
||
29 | git remote add origin https://--------- |
||
30 | git push -u origin master |
||
31 | 11 | Frédéric Blanc | </code></pre> |
32 | |||
33 | 7 | Frédéric Blanc | vérifier |
34 | <pre><code class="shell"> |
||
35 | git status |
||
36 | </code></pre> |
||
37 | |||
38 | mettre a jour |
||
39 | <pre><code class="shell"> |
||
40 | git add * |
||
41 | git commit -m "changement" |
||
42 | git push origin master |
||
43 | </code></pre> |
||
44 | |||
45 | 8 | Frédéric Blanc | Rapatrier et intégrer un autre dépôt ou une branche locale |
46 | <pre><code class="shell"> |
||
47 | git pull |
||
48 | </code></pre> |
||
49 | |||
50 | 9 | Frédéric Blanc | si erreur type Veuillez valider ou remiser vos modifications avant la fusion. |
51 | <pre><code class="shell"> |
||
52 | git checkout . |
||
53 | </code></pre> |
||
54 | |||
55 | 1 | Frédéric Blanc | h3. TortoiseGit |
56 | |||
57 | 3 | Frédéric Blanc | !clipboard-202407221043-cj2mv.png! |
58 | |||
59 | 2 | Frédéric Blanc | TortoiseGit est un client du logiciel de gestion de versions Git, implémenté comme une extension shell de Windows. C'est un logiciel libre diffusé sous licence publique générale GNU. |
60 | 1 | Frédéric Blanc | http://marc.chevaldonne.free.fr/ens_rech/DocumentsDivers_files/Quick%20Guide%20Git%20TortoiseGit.pdf |