-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
715 lines (503 loc) · 16.4 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
<!DOCTYPE html>
<html>
<head>
<title>Travail collaboratif - Bonnes pratiques</title>
<meta charset="utf-8">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" integrity="sha512-dTfge/zgoMYpP7QbHy4gWMEGsbsdZeCXz7irItjcC3sPUFtf0kuFbDz/ixG7ArTxmDjLXDmezHubeNikyKGVyQ==" crossorigin="anonymous">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap-theme.min.css" integrity="sha384-aUGj/X2zp5rLCbBxumKTCw2Z50WgIr1vs/PFN4praOTvYXWlVyh2UtNUU0KAUhAX" crossorigin="anonymous">
<link rel="stylesheet" href="css/style.css">
<!-- Latest compiled and minified JavaScript -->
<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js" integrity="sha512-K1qjQ+NcF2TYO/eI3M6v8EiNYZfA95pQumfvcVrTHtwQVDG+aHRqLi/ETn2uB+1JqwYqVG3LIvdm9lj6imS/pQ==" crossorigin="anonymous"></script>
<style>
</style>
</head>
<body>
<textarea id="source">
name: inverse
layout: true
class: center, middle, inverse
---
# Travail collaboratif - Bonnes pratiques
<hr />
.nolink[[Andréanne Beardsell](https://www.researchgate.net/profile/Andreanne_Beardsell)]
<br />
.nolink[[Nicolas Casajus](http://ahasverus.github.io/)]
<br /><br />
<img src="img/logo-slack.png" style="width:100px; margin-left: 20px; margin-right: 20px;"></img>
<img src="img/logo-git.png" style="width:225px; margin-left: 20px; margin-right: 20px;"></img>
<img src="img/logo-github.png" style="width:150px; margin-left: 20px; margin-right: 20px;"></img>
<br />
.ssmall[Présentation disponible en ligne<br />[https://chaireBioNorth.github.io/labmeeting-20171124/](https://chaireBioNorth.github.io/labmeeting-20171124/)]
.ssmall[Code diponible sur GitHub<br />[https://github.com/chaireBioNorth/labmeeting-20171124](https://github.com/chaireBioNorth/labmeeting-20171124)]
<br />
.ssmall[Réunion de laboratoire]
<br />
.ssmall[Vendredi 24 Novembre 2017]
???
pas de note
---
name: inverse
layout: true
class: center, middle, inverse
---
## Travail collaboratif
<hr />
### Principaux défis
---
name: inverse
layout: true
class: center, middle, inverse
---
<img src="img/logo-slack-2.png" style="width:450px;"></img>
---
layout: false
## Slack en quelques mots
<hr /><br />
* Site officiel : [https://slack.com/](https://slack.com/)
* _Searchable Log of All Conversation and Knowledge_
* Plate-forme de communication collaborative
* Chat IRC organisé en canaux
* Partage de fichiers
* Édition de fichiers à plusieurs
--
* Intégration de services extérieurs
* _Cloud services_ (Dropbox, Google Drive, etc.)
* Services de communications (Skype, Hangouts, etc.)
* Services de réseaux sociaux (Twitter, etc.)
* Service de développement (GitHub, Travis CI, etc.)
--
## Live demo
---
name: inverse
layout: true
class: center, middle, inverse
---
<img src="img/logo-git.png" style="width:350px;"></img>
---
layout: false
## git en quelques mots
<hr />
* Site officiel: [https://git-scm.com](https://git-scm.com)
* Logiciel de gestion de versions (_versioning_)
* Historique des modifications
* Résolution de conflits par fusion
* Système de branches
* Système décentralisé (distribué)
* Libre, gratuit et multiplateforme
<br />
<img style="width: 50%; margin-left: 50%;" src="img/git-branch.png"></img>
---
layout: false
## Système centralisé vs. distribué
<hr />
* Système centralisé
<img class="git" style="width: 55%;" src="img/sys-centralise.png"></img>
<br />
* Système distribué (git)
<img class="git" style="width: 55%;" src="img/sys-decentralise.png"></img>
---
layout: false
## Démarrage d'un projet git
<hr />
<img class="git" src="img/git-00.png"></img>
<br /><br />
```bash
$ mkdir monprojet/ # Création d'un nouveau dossier
$ cd monprojet/ # Déplacement dans ce dossier
$ git init # Initialisation d'un versioning
```
---
layout: false
## Ajout de premier(s) fichier(s)
<hr />
<img class="git" src="img/git-01.png"></img>
<br /><br />
```bash
$ git add --all # Ajout des modifications à l'historique*
$ git add *.txt # Ajout des modifications à l'historique*
$ git add readme.txt # Ajout des modifications à l'historique*
$ git commit -m "Mon 1er commit" # Engagement des modifs + Commentaire
```
---
layout: false
## Poursuite du développement
<hr />
<img class="git" src="img/git-02.png"></img>
<br /><br />
```bash
$ git status # Statut des fichiers modifiés
$ git add --all # Ajout des modifications à l'historique
$ git commit -m "Mon 2nd commit" # Engagement des modifs + Commentaire
$ git log --oneline # Affichage de l'historique
```
---
layout: false
## Notion de branches
<hr />
<img class="git" src="img/git-03.png"></img>
<br /><br />
```bash
$ git branch # Affichage des branches
# * master
```
---
layout: false
## Retour en arrière (1)
<hr />
<img class="git" src="img/git-04.png"></img>
<br /><br />
```bash
$ git log --oneline # Affichage de l'historique
# 802c024 Mon 2nd commit
# 2dea58d Mon 1er commit
$ git checkout 2dea58d readme.md # Retour en arrière
$ git commit -m "Etat initial" # Engagement des modifications
```
---
layout: false
## Retour en arrière (2)
<hr />
<img class="git" src="img/git-05.png"></img>
<br /><br />
```bash
$ git log --oneline # Affichage de l'historique
# 6acd22h Etat initial
# 802c024 Mon 2nd commit
# 2dea58d Mon 1er commit
```
---
layout: false
## Poursuite du développement
<hr />
<img class="git" src="img/git-06.png"></img>
<br /><br />
```bash
$ git status # Statut des fichiers modifiés
$ git add --all # Ajout des modifications à l'historique
$ git commit -m "Mon 3ème commit" # Engagement des modifs + Commentaire
```
---
layout: false
## Création d'une branche
<hr />
<img class="git" src="img/git-10.png"></img>
<br /><br />
```bash
$ git branch exploration-1 # Création d'une nouvelle branche
$ git branch # Affichage des branches
# exploration-1
# * master
```
---
layout: false
## Déplacement dans une branche
<hr />
<img class="git" src="img/git-10.png"></img>
<br /><br />
```bash
$ git checkout exploration-1 # Déplacement dans une branche
$ git branch # Affichage des branches
# * exploration-1
# master
```
---
layout: false
## Poursuite du développement (branche parallèle)
<hr />
<img class="git" src="img/git-11.png"></img>
<br /><br />
```bash
$ git status # Statut des fichiers modifiés
$ git add --all # Ajout des modifications à l'historique
$ git commit -m "Mon nouveau commit" # Engagement des modifs + Commentaire
```
---
layout: false
## Suppression d'une branche _non mergée_ (1)
<hr />
<img class="git" src="img/git-12.png"></img>
<br /><br />
```bash
$ git checkout master # Déplacement dans la branche master
$ git branch # Affichage des branches
# exploration-1
# * master
```
---
layout: false
## Suppression d'une branche _non mergée_ (2)
<hr />
<img class="git" src="img/git-13.png"></img>
<br /><br />
```bash
$ git branch -D exploration-1 # Suppression d'une branche «non mergée»
$ git branch # Affichage des branches
# * master
```
---
layout: false
## Travail dans une nouvelle branche
<hr />
<img class="git" src="img/git-16.png"></img>
<br /><br />
```bash
$ git branch exploration-2 # Création d'une nouvelle branche
$ git checkout exploration-2 # Déplacement dans la nouvelle branche
$ git add --all # Ajout des modifications à l'historique
$ git commit -m "Nouveau commit" # Engagement des modifs + Commentaire
```
---
layout: false
## Fusion de branches (1)
<hr />
<img class="git" src="img/git-17.png"></img>
<br /><br />
```bash
$ git checkout master # Déplacement dans la branche master
$ git merge exploration-2 # Fusion de deux branches
# $ git commit -m "Solve conflicts" # Engagement si conflits détectés
```
---
layout: false
## Fusion de branches (2)
<hr />
<img class="git" src="img/git-18.png"></img>
<br /><br />
```bash
$ git branch # Affichage des branches
# exploration-2
# * master
```
---
layout: false
## Suppression d'une branche _mergée_
<hr />
<img class="git" src="img/git-19.png"></img>
<br /><br />
```bash
$ git branch -d exploration-2 # Suppression d'une branche «mergée»
$ git branch # Affichage des branches
# * master
```
---
layout: false
## Un projet un peu plus complexe
<hr />
<img class="git" src="img/git-20.png"></img>
<br /><br />
--
* Et encore plus complexe
* [Évolution des distributions GNU/Linux](https://i.stack.imgur.com/W9itl.jpg)
* [Évolution des distributions GNU/Linux (version simplifiée)](http://1.bp.blogspot.com/_JBHfzEovWs8/S7TpfQGdIqI/AAAAAAAAAMw/Ht817f5-mlk/s1600/linux+distro+timeline.jpg)
---
layout: false
## C'est bien beau, mais comment je collabore ?
<hr /><br />
* Forges logicielles
* Système de gestion de développement collaboratif de logiciel
* Interface web pour git
* Serveur distant (_remote_)
* Quelques exemples:
* [GitLab](https://about.gitlab.com)
* [Bitbucket](https://bitbucket.org)
* [GitHub](https://github.com)
---
name: inverse
layout: true
class: center, middle, inverse
---
<img src="img/logo-github-2.png" style="width:750px;"></img>
---
layout: false
## GitHub en quelques mots
<hr /><br />
* Site officiel : [https://github.com](https://github.com)
* Service de gestion de développement de logiciels
* Service web d'hébergement (`gh-pages`)
* Compte gratuit (pour logiciels libres et publics)
* Réseau social
* Autres services
* Suivi de bugs
* Demandes de nouvelles fonctionnalités
* Wiki
---
layout: false
## Connexion à distance
<hr /><br />
<img src="img/github-network.jpg" style="margin: 0 10%; width: 80%"></img>
---
layout: false
## Configuration de GitHub
<hr />
<img class="git" src="img/hub-01.png"></img>
<br /><br />
* Création d'un compte
* Création d'un dépôt public
---
layout: false
## Configuration de la connexion distante
<hr />
<img class="git" src="img/hub-02.png"></img>
<br /><br />
```bash
$ git remote add origin depot_url # Ajout de la connexion distante
$ git remote # Affichage des connexions distantes
# origin
```
---
layout: false
## Transfert du projet git sur GitHub
<hr />
<img class="git" src="img/hub-03.png"></img>
<br /><br />
```bash
$ git push origin master # Transfert sur le dépôt distant
```
---
layout: false
## Développement en local
<hr />
<img class="git" src="img/hub-04.png"></img>
<br /><br />
```bash
$ git add --all # Ajout des modifs à l'historique local
$ git commit -m "Nouveau commit" # Engagement des modifs + Commentaire
```
---
layout: false
## Mise à jour du dépôt GitHub
<hr />
<img class="git" src="img/hub-05.png"></img>
<br /><br />
```bash
$ git push origin master # Mise à jour du dépôt distant
```
---
layout: false
## Ajout d'un nouvel utilisateur
<hr />
<img class="git" src="img/hub-06.png"></img>
<br /><br />
```bash
$ git clone depot_url # Copie du projet git (par collaborateur)
# alternative,
$ git remote add origin depot_url # Ajout de la connexion distante
$ git pull origin master # Téléchargement du projet git
```
---
layout: false
## Développement en local
<hr />
<img class="git" src="img/hub-07.png"></img>
<br /><br />
```bash
$ git add --all # Ajout des modifs à l'historique local
$ git commit -m "Nouveau commit" # Engagement des modifs + Commentaire
```
---
layout: false
## Mise à jour du dépôt GitHub
<hr />
<img class="git" src="img/hub-08.png"></img>
<br /><br />
```bash
$ git push origin master # Mise à jour du dépôt distant
```
---
layout: false
## Mise à jour du projet en local
<hr />
<img class="git" src="img/hub-09.png"></img>
<br /><br />
```bash
$ git pull origin master # Mise à jour du dépôt local
```
---
layout: false
## Développement parallèle en local
<hr />
<img class="git" src="img/hub-10.png"></img>
<br /><br />
```bash
$ git add --all # Ajout des modifs aux historiques locaux
$ git commit -m "Nouveau commit" # Engagement des modifs + Commentaire
```
---
layout: false
## Mise à jour du dépôt distant
<hr />
<img class="git" src="img/hub-11.png"></img>
<br /><br />
```bash
# $ git pull origin master # Mise à jour du dépôt local (si erreur)
$ git push origin master # Mise à jour du dépôt distant
```
---
layout: false
## Mise à jour du dépôt distant
<hr />
<img class="git" src="img/hub-12.png"></img>
<br /><br />
```bash
$ git pull origin master # Mise à jour du dépôt local
# $ git commit -m "Solve conflicts" # Si présence de conflits
```
---
layout: false
## Mise à jour du dépôt distant
<hr />
<img class="git" src="img/hub-13.png"></img>
<br /><br />
```bash
$ git push origin master # Mise à jour du dépôt distant
```
---
layout: false
## Mise à jour du projet en local
<hr />
<img class="git" src="img/hub-14.png"></img>
<br /><br />
```bash
$ git pull origin master # Mise à jour du dépôt local
```
---
layout: false
## Recommendations
<hr /><br />
* Tout collaborateur devrait créer sa propre branche
* Seul le leader du projet devrait accepter/refuser les fonctionnalités proposées par le(s) collaborateur(s) - `pull request`
---
layout: false
## Bonus : Déploiement d'un site Web
<hr /><br />
* Une fois le projet Web terminé, on peut le déployer sur GitHub
<br />
```bash
$ git branch gh-pages # Création d'une branche gh-pages
$ git checkout gh-pages # Sélection de cette branche
$ git push origin gh-pages # Déploiement sur GitHub
```
<br />
--
> Ok, on arrête là!
---
name: inverse
layout: true
class: center, middle, inverse
---
## Merci !
<hr />
</textarea>
<script src="js/remark-latest.min.js"></script>
<script>
remark.macros.scale = function (percentage) {
var url = this;
return '<img src="' + url + '" style="width: ' + percentage + '" />';
};
var slideshow = remark.create();
</script>
</body>
</html>