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.
I received the following error “FB.login() called before FB.init()” in my Rails application after I followed all the steps from the Facebook Authentication screencasts.
To fix the issue I had to move the fb-root div tag after the window.fbAsyncInit function.
Here is the gist: