You can do this by running the following command.
git push [remote name] [branch1] [branch2]
For example, if you want the two FirstApp branches and the SecondApp branch to be removed, you can do
git push origin FirstApp SecondApp
If you want to push more branches, just add the name of the branch you want to push to the end.
More on git. You can check out this book at the following link - http://git-scm.com/book
source share