git显示由我或文件夹中的任何人提交的最近10次提交所做的更改

时间:2014-08-16 11:14:59

标签: git

我有一个git存储库,其中有一个文件夹。在此文件夹中,多人进行更改。我最近在该目录中提交了一些提交。

我想

 1) view all changes that I have done in last 10 commits in that directory
    (ie changes done by me only)

 2) view all changes that anyone has done in that directory in last 10 commits .

1 个答案:

答案 0 :(得分:3)

尝试:

git log -p -10 yourdir/

添加--author=yourLogin以限制您的更改。

这与listing the changed files不同。