From 2fd2f41d2a364687b6a3880b0e25cd9a3470b252 Mon Sep 17 00:00:00 2001 From: James Y Knight Date: Mon, 29 Jul 2019 21:01:11 +0000 Subject: [PATCH] git-llvm: Restore compatibility with git 1.8.3. llvm-svn: 367259 --- llvm/utils/git-svn/git-llvm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/utils/git-svn/git-llvm b/llvm/utils/git-svn/git-llvm index 763bcbe..d4c50a5 100755 --- a/llvm/utils/git-svn/git-llvm +++ b/llvm/utils/git-svn/git-llvm @@ -397,7 +397,7 @@ def cmd_push(args): os.chdir(git_root) # Get the remote URL, and check if it's one of the standalone repos. - git_remote_url = git('remote', 'get-url', 'origin') + git_remote_url = git('ls-remote', '--get-url', 'origin') git_remote_url = git_remote_url.rstrip('.git').rstrip('/') git_remote_repo_name = git_remote_url.rsplit('/', 1)[-1] split_repo_path = SPLIT_REPO_NAMES.get(git_remote_repo_name) -- 2.7.4