From c64282f3f00ad0a9ae8ca174ea003e9ad1d14a89 Mon Sep 17 00:00:00 2001 From: Sebastian Pipping Date: Mon, 28 Apr 2025 22:03:40 +0200 Subject: [PATCH] samples: Replace branch "master" by "main" --- samples/ignore-branch.rules | 2 +- samples/merged-branches-tags.rules | 2 +- samples/min-max-revision.rules | 2 +- samples/recurse.rules | 2 +- samples/standardlayout.rules | 2 +- samples/two-projects.rules | 4 ++-- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/samples/ignore-branch.rules b/samples/ignore-branch.rules index 28b4bf0..1ee0b40 100644 --- a/samples/ignore-branch.rules +++ b/samples/ignore-branch.rules @@ -12,7 +12,7 @@ end repository match /trunk/ repository myproject - branch master + branch main end match # Ignore this branch: diff --git a/samples/merged-branches-tags.rules b/samples/merged-branches-tags.rules index c1ab75c..1f07a9d 100644 --- a/samples/merged-branches-tags.rules +++ b/samples/merged-branches-tags.rules @@ -12,7 +12,7 @@ end repository match /trunk/ repository myproject - branch master + branch main end match # Subversion doesn't understand the Git concept of tags diff --git a/samples/min-max-revision.rules b/samples/min-max-revision.rules index 32ccd8e..e8bce2d 100644 --- a/samples/min-max-revision.rules +++ b/samples/min-max-revision.rules @@ -28,7 +28,7 @@ end match match /trunk/ repository myproject - branch master + branch main end match match /branches/([^/]+)/ diff --git a/samples/recurse.rules b/samples/recurse.rules index 0840e41..6ff6730 100644 --- a/samples/recurse.rules +++ b/samples/recurse.rules @@ -15,7 +15,7 @@ end repository match /trunk/([^/]+)/ repository \1 - branch master + branch main end match # diff --git a/samples/standardlayout.rules b/samples/standardlayout.rules index bf3a6f8..8549e41 100644 --- a/samples/standardlayout.rules +++ b/samples/standardlayout.rules @@ -12,7 +12,7 @@ end repository match /trunk/ repository myproject - branch master + branch main end match match /branches/([^/]+)/ diff --git a/samples/two-projects.rules b/samples/two-projects.rules index c30715b..b61517c 100644 --- a/samples/two-projects.rules +++ b/samples/two-projects.rules @@ -15,12 +15,12 @@ end repository match /project1/trunk/ repository project1 - branch master + branch main end match match /project2/trunk/ repository project2 - branch master + branch main end match # Note how we can use regexp to capture the repository name