aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNao Ueda <nao.uedder@gmail.com>2021-02-06 10:35:21 +0900
committerNao Ueda <nao.uedder@gmail.com>2021-02-06 11:02:37 +0900
commite9971c86798b2f57987c6f77860375797689f959 (patch)
tree5a746cbab49b4948b82e1a33768e033fb491a303
parent5d9a4e18c8d5fe7f80e302a5f2439f219d50a39d (diff)
downloadgit-file-changed-time-getter-e9971c86798b2f57987c6f77860375797689f959.tar.gz
git-file-changed-time-getter-e9971c86798b2f57987c6f77860375797689f959.tar.bz2
git-file-changed-time-getter-e9971c86798b2f57987c6f77860375797689f959.zip
add README
-rw-r--r--README.md15
1 files changed, 15 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..2965917
--- /dev/null
+++ b/README.md
@@ -0,0 +1,15 @@
+## About
+A Perl script that wrapped some git command to get the updated-times (committed-times) from HEAD's tree for [git](https://git-scm.com/).
+
+## How to use
+
+```
+$ perl ./time-getter.pl
+```
+
+## ATTENTION
+On basically git concept, objects that have time state (_committer committed time_ and _author committed time_) is **ONLY** commit-objects.
+
+Probably this concept is itself intentionally, so **this wrapper script is expected to use in some cases as a workaround**.
+
+So if possible, you should consider another approach to the case before using this wrapper script.