On 10/6/20 1:33 PM, Richard Henderson wrote:
On 10/6/20 11:43 AM, Matthew Rosato wrote:
Looks good, but...
<meta>Is there any way to coax out a more reviewable version of this
via git mv?</meta>
I tried git mv, but a diff between the old patch and the new patch looks the
same (other than the fact that I squashed the MAINTAINERS hit in)
git format-patch --find-renames[=<pct>]
Though I'm surprised it's not doing that by default.
r~
Huh, neat. That looks alot better, gives something that looks like:
diff --git a/hw/s390x/s390-pci-bus.h b/include/hw/s390x/s390-pci-bus.h
similarity index 100%
rename from hw/s390x/s390-pci-bus.h
rename to include/hw/s390x/s390-pci-bus.h
diff --git a/hw/s390x/s390-pci-inst.h b/include/hw/s390x/s390-pci-inst.h
similarity index 100%
rename from hw/s390x/s390-pci-inst.h
rename to include/hw/s390x/s390-pci-inst.h
Thanks!