From 76ae56e0b204ab9050388313389befd897cfe57b Mon Sep 17 00:00:00 2001 From: David Brady Date: Tue, 20 Jul 2010 16:10:19 -0600 Subject: [PATCH] Added display messages to git scripts echoing what they do --- git-co | 1 + git-history | 1 + 2 files changed, 2 insertions(+) diff --git a/git-co b/git-co index 6ce08dd..8f14a69 100755 --- a/git-co +++ b/git-co @@ -1,3 +1,4 @@ #!/bin/sh # SVN-style checkout +echo git checkout $* git checkout $* diff --git a/git-history b/git-history index 7ffe40b..d70cd95 100755 --- a/git-history +++ b/git-history @@ -1,2 +1,3 @@ #!/bin/sh +echo 'git rev-list HEAD -- $1 | while read commit; do clear; git diff $commit^..$commit $1; done' git rev-list HEAD -- $1 | while read commit; do clear; git diff $commit^..$commit $1; done