Git 로그 최근 24시간 이력 보기

1 개요[ | ]

Git 로그 최근 24시간 이력 보기
Git 로그 24시간 이내 이력 보기
git reflog master --since="24 hours ago"
git reflog master --since="24 hours ago" --pretty=format:"%h - %an, %ar : %s"

2 실행예시[ | ]

root@zetawiki:~/project1# git log -4 --pretty=format:"%h - %an, %ar : %s"
db82d9c - jmnote, 10 minutes ago : gnb responsive
459e1a3 - jmnote, 4 hours ago : sidenav
91a5fe9 - jmnote, 27 hours ago : wiki css
73b3f25 - john, 7 days ago : Modifying footer style.
root@zetawiki:~/project1# git reflog master --since="24 hours ago"
db82d9c master@{0}: commit: gnb responsive
459e1a3 master@{1}: commit: sidenav
root@zetawiki:~/project1# git reflog master --since="24 hours ago" --pretty=format:"%h - %an, %ar : %s"
db82d9c - jmnote, 14 minutes ago : gnb responsive
459e1a3 - jmnote, 4 hours ago : sidenav

3 같이 보기[ | ]

4 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}