mirror of
https://github.com/git/git.git
synced 2025-12-12 20:36:24 +01:00
last-modified: new subcommand to show when files were last modified
Similar to git-blame(1), introduce a new subcommand git-last-modified(1). This command shows the most recent modification to paths in a tree. It does so by expanding the tree at a given commit, taking note of the current state of each path, and then walking backwards through history looking for commits where each path changed into its final commit ID. Based-on-patch-by: Jeff King <peff@peff.net> Improved-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com> Signed-off-by: Toon Claes <toon@iotcl.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
committed by
Junio C Hamano
parent
e813a0200a
commit
32f74582bc
@@ -176,6 +176,7 @@ int cmd_hook(int argc, const char **argv, const char *prefix, struct repository
|
||||
int cmd_index_pack(int argc, const char **argv, const char *prefix, struct repository *repo);
|
||||
int cmd_init_db(int argc, const char **argv, const char *prefix, struct repository *repo);
|
||||
int cmd_interpret_trailers(int argc, const char **argv, const char *prefix, struct repository *repo);
|
||||
int cmd_last_modified(int argc, const char **argv, const char *prefix, struct repository *repo);
|
||||
int cmd_log_reflog(int argc, const char **argv, const char *prefix, struct repository *repo);
|
||||
int cmd_log(int argc, const char **argv, const char *prefix, struct repository *repo);
|
||||
int cmd_ls_files(int argc, const char **argv, const char *prefix, struct repository *repo);
|
||||
|
||||
Reference in New Issue
Block a user