Skip to content

Commit 44e5752

Browse files
committed
all: update links to new gg-scm GitHub org
1 parent f7111cc commit 44e5752

File tree

18 files changed

+126
-123
lines changed

18 files changed

+126
-123
lines changed

CHANGELOG.md

Lines changed: 92 additions & 89 deletions
Large diffs are not rendered by default.

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ broken, adding new tests is always welcome.
1919
tracker first. Also, take a look at [DESIGN.md][], which outlines the scope of
2020
features and the ideas behind the project.
2121

22-
[issues]: https://github.com/zombiezen/gg/issues
23-
[DESIGN.md]: https://github.com/zombiezen/gg/blob/main/DESIGN.md
22+
[issues]: https://github.com/gg-scm/gg/issues
23+
[DESIGN.md]: https://github.com/gg-scm/gg/blob/main/DESIGN.md
2424

2525
## Building from Source
2626

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ guides and reference documentation.
6666

6767
[build-source]: CONTRIBUTING.md#building-from-source
6868
[main site]: https://gg-scm.io/
69-
[latest release]: https://github.com/zombiezen/gg/releases/latest
69+
[latest release]: https://github.com/gg-scm/gg/releases/latest
7070
[Working Locally]: https://gg-scm.io/workflow/local/
7171

7272
## Testimonials

cmd/gg/commit_test.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ func TestCommit_Selective(t *testing.T) {
211211
}
212212

213213
func TestCommit_SelectiveWrongFile(t *testing.T) {
214-
// Regression test for https://github.com/zombiezen/gg/issues/63
214+
// Regression test for https://github.com/gg-scm/gg/issues/63
215215

216216
t.Parallel()
217217
ctx := context.Background()
@@ -393,7 +393,7 @@ func TestCommit_Amend(t *testing.T) {
393393
}
394394

395395
func TestCommit_AmendRootCommit(t *testing.T) {
396-
// Regression test for https://github.com/zombiezen/gg/issues/106
396+
// Regression test for https://github.com/gg-scm/gg/issues/106
397397

398398
t.Parallel()
399399
ctx := context.Background()
@@ -602,7 +602,7 @@ func TestCommit_AmendJustMessage(t *testing.T) {
602602
}
603603

604604
func TestCommit_InSubdir(t *testing.T) {
605-
// Regression test for https://github.com/zombiezen/gg/issues/10
605+
// Regression test for https://github.com/gg-scm/gg/issues/10
606606

607607
t.Parallel()
608608
tests := []struct {
@@ -720,7 +720,7 @@ func TestCommit_InSubdir(t *testing.T) {
720720
}
721721

722722
func TestCommit_Merge(t *testing.T) {
723-
// Regression test for https://github.com/zombiezen/gg/issues/38
723+
// Regression test for https://github.com/gg-scm/gg/issues/38
724724

725725
t.Parallel()
726726
ctx := context.Background()
@@ -831,7 +831,7 @@ func TestCommit_Merge(t *testing.T) {
831831
}
832832
}
833833

834-
// Regression test for https://github.com/zombiezen/gg/issues/74
834+
// Regression test for https://github.com/gg-scm/gg/issues/74
835835
func TestCommit_DirectoryWithUntracked(t *testing.T) {
836836
t.Parallel()
837837
ctx := context.Background()

cmd/gg/gerrithook_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ func TestGerritHook(t *testing.T) {
8181
}
8282
})
8383
t.Run("Subdir", func(t *testing.T) {
84-
// Regression test for https://github.com/zombiezen/gg/issues/105
84+
// Regression test for https://github.com/gg-scm/gg/issues/105
8585

8686
env, err := newTestEnv(ctx, t)
8787
if err != nil {

cmd/gg/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -332,9 +332,9 @@ func showVersion(ctx context.Context, cc *cmdContext) error {
332332

333333
func userAgentString() string {
334334
if versionInfo == "" {
335-
return "zombiezen/gg"
335+
return "gg-scm.io"
336336
}
337-
return "zombiezen/gg " + versionInfo
337+
return "gg-scm.io " + versionInfo
338338
}
339339

340340
// processContext is the state that gg uses to run. It is collected in

cmd/gg/push_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -560,7 +560,7 @@ func TestPush_DistinctPushURL(t *testing.T) {
560560
func TestPush_NoCreateFetchURLMissingBranch(t *testing.T) {
561561
// Ensure that -create=0 does not proceed if the branch is missing
562562
// from the fetch URL but is present in the push URL. See
563-
// https://github.com/zombiezen/gg/issues/75 for background.
563+
// https://github.com/gg-scm/gg/issues/75 for background.
564564

565565
t.Parallel()
566566
ctx := context.Background()
@@ -652,7 +652,7 @@ func TestPush_NoCreateFetchURLMissingBranch(t *testing.T) {
652652
func TestPush_NoCreatePushURLMissingBranch(t *testing.T) {
653653
// Ensure that -create=0 succeeds if the branch is missing from the
654654
// push URL but is present in the fetch URL. See
655-
// https://github.com/zombiezen/gg/issues/75 for background.
655+
// https://github.com/gg-scm/gg/issues/75 for background.
656656

657657
t.Parallel()
658658
ctx := context.Background()

cmd/gg/rebase_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,7 @@ func TestRebase_Base(t *testing.T) {
471471
}
472472

473473
func TestRebase_ResetUpstream(t *testing.T) {
474-
// Regression test for https://github.com/zombiezen/gg/issues/41
474+
// Regression test for https://github.com/gg-scm/gg/issues/41
475475

476476
t.Parallel()
477477
runRebaseArgVariants(t, func(t *testing.T, argFunc rebaseArgFunc) {

cmd/gg/status.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -98,13 +98,13 @@ aliases: st, check`)
9898
case ent.Code.IsAdded():
9999
name := ent.Name
100100
if name == "" {
101-
// See https://github.com/zombiezen/gg/issues/60 for explanation.
101+
// See https://github.com/gg-scm/gg/issues/60 for explanation.
102102
name = "???"
103103
hitRenameBug = true
104104
}
105105
_, err = fmt.Fprintf(cc.stdout, "%sA %s\n", addedColor, name)
106106
if ent.Code.IsOriginalMissing() {
107-
// See https://github.com/zombiezen/gg/issues/44 for explanation.
107+
// See https://github.com/gg-scm/gg/issues/44 for explanation.
108108
if colorize {
109109
if err := terminal.ResetTextStyle(cc.stdout); err != nil {
110110
return err
@@ -152,10 +152,10 @@ aliases: st, check`)
152152
}
153153
}
154154
if foundUnrecognized {
155-
return errors.New("unrecognized output from git status. Please file a bug at https://github.com/zombiezen/gg/issues/new and include the output from this command.")
155+
return errors.New("unrecognized output from git status. Please file a bug at https://github.com/gg-scm/gg/issues/new and include the output from this command.")
156156
}
157157
if hitRenameBug {
158-
return errors.New("version of Git has buggy rename detection; please upgrade. See https://github.com/zombiezen/gg/issues/60 for details.")
158+
return errors.New("version of Git has buggy rename detection; please upgrade. See https://github.com/gg-scm/gg/issues/60 for details.")
159159
}
160160
if statusErr != nil {
161161
return statusErr

cmd/gg/status_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ func TestStatus(t *testing.T) {
9292
}
9393

9494
// TestStatus_RenamedLocally is a regression test for
95-
// https://github.com/zombiezen/gg/issues/44.
95+
// https://github.com/gg-scm/gg/issues/44.
9696
func TestStatus_RenamedLocally(t *testing.T) {
9797
t.Parallel()
9898
ctx := context.Background()
@@ -121,7 +121,7 @@ func TestStatus_RenamedLocally(t *testing.T) {
121121
if err := env.trackFiles(ctx, "bar.txt"); err != nil {
122122
t.Fatal(err)
123123
}
124-
// Check for buggy Git (see https://github.com/zombiezen/gg/issues/60).
124+
// Check for buggy Git (see https://github.com/gg-scm/gg/issues/60).
125125
// Useful for debugging.
126126
statusOut, err := env.git.Output(ctx, "status", "--porcelain", "-z", "-unormal")
127127
if err != nil {

0 commit comments

Comments
 (0)