Scripts/Git.ps1
sml Git git branch -a git fetch --all git pull --all # Delete branch git branch -D $Branch # Delete remote branch git branch -D -r $Branch git checkout main git checkout preproduction git branch 'ik-ben-een-nieuwe-branch' git add . git commit -a -m '' git push |