How to find which Git branches have been merged?
If you have a ton of branches and you want to find which branches have been merged:
git branch --merged master
To find which branches have NOT been merged:
git branch --no-merged master
If you have a ton of branches and you want to find which branches have been merged:
git branch --merged master
To find which branches have NOT been merged:
git branch --no-merged master
Here are a couple of Stack Overflow questions that will help you get Git setup for your local dev environment:
Here is my Ruby Rails 3 Application template script I use to create a new Rails app.