Git
Git create branch
git checkout -b "<new_branch_name>" "<from_branch>"
git checkout -b feature_x main
git checkout -b feature_xGit delete branch
Git delete local branch
git branch -D "<branch_name>"git branch -D feature_xGit delete remote branch
git push "<remote_name>" --delete "<branch_name>"Git pipeline to rebase
Git squash my last commits
Links
Last updated