有没有办法查看其他团队成员最近在Cloud9中编辑过哪些文件?

时间:2015-02-04 02:26:10

标签: cloud9-ide

例如,如果Joe登录到Cloud9并更改了六个文件中的代码,然后注销,我怎么知道他更改了哪些文件?

1 个答案:

答案 0 :(得分:1)

现在,我能想到的唯一方法就是找到最后修改过哪些文件。从那以后,您可以使用文件历史记录查看器查看您的团队成员对每个文件所做的修改:

在终端内:

find $1 -type f -print0 | xargs -0 stat --format '%Y :%y %n' | sort -nr | cut -d: -f2- | sed '/\.\/\.c9\//d' | head

我已经使用此脚本并将其修改为忽略此答案中.c9文件夹中的文件: How to recursively find and list the latest modified files in a directory with subdirectories and times?

希望这有帮助!