0

I would like to know how many files I am going to push, which git command can do this?

Adam Lee
  • 24,710
  • 51
  • 156
  • 236
  • 1
    See http://stackoverflow.com/questions/7624790/what-is-the-git-equivalent-of-of-hg-outgoing-or-hg-incoming – robert Jun 18 '12 at 10:17

1 Answers1

0

You'll always push all commits in the branch(es) you are pushing which do not exist on the remote side yet.

There is no easy way to determine the number of files added/modified by all those commits.

ThiefMaster
  • 310,957
  • 84
  • 592
  • 636