사실 자주 쓰면 안되는 건데, 쓰고 싶을 때가 있다(...) 출처는 http://stackoverflow.com/questions/454734/how-can-one-change-the-timestamp-of-an-old-commit-in-git git filter-branch -f --env-filter \ 'if [ $GIT_COMMIT = 해쉬값 ] then export GIT_AUTHOR_DATE="Mon May 1 08:45 2017 +0900" export GIT_COMMITTER_DATE="Mon May 1 08:45 2017 +0900" fi' 이렇게 변경하면 되는데, filter-branch 가 해당 브랜치의 모든 history를 뒤지기 때문에, 브랜치의 history가 길 경우에는 굉장히..