Beginner question about merging in git
        Posted  
        
            by wxyz
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by wxyz
        
        
        
        Published on 2010-06-12T17:23:27Z
        Indexed on 
            2010/06/12
            17:33 UTC
        
        
        Read the original article
        Hit count: 283
        
I'm 15 and have just started using source control systems to manage my code a little better, so I'm a little new to this stuff. Right now I have this repository:
[a]---[b]---[d]---[f] master
        \
         \
          [c]---[e]   develop
I want to wind up here:
[a]---[b]---[d]---[f]---[g]  master
        \               /
         \             /
          [c]---[e]---/      develop
where g is equivalent to performing commits [c] and [e] on [f]. This is git checkout master; git merge develop, right?
© Stack Overflow or respective owner