合并前的 git 分支
A-->B-->C-->D-->E    <-master
         \->X-->Y    <-debug
合并后看起来像
A-->B-->C-->D-->E-->X'-->Y'-->M
那么如果在分支debug和有任何提交master,它们将看起来像
A-->B-->C-->D-->E-->X'-->Y'-->M-->F      <-master
         \                   / 
          ->X-->Y-----------/---->Z      <-debug
Z,Y,X有什么方法可以在没有A, B分支的情况下进行 git log debug??? 
我尝试通知..,git log master..debug但是,只得到Z