Wiki » Historique » Version 5
Patrice Nadeau, 2023-03-12 21:33
1 | 1 | Patrice Nadeau | # SOP4000-Programmation |
---|---|---|---|
2 | |||
3 | ## Setup |
||
4 | 3 | Patrice Nadeau | Copie des fichiers gabarits |
5 | 1 | Patrice Nadeau | * Makefile |
6 | * LICENSE.txt |
||
7 | |||
8 | ## Makefile |
||
9 | 1. Éditer le fichier `Makefile` |
||
10 | 4 | Patrice Nadeau | * Modifier les valeurs de base |
11 | * *PROJECT** |
||
12 | * *SOURCES* |
||
13 | * *VERSION* |
||
14 | 5 | Patrice Nadeau | |
15 | ## Fichiers |
||
16 | 1 | Patrice Nadeau | 1. Créer les fichier sources avec Vim |
17 | * F7 |
||
18 | * F6 et Shift-F6 |
||
19 | 5 | Patrice Nadeau | |
20 | ## Vérification |
||
21 | 1 | Patrice Nadeau | 1. Vérification de l'environnement de travail |
22 | 2 | Patrice Nadeau | |
23 | 1 | Patrice Nadeau | ```bash |
24 | make env |
||
25 | ``` |
||
26 | |||
27 | ## Git |
||
28 | |||
29 | ### Manuellement |
||
30 | 1. `git init` |
||
31 | 1. `git add *` |
||
32 | 1. `git commit --all` |
||
33 | 1. Boucle avec ajout et commit |
||
34 | |||
35 | ### VIM |
||
36 | > vim-plugin-fugitive |
||
37 | 1. `:Git init` |
||
38 | 1. `:Git add *` |
||
39 | 1. `:Git commit -all` |
||
40 | 1. Boucle avec ajout et commit |