We see this doing a git pull on branch myfeature
git reports:
remote: Counting objects: 78, done.
remote: Compressing objects: 100% (74/74), done.
remote: Total 78 (delta 36), reused 0 (delta 0)
Unpacking objects: 100% (78/78), done.
From ssh://stash.xeon.net:7999/core/myproject
eb0523c..a796ad2 myfeature -> origin/myfeature
63c5668..a11d406 master -> origin/master
* [new tag] myproject-7.9.0.13 -> myproject-7.9.0.13
* [new tag] myproject-8.0.0.0 -> myproject-8.0.0.0
Updating eb0523c..a796ad2
Fast-forward
xxxmyproject/pom.xml | 2 +-
app/pom.xml | 2 +-
database/pom.xml | 2 +-
distribution/pom.xml | 2 +-
env/pom.xml | 2 +-
pom.xml | 2 +-
server/pom.xml | 2 +-
web/pom.xml | 2 +-
xsd/pom.xml | 2 +-
9 files changed, 9 insertions(+), 9 deletions(-)
How can you determine which of the two branches (myfeature or master) contained these 78 (or 9) changes?
In addition why does git indicate Total 78 (delta 36)
but then see only 9 files changed
?