Scripts/Git.ps1
git config user.name git config user.email git config --global user.name "Me" git config --global user.email "me@there.com" sml Git git branch -a git fetch --all git pull --all # Delete branch git branch -D $BranchName # Delete remote branch git branch -D -r $BranchName # Commit one file git status git commit -i .\Scripts\Git.ps1 -m 'test' git push git switch main git switch preprod # Nieuwe branch $BranchName = "branchname" git branch $BranchName git push --set-upstream origin $BranchName git add . git commit -a -m '' git push |