Re: [ANNOUNCE] git-pasky-0.6.3 && request for testing
From: Steven Cole <hidden>
Date: 2016-06-15 22:41:54
On Thursday 21 April 2005 09:09 pm, Petr Baudis wrote:
Hello, FYI, I've released git-pasky-0.6.3 earlier in the night. It brings especially plenty of bugfixes, but also some tiny enhancements, like colored log and ability to pick branch in the remote repository. git log and git patch now also accept range of commits, so e.g. if you do
Here's a patch to let people know about the nice color feature. Signed-off-by: Steven Cole <redacted> Index: git ===================================================================
--- 0a9ee5a4d947b998a7ce489242800b39f98eeee5/git (mode:100755 sha1:39969debd59ed51c57973c819cdcc3ca8a7da819)
+++ uncommitted/git (mode:100755)@@ -35,7 +35,7 @@ fork BNAME BRANCH_DIR [COMMIT_ID] help init RSYNC_URL - log [COMMIT_ID | COMMIT_ID:COMMIT_ID] + log [-c] [COMMIT_ID | COMMIT_ID:COMMIT_ID] ls [TREE_ID] lsobj [OBJTYPE] lsremote
Index: gitlog.sh ===================================================================
--- 0a9ee5a4d947b998a7ce489242800b39f98eeee5/gitlog.sh (mode:100755 sha1:50eab642cdf5e695cf15be4ce3a7469dd68637e7)
+++ uncommitted/gitlog.sh (mode:100755)@@ -7,6 +7,14 @@ # Major optimizations by (c) Phillip Lougher. # Rendered trivial by Linus Torvalds. # +# Takes a -c option to add color to the output. +# Currently, the colors are: +# +# header Green +# author Cyan +# committer Magenta +# signoff Yellow +# # Takes an id resolving to a commit to start from (HEAD by default), # or id1:id2 representing an (id1;id2] range of commits to show.