Files
tldr/pages.fr/common/git-subtree.md
K.B.Dharun Krishna 8538a31451 pages/*: add standard translation and links (#11331)
* pages/*: add standard translation and links

Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

* fix1: false positives; standardize Bengali, Hindi, Nepali periods

* fix: periods in recently added Bengali pages

Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

* fix: false positives in modified files

Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

* cleanup: update to native period in Bengali l10n

Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

---------

Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2023-11-06 14:02:31 +05:30

25 lines
916 B
Markdown

# git subtree
> Outil pour gérer les dépendances de projet en tant que sous-projets.
> Plus d'informations : <https://manned.org/git-subtree.1>.
- Ajout d'un dépôt Git en tant que sous-arbre :
`git subtree add --prefix={{chemin/vers/repertoire/}} --squash {{repository_url}} {{master}}`
- Mettre à jour le sous-arbre avec son dernier commit :
`git subtree pull --prefix={{chemin/vers/repertoire/}} {{repository_url}} {{master}}`
- Merge le dépot d'un sous arbre dans la branche master :
`git subtree merge --prefix={{chemin/vers/repertoire/}} --squash {{repository_url}} {{master}}`
- Pousser les commits vers le dépôt d'un sous-arbre :
`git subtree push --prefix={{chemin/vers/repertoire/}} {{repository_url}} {{master}}`
- Extraire un nouvel historique de projet de l'historique d'un sous-arbre :
`git subtree split --prefix={{chemin/vers/repertoire/}} {{repository_url}} -b {{nom_de_branche}}`