git只显示我的实际分支从其他分支遗漏的行

时间:2018-04-03 10:23:12

标签: git

我的develop branch已与我的feature/fix branch合并。我的develop已经合并了更多feature个分支,并且在feature/fix之前有很多提交。

我怎样才能让git向我展示feature/fixdevelopdevelop所拥有的文件中的代码LINES。我不想显示feature/fix {% if messages %} {% for message in messages %} <div class="alert alert-success" role="alert"> <strong>{{ message }}</strong> </div> {% endfor %} {% endif %} 没有的内容。

1 个答案:

答案 0 :(得分:0)

这将显示feature/fixdevelop没有的所有提交。

git log develop..feature/fix

请注意输出可能与以下内容不同:

git log origin/develop..origin/feature/fix

对于后一个命令,请确保先执行git fetch