From ae5892b8be6ba14f67662034a0a90d0d989f7ee0 Mon Sep 17 00:00:00 2001 From: Maxim Likhachev Date: Wed, 23 Mar 2022 16:15:29 +0300 Subject: [PATCH] git: fix g hub alias --- etc/soft/git/gitconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/soft/git/gitconfig b/etc/soft/git/gitconfig index cb1c3f1..f461075 100644 --- a/etc/soft/git/gitconfig +++ b/etc/soft/git/gitconfig @@ -131,7 +131,7 @@ my = "!git_clone() { git clone https://code.envrm.info/src/${1}.git; }; git_clone" # Клонирование репозитория githube.com - hub = "!git_clone() { git clone git://github.com/${1}.git; }; git_clone" + hub = "!git_clone() { git clone https://github.com/${1}.git; }; git_clone" # Клонирование репозитория notabug.org nb = "!git_clone() { git clone https://notabug.org/${1}.git; }; git_clone"