how can I add a more complex custom action like the following to sourcetree?
git branch --merged develop | egrep -iv '(master|develop)' | xargs -n 1 git branch -d
while the procedure to add a simple custom action is easy, it seem not possible to do stuff with pipes, any idea how to do that?
Community moderators have prevented the ability to post new answers.
You could put that stuff into a script file, and have your custom action execute the script.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.