Open diegotoral opened 9 years ago
The function will look like
# Deletes local branchs that were merged into master function() { git branch --merged | grep -v "\*" | xargs -n 1 git branch -d }
The function will look like