This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# bash 4.3.11(1) Linux 3.13.0 git 1.9.1 Date : 2017-08-14 | |
# | |
# _______________| git-lu : get last commit date for file(s) | |
# since git can change OS file modification times! | |
# | |
# Usage: git lu [filename(s), wildcards optional] | |
# | |
# Example: $ git lu *.ipynb # SAMPLE OUTPUT FORMATTING | |
# 0000-00-00 _Not_committed _No_SHA 00-tpl-v4.ipynb |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# bash 4.3.11(1) Linux 3.13.0 git 1.9.1 Date : 2018-01-12 | |
# | |
# _______________| git-logur : get log of GitHub repo without cloning. | |
# | |
# Usage: $ git-logur [username] [repository] [-m|-c|-v] | |
# # Format defaults to messages -m, else | |
# # -c for concise text, or -v for verbose json. | |
# # Concise includes author and committer, with timestamps. | |
# |
OlderNewer