I'd like to execute a short series of commands in IDEA. realistically the actual commands don't matter, but here it is
git add --all . && git stash && ( git svn dcommit || git svn rebase && git svn dcommit ) && git stash pop
is it possible to make this an "external tool"? without writing an actual .sh
script? or perhaps is there some other way? I don't want to keep running it in the terminal, I'd rather click a button (or shortcut it) or find some way to make it execute after commit.