Git add a branch to remote
git checkout -b local1
git push origin local1
Git Show diff summary
git log --stat
will show the amount each file was changed.
git whatchanged
gives some detail into the files that were modified.
git diff --stat <sha1> <sha2>
gives the files and the amount of changes between two commits.
git diff --stat <branch>
to compare to another branch (e.g. master)