1

I am using Github in our Project.

When I am checking in Github to pull data from original master it is displaying all the files but I need the files which are changed by me.

whoah
  • 4,363
  • 10
  • 51
  • 81
user226628
  • 11
  • 1

1 Answers1

0

You can use git log to display updated files by author.
See for instance "Can I get git to tell me all the files one user has modified?"

git log --pretty="%H" --author="authorname"

(replace authorname by your own, as you specified it in git config user.name)

After a pull, you can log between master@{1} and master.

Community
  • 1
  • 1
VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250