PROJET AUTOBLOG


shaarli-Links

Site original : shaarli-Links

⇐ retour index

Git - Squash Commits: Merge All Commits in Branch Into One - ShellHacks

jeudi 28 avril 2022 à 15:48

Pour merger tout les commits d'une branche de teste en un commit sur une branche de dev :

git checkout develop
git merge --squash <branche_de_teste>
git commit

Permalink