chtite modif

这个提交包含在:
Roche Stephane 2022-03-03 16:00:11 +01:00
父节点 b63f70f736
当前提交 e49b930dd6
共有 2 个文件被更改,包括 42 次插入0 次删除

1
Test 子模块

@ -0,0 +1 @@
Subproject commit 413853d647ed6f3a4e92f327af0624162baa8b6c

41
un peu de git 普通文件
查看文件

@ -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