We are using git-flow to manage source code. Sometime, we want to check what branch are not merge to develop yet. With sourcetree, find on commit graph seem dizziness ! Do have any other way instead ?
            Asked
            
        
        
            Active
            
        
            Viewed 84 times
        
    1 Answers
3
            You can use the following git command to find all branches not merged into the develop
git branch --no-merged develop
 
    
    
        reto
        
- 9,995
- 5
- 53
- 52
 
    
    
        Mikhail Chibel
        
- 1,865
- 1
- 22
- 34
- 
                    Yes, it return nice output.Thank you @mikhail-chibel – phuongnd May 31 '16 at 11:13
