From a2deda11071d11270fd6775e14e37d21d918bf5c Mon Sep 17 00:00:00 2001 From: Nick Nisi Date: Sat, 16 Mar 2013 06:59:44 -0500 Subject: [PATCH] Removing git function --- zsh/functions.zsh | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/zsh/functions.zsh b/zsh/functions.zsh index 15f37c5..509e321 100644 --- a/zsh/functions.zsh +++ b/zsh/functions.zsh @@ -35,19 +35,6 @@ function server() { python -c $'import SimpleHTTPServer;\nmap = SimpleHTTPServer.SimpleHTTPRequestHandler.extensions_map;\nmap[""] = "text/plain";\nfor key, value in map.items():\n\tmap[key] = value + ";charset=UTF-8";\nSimpleHTTPServer.test();' "$port" } -# git log with per-commit cmd-clickable GitHub URLs (iTerm) -# function gf() { -# local remote="$(git remote -v | awk '/^origin.*\(push\)$/ {print $2}')" -# [[ "$remote" ]] || return -# local user_repo="$(echo "$remote" | perl -pe 's/.*://;s/\.git$//')" -# git log $* --name-status --color | awk "$(cat <