Skip to content

Commit 959ff3b

Browse files
authored
Merge pull request #49 from github/ldennington/migration-prep
git-ecosystem migration: prepare repo
2 parents b046ffd + 824fe37 commit 959ff3b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+130
-134
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[code-of-conduct]: CODE_OF_CONDUCT.md
44
[commit-guidance]: https://github.blog/2022-06-30-write-better-commits-build-better-projects/
5-
[compare]: https://github.com/github/git-bundle-server/compare
5+
[compare]: https://github.com/git-ecosystem/git-bundle-server/compare
66
[contributions-under-license]: https://help.github.com/articles/github-terms-of-service/#6-contributions-under-repository-license
77
[github-help]: https://help.github.com
88
[license]: LICENSE

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Git Bundle Server
2-
Copyright © GitHub, Inc. and contributors
2+
Copyright © Git Bundle Server contributors
33

44
MIT License
55

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Git Bundle Server
22

3-
[bundle-uris]: https://github.com/git/git/blob/next/Documentation/technical/bundle-uri.txt
3+
[bundle-uris]: https://git-scm.com/docs/bundle-uri
44
[codeowners]: CODEOWNERS
55
[contributing]: CONTRIBUTING.md
66
[license]: LICENSE
@@ -22,7 +22,7 @@ started.
2222
> :warning: Installation on Windows is currently unsupported :warning:
2323
2424
<!-- Common sources -->
25-
[releases]: https://github.com/github/git-bundle-server/releases
25+
[releases]: https://github.com/git-ecosystem/git-bundle-server/releases
2626

2727
#### Linux
2828

SUPPORT.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Support
22

3-
[discussion]: https://github.com/github/git-bundle-server/discussions
3+
[discussion]: https://github.com/git-ecosystem/git-bundle-server/discussions
44

55
## How to file issues and get help
66

@@ -14,7 +14,3 @@ For help or questions about using this project, please start a
1414
- `git-bundle-server` is under active development and maintained by GitHub
1515
staff **AND THE COMMUNITY**. We will do our best to respond to support, feature
1616
requests, and community questions in a timely manner.
17-
18-
## GitHub Support Policy
19-
20-
Support for this project is limited to the resources listed above.

build/package/pkg/pack.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ die () {
88
THISDIR="$( cd "$(dirname "$0")" ; pwd -P )"
99

1010
# Product information
11-
IDENTIFIER="com.github.gitbundleserver"
11+
IDENTIFIER="com.git-ecosystem.gitbundleserver"
1212
INSTALL_LOCATION="/usr/local/git-bundle-server"
1313

1414
# Defaults

cmd/git-bundle-server/delete.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ import (
44
"context"
55
"os"
66

7-
"github.com/github/git-bundle-server/cmd/utils"
8-
"github.com/github/git-bundle-server/internal/argparse"
9-
"github.com/github/git-bundle-server/internal/core"
10-
"github.com/github/git-bundle-server/internal/log"
7+
"github.com/git-ecosystem/git-bundle-server/cmd/utils"
8+
"github.com/git-ecosystem/git-bundle-server/internal/argparse"
9+
"github.com/git-ecosystem/git-bundle-server/internal/core"
10+
"github.com/git-ecosystem/git-bundle-server/internal/log"
1111
)
1212

1313
type deleteCmd struct {

cmd/git-bundle-server/init.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ import (
44
"context"
55
"fmt"
66

7-
"github.com/github/git-bundle-server/cmd/utils"
8-
"github.com/github/git-bundle-server/internal/argparse"
9-
"github.com/github/git-bundle-server/internal/bundles"
10-
"github.com/github/git-bundle-server/internal/core"
11-
"github.com/github/git-bundle-server/internal/git"
12-
"github.com/github/git-bundle-server/internal/log"
7+
"github.com/git-ecosystem/git-bundle-server/cmd/utils"
8+
"github.com/git-ecosystem/git-bundle-server/internal/argparse"
9+
"github.com/git-ecosystem/git-bundle-server/internal/bundles"
10+
"github.com/git-ecosystem/git-bundle-server/internal/core"
11+
"github.com/git-ecosystem/git-bundle-server/internal/git"
12+
"github.com/git-ecosystem/git-bundle-server/internal/log"
1313
)
1414

1515
type initCmd struct {

cmd/git-bundle-server/list.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ import (
55
"fmt"
66
"strings"
77

8-
"github.com/github/git-bundle-server/cmd/utils"
9-
"github.com/github/git-bundle-server/internal/argparse"
10-
"github.com/github/git-bundle-server/internal/core"
11-
"github.com/github/git-bundle-server/internal/git"
12-
"github.com/github/git-bundle-server/internal/log"
8+
"github.com/git-ecosystem/git-bundle-server/cmd/utils"
9+
"github.com/git-ecosystem/git-bundle-server/internal/argparse"
10+
"github.com/git-ecosystem/git-bundle-server/internal/core"
11+
"github.com/git-ecosystem/git-bundle-server/internal/git"
12+
"github.com/git-ecosystem/git-bundle-server/internal/log"
1313
)
1414

1515
type listCmd struct {

cmd/git-bundle-server/main.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ import (
44
"context"
55
"os"
66

7-
"github.com/github/git-bundle-server/cmd/utils"
8-
"github.com/github/git-bundle-server/internal/argparse"
9-
"github.com/github/git-bundle-server/internal/log"
7+
"github.com/git-ecosystem/git-bundle-server/cmd/utils"
8+
"github.com/git-ecosystem/git-bundle-server/internal/argparse"
9+
"github.com/git-ecosystem/git-bundle-server/internal/log"
1010
)
1111

1212
func all(logger log.TraceLogger) []argparse.Subcommand {

cmd/git-bundle-server/repair.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ import (
44
"context"
55
"fmt"
66

7-
"github.com/github/git-bundle-server/cmd/utils"
8-
"github.com/github/git-bundle-server/internal/argparse"
9-
"github.com/github/git-bundle-server/internal/core"
10-
"github.com/github/git-bundle-server/internal/log"
11-
typeutils "github.com/github/git-bundle-server/internal/utils"
7+
"github.com/git-ecosystem/git-bundle-server/cmd/utils"
8+
"github.com/git-ecosystem/git-bundle-server/internal/argparse"
9+
"github.com/git-ecosystem/git-bundle-server/internal/core"
10+
"github.com/git-ecosystem/git-bundle-server/internal/log"
11+
typeutils "github.com/git-ecosystem/git-bundle-server/internal/utils"
1212
)
1313

1414
type repairCmd struct {

0 commit comments

Comments
 (0)