Projet

Général

Profil

Wiki » Historique » Version 4

Patrice Nadeau, 2023-03-12 21:32

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 1 Patrice Nadeau
1. Créer les fichier sources avec Vim
15
    * F7
16
    * F6 et Shift-F6
17
1. Vérification de l'environnement de travail
18 2 Patrice Nadeau
19 1 Patrice Nadeau
    ```bash
20
    make env
21
    ```
22
23
## Git
24
25
### Manuellement
26
1. `git init`
27
1. `git add *`
28
1. `git commit --all`
29
1. Boucle avec ajout et commit
30
31
### VIM
32
> vim-plugin-fugitive
33
1. `:Git init`
34
1. `:Git add *`
35
1. `:Git commit -all`
36
1. Boucle avec ajout et commit