Using Git, how can I find a new file?
Note that this is not the same as the last modified file, but the last time the file was submitted.
git log --diff-filter=A
This shows the commits that entered the file. It can be changed to show only the last commit by entering a file
git log --diff-filter=A -1
or print diff of this file
git log --diff-filter=A -p
or just stat
git log --diff-filter=A --stat
Example
Source: https://habr.com/ru/post/1542594/More articles:Можно ли сериализовать коллекцию общего назначения? - javaangular -ui bootstrap datepicker (how to disable only the button today when popup) - javascriptPreview the permalink page when setting up the tumblr theme - permalinksSQL Server matching all rows from table 1 to all rows from table2 - sqlSQL algorithm with three identifiers from one table - algorithmPython: numpy.interp gives a curved line - pythonКак создать проверку электронной почты на Firebase - angularjsAdmob - banner shows black background and no ads - androidThe Ionic 2 icon is not visible after being published in the game store? - javascriptИспользовать Predict на data.table с линейной регрессией - rAll Articles