I usually create feature branches and then raise PR against release branch .
I have created multiple branches now and raised PRs . I dont want to see them when I give command
git branch
. how to delete the history of all my created branches
I usually create feature branches and then raise PR against release branch .
I have created multiple branches now and raised PRs . I dont want to see them when I give command
git branch
. how to delete the history of all my created branches
git branch -d branchname
This will delete the branch locally so it won't show in git branch
.