diff --git a/README.md b/README.md index 8681c13..f13ee01 100644 --- a/README.md +++ b/README.md @@ -665,6 +665,11 @@ __Alternatives:__ gitk --all ``` + +```sh +git log --graph --pretty=format:'%C(auto) %h | %s | %an | %ar%d' +``` + ## Deploying git tracked subfolder to gh-pages ```sh git subtree push --prefix subfolder_name origin gh-pages diff --git a/tips.json b/tips.json index 0cc3d88..6de1373 100644 --- a/tips.json +++ b/tips.json @@ -219,7 +219,7 @@ }, { "title": "Visualize the version tree.", "tip": "git log --pretty=oneline --graph --decorate --all", - "alternatives": ["gitk --all"] + "alternatives": ["gitk --all","git log --graph --pretty=format:'%C(auto) %h | %s | %an | %ar%d'"] }, { "title": "Deploying git tracked subfolder to gh-pages", "tip": "git subtree push --prefix subfolder_name origin gh-pages",