# HG changeset patch # User Oleksandr Gavenko # Date 1515501613 -7200 # Node ID ec96d18f51b099f896cfcb7473edf160af6b8685 # Parent de60305d351ec19b6c05ce35e7b00efc5d69b39f Command to spoof git commit date. diff -r de60305d351e -r ec96d18f51b0 .bashrc --- a/.bashrc Mon Dec 04 18:24:13 2017 +0200 +++ b/.bashrc Tue Jan 09 14:40:13 2018 +0200 @@ -236,3 +236,9 @@ printf '\n\n\e[31mtotal:\e[0m ' ag --nofilename --count -- "$1" | awk '{c += $1} END {print c}' } + +mygit-date() { + echo GIT_COMMITTER_DATE='"'"$1"'"' git commit --amend --no-edit --date '"'"$1"'"' + GIT_COMMITTER_DATE="$1" git commit --amend --no-edit --date "$1" +} +