chtite modif
This commit is contained in:
parent
b63f70f736
commit
e49b930dd6
2 changed files with 42 additions and 0 deletions
1
Test
Submodule
1
Test
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit 413853d647ed6f3a4e92f327af0624162baa8b6c
|
41
un peu de git
Normal file
41
un peu de git
Normal file
|
@ -0,0 +1,41 @@
|
|||
1/prendre lien (gitea, github)
|
||||
|
||||
2/ git clone <url>
|
||||
username : nom utilisateur du compte ciblé
|
||||
|
||||
password : TOKEN LIE AU COMPTE GIT
|
||||
mon token par exemple (git_test) : 8b6380197c4e7afc0f4e1115d45d81c961644f79
|
||||
|
||||
//
|
||||
commit :
|
||||
git checkout <nombranche>
|
||||
(creation branche : git branch <nombranche>)
|
||||
(ajouter modif : git add <fichier modifié> si on met un point (.) ça sélectionne tout)
|
||||
(consulter modif : git diff)
|
||||
git commit (ajouter titre explicite pas trop long + détails)
|
||||
|
||||
historique des commit : git log
|
||||
//de façon la plus locale, chez soi
|
||||
|
||||
|
||||
//
|
||||
git push
|
||||
//pour étendre à d'autres
|
||||
|
||||
possibilité de fork
|
||||
|
||||
|
||||
-> Pull Request : incorporer mes changements à l'origine (demande et au proprio de merge ou non)
|
||||
|
||||
repository cible + branche cible + repo modif + branche modif
|
||||
|
||||
|
||||
|
||||
étapes importantes :
|
||||
|
||||
touch <fichier>
|
||||
git init
|
||||
git add <fichier>
|
||||
git commit -m "first commit"
|
||||
git remote add origin <lien gitetud>
|
||||
git push -u origin master
|
Loading…
Reference in a new issue