From 4e9b74c2dca76499a7e19a4e7028db2a42012725 Mon Sep 17 00:00:00 2001 From: Paul Irish Date: Mon, 2 Feb 2015 15:46:37 -0800 Subject: [PATCH] Pipe stdout and stderr to /dev/null thx @mslinn . fixes #11 --- git-open | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git-open b/git-open index 8e2e712..63a6c34 100755 --- a/git-open +++ b/git-open @@ -73,5 +73,5 @@ else fi # open it in a browser -$open $giturl +$open $giturl &> /dev/null exit 0