summaryrefslogtreecommitdiff
path: root/utils/git-svn/git-llvm
diff options
context:
space:
mode:
Diffstat (limited to 'utils/git-svn/git-llvm')
-rwxr-xr-xutils/git-svn/git-llvm6
1 files changed, 3 insertions, 3 deletions
diff --git a/utils/git-svn/git-llvm b/utils/git-svn/git-llvm
index 53c0b24ae2c8..bf234301f132 100755
--- a/utils/git-svn/git-llvm
+++ b/utils/git-svn/git-llvm
@@ -42,7 +42,7 @@ else:
# It's *almost* a straightforward mapping from the monorepo to svn...
GIT_TO_SVN_DIR = {
- d: (d + '/trunk')
+ d: (d + '/branches/release_80')
for d in [
'clang-tools-extra',
'compiler-rt',
@@ -63,8 +63,8 @@ GIT_TO_SVN_DIR = {
'pstl',
]
}
-GIT_TO_SVN_DIR.update({'clang': 'cfe/trunk'})
-GIT_TO_SVN_DIR.update({'': 'monorepo-root/trunk'})
+GIT_TO_SVN_DIR.update({'clang': 'cfe/branches/release_80'})
+GIT_TO_SVN_DIR.update({'': 'monorepo-root/branches/release_80'})
VERBOSE = False
QUIET = False