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