我的develop branch
已与我的feature/fix branch
合并。我的develop
已经合并了更多feature
个分支,并且在feature/fix
之前有很多提交。
我怎样才能让git向我展示feature/fix
但develop
但develop
所拥有的文件中的代码LINES。我不想显示feature/fix
和 {% if messages %}
{% for message in messages %}
<div class="alert alert-success" role="alert">
<strong>{{ message }}</strong>
</div>
{% endfor %}
{% endif %}
没有的内容。
答案 0 :(得分:0)
这将显示feature/fix
但develop
没有的所有提交。
git log develop..feature/fix
请注意输出可能与以下内容不同:
git log origin/develop..origin/feature/fix
对于后一个命令,请确保先执行git fetch
。