Skip to content
Snippets Groups Projects
Commit 85a4bb74 authored by Al Massati Bilal's avatar Al Massati Bilal
Browse files

procedure git V1.2

parent 4f1a00e3
No related branches found
No related tags found
No related merge requests found
git.md 0 → 100644
# Procedure git
## Creation du dépot
git clone "clé https" // clé fournis sur dans le projet git
## Ajouter un fichier // Avant cette étape,il faut avoir le fichier concerné dans son dépot
git add "fichier concerné"
## Commmit les fichiers concernés
git commit -m "commentaire de versionning" // commentaire en version ( V1,V2,V3.1 etc...)
## Envoyer des fichiers sur git :
git push
authentification login et mot de passe avec token
## Recuperation de fichier du git vers le local
git pull
## Eviter de push le token en local
creer un fichier .txt avec le token dedans
creer un fichier .gitignore
inserer le nom du fichier contenant le token
\ No newline at end of file
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
git commit -m "commentaire de versionning" // commentaire en version ( V1,V2,V3.1 etc...) git commit -m "commentaire de versionning" // commentaire en version ( V1,V2,V3.1 etc...)
## Envoye des fichiers sur git : ## Envoyer des fichiers sur git :
git push git push
authentification login et mot de passe avec token authentification login et mot de passe avec token
...@@ -21,3 +21,8 @@ ...@@ -21,3 +21,8 @@
git pull git pull
## Eviter de push le token en local
creer un fichier .txt avec le token dedans
creer un fichier .gitignore
inserer le nom du fichier contenant le token
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment