Skip to content
Snippets Groups Projects
Commit be799d55 authored by FILIPPONE Jerome's avatar FILIPPONE Jerome
Browse files

Upload New File

parent 0f23427a
Branches
No related tags found
No related merge requests found
// ajout des dépôts distants
git remote add lgb https://github.com/pcottle/learnGitBranching.git
git remote add gg https://github.com/hgarc014/git-game.git
git remote -v
// récupération des données des projets
git branch --all
git fetch lgb
git fetch gg
git branch --all
// changement du nom des dépôts
git remote rename lgb lgitb
git remote rename gg gitg
git remote
// récupération d'une branche distante en local
git checkout Kevin
git log
// test de la présence de doublons pour la branche main
git remote add lgb https://github.com/pcottle/learnGitBranching.git
git checkout lgb/main
// lister les commit où se positionnent les HEAD de la branche
git ls-remote lgb
// suppression de dépôt
git remote rm gitg
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment