From 453fbf8972d9c67a076486f97c08f2d00d857af9 Mon Sep 17 00:00:00 2001 From: Artem Sapegin Date: Thu, 6 Dec 2012 00:19:48 +0400 Subject: [PATCH] Bash: change GitHub protocol. --- includes/bash_functions.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/bash_functions.bash b/includes/bash_functions.bash index d02173e..8a559df 100644 --- a/includes/bash_functions.bash +++ b/includes/bash_functions.bash @@ -156,7 +156,7 @@ function git-fork() { echo "Usage: git-fork " else repo=`basename "$(pwd)"` - git remote add upstream "https://github.com/$user/$repo.git" + git remote add upstream "git@github.com:$user/$repo.git" fi }