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


git switch main
git switch preproduction


# Nieuwe branch
$BranchName = "branchname"
git branch $BranchName
git push --set-upstream origin $BranchName
git add .
git commit -a -m ''
git push