git diff origin/9.3.1-STABLE TN-9.3.1-STABLE
this did the trick for me, actually origin/9.3.1-STABLE and TN-9.3.1-STABLE are branches in the same repo.
when I posted this question I was thinking that are 9.3.1-STABLE and TN-9.3.1-STABLE were different repo's, so sorry about the confusion if any.
# git diff --stat origin/9.3.1-STABLE TN-9.3.1-STABLE
ChangeLog | 26 +++++-
Makefile | 12 +--
README.md | 6 +-
ReleaseNotes | 97 ++++------------------
build/README | 6 +-
build/create_redmine_changelog.py | 4 +-
build/files/install.sh | 4 +-
build/nanobsd-cfg/FREENAS.amd64 | 3 -
build/nanobsd-cfg/Files/etc/rc.conf.local | 7 +-
^^^ will give you only changed files, with full path, you can do something like below to have a clear idea of what exactly changed and where.
# git diff origin/9.3.1-STABLE:ChangeLog TN-9.3.1-STABLE:ChangeLog
diff --git a/origin/9.3.1-STABLE:ChangeLog b/TN-9.3.1-STABLE:ChangeLog
index 35e315e..656c681 100644
--- a/origin/9.3.1-STABLE:ChangeLog
+++ b/TN-9.3.1-STABLE:ChangeLog
@@ -1,2 +1,24 @@
-#11936 Bug Critical UI left pane does not populate
-#12208 Bug Critical Fix late-breaking issue with ntpd update
+o Add a vCenter plugin. This functionality allows you to install
+ the TrueNAS 1.0 vCenter plugin in to vCenter, which will then
+ allow you to create iSCSI and NFS datastores directly from vCenter.