Créer une branche avec des modifications locales

# Update 2020 / Git 2.23
git switch -c <new-branch>

# Before Update 2020 / Git 2.23
git checkout -b new_branch_name
Marton