Merge pull request #113313 from primeos/nix-prefetch-git-avoid-initial-branch-warnings

nix-prefetch-git: Run git-init with --initial-branch=master
This commit is contained in:
Michael Weiss
2021-02-18 11:53:11 +01:00
committed by GitHub
+1 -1
View File
@@ -105,7 +105,7 @@ fi
init_remote(){ init_remote(){
local url=$1 local url=$1
clean_git init clean_git init --initial-branch=master
clean_git remote add origin "$url" clean_git remote add origin "$url"
( [ -n "$http_proxy" ] && clean_git config http.proxy "$http_proxy" ) || true ( [ -n "$http_proxy" ] && clean_git config http.proxy "$http_proxy" ) || true
} }