Skip to content

Commit

Permalink
Merge pull request #49 from github/ldennington/migration-prep
Browse files Browse the repository at this point in the history
git-ecosystem migration: prepare repo
  • Loading branch information
ldennington authored May 2, 2023
2 parents b046ffd + 824fe37 commit 959ff3b
Show file tree
Hide file tree
Showing 46 changed files with 130 additions and 134 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[code-of-conduct]: CODE_OF_CONDUCT.md
[commit-guidance]: https://github.blog/2022-06-30-write-better-commits-build-better-projects/
[compare]: https://github.com/github/git-bundle-server/compare
[compare]: https://github.com/git-ecosystem/git-bundle-server/compare
[contributions-under-license]: https://help.github.com/articles/github-terms-of-service/#6-contributions-under-repository-license
[github-help]: https://help.github.com
[license]: LICENSE
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Git Bundle Server
Copyright © GitHub, Inc. and contributors
Copyright © Git Bundle Server contributors

MIT License

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Git Bundle Server

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

#### Linux

Expand Down
6 changes: 1 addition & 5 deletions SUPPORT.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Support

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

## How to file issues and get help

Expand All @@ -14,7 +14,3 @@ For help or questions about using this project, please start a
- `git-bundle-server` is under active development and maintained by GitHub
staff **AND THE COMMUNITY**. We will do our best to respond to support, feature
requests, and community questions in a timely manner.

## GitHub Support Policy

Support for this project is limited to the resources listed above.
2 changes: 1 addition & 1 deletion build/package/pkg/pack.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ die () {
THISDIR="$( cd "$(dirname "$0")" ; pwd -P )"

# Product information
IDENTIFIER="com.github.gitbundleserver"
IDENTIFIER="com.git-ecosystem.gitbundleserver"
INSTALL_LOCATION="/usr/local/git-bundle-server"

# Defaults
Expand Down
8 changes: 4 additions & 4 deletions cmd/git-bundle-server/delete.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ import (
"context"
"os"

"github.com/github/git-bundle-server/cmd/utils"
"github.com/github/git-bundle-server/internal/argparse"
"github.com/github/git-bundle-server/internal/core"
"github.com/github/git-bundle-server/internal/log"
"github.com/git-ecosystem/git-bundle-server/cmd/utils"
"github.com/git-ecosystem/git-bundle-server/internal/argparse"
"github.com/git-ecosystem/git-bundle-server/internal/core"
"github.com/git-ecosystem/git-bundle-server/internal/log"
)

type deleteCmd struct {
Expand Down
12 changes: 6 additions & 6 deletions cmd/git-bundle-server/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ import (
"context"
"fmt"

"github.com/github/git-bundle-server/cmd/utils"
"github.com/github/git-bundle-server/internal/argparse"
"github.com/github/git-bundle-server/internal/bundles"
"github.com/github/git-bundle-server/internal/core"
"github.com/github/git-bundle-server/internal/git"
"github.com/github/git-bundle-server/internal/log"
"github.com/git-ecosystem/git-bundle-server/cmd/utils"
"github.com/git-ecosystem/git-bundle-server/internal/argparse"
"github.com/git-ecosystem/git-bundle-server/internal/bundles"
"github.com/git-ecosystem/git-bundle-server/internal/core"
"github.com/git-ecosystem/git-bundle-server/internal/git"
"github.com/git-ecosystem/git-bundle-server/internal/log"
)

type initCmd struct {
Expand Down
10 changes: 5 additions & 5 deletions cmd/git-bundle-server/list.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ import (
"fmt"
"strings"

"github.com/github/git-bundle-server/cmd/utils"
"github.com/github/git-bundle-server/internal/argparse"
"github.com/github/git-bundle-server/internal/core"
"github.com/github/git-bundle-server/internal/git"
"github.com/github/git-bundle-server/internal/log"
"github.com/git-ecosystem/git-bundle-server/cmd/utils"
"github.com/git-ecosystem/git-bundle-server/internal/argparse"
"github.com/git-ecosystem/git-bundle-server/internal/core"
"github.com/git-ecosystem/git-bundle-server/internal/git"
"github.com/git-ecosystem/git-bundle-server/internal/log"
)

type listCmd struct {
Expand Down
6 changes: 3 additions & 3 deletions cmd/git-bundle-server/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import (
"context"
"os"

"github.com/github/git-bundle-server/cmd/utils"
"github.com/github/git-bundle-server/internal/argparse"
"github.com/github/git-bundle-server/internal/log"
"github.com/git-ecosystem/git-bundle-server/cmd/utils"
"github.com/git-ecosystem/git-bundle-server/internal/argparse"
"github.com/git-ecosystem/git-bundle-server/internal/log"
)

func all(logger log.TraceLogger) []argparse.Subcommand {
Expand Down
10 changes: 5 additions & 5 deletions cmd/git-bundle-server/repair.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ import (
"context"
"fmt"

"github.com/github/git-bundle-server/cmd/utils"
"github.com/github/git-bundle-server/internal/argparse"
"github.com/github/git-bundle-server/internal/core"
"github.com/github/git-bundle-server/internal/log"
typeutils "github.com/github/git-bundle-server/internal/utils"
"github.com/git-ecosystem/git-bundle-server/cmd/utils"
"github.com/git-ecosystem/git-bundle-server/internal/argparse"
"github.com/git-ecosystem/git-bundle-server/internal/core"
"github.com/git-ecosystem/git-bundle-server/internal/log"
typeutils "github.com/git-ecosystem/git-bundle-server/internal/utils"
)

type repairCmd struct {
Expand Down
8 changes: 4 additions & 4 deletions cmd/git-bundle-server/start.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ import (
"context"
"os"

"github.com/github/git-bundle-server/cmd/utils"
"github.com/github/git-bundle-server/internal/argparse"
"github.com/github/git-bundle-server/internal/core"
"github.com/github/git-bundle-server/internal/log"
"github.com/git-ecosystem/git-bundle-server/cmd/utils"
"github.com/git-ecosystem/git-bundle-server/internal/argparse"
"github.com/git-ecosystem/git-bundle-server/internal/core"
"github.com/git-ecosystem/git-bundle-server/internal/log"
)

type startCmd struct {
Expand Down
8 changes: 4 additions & 4 deletions cmd/git-bundle-server/stop.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ package main
import (
"context"

"github.com/github/git-bundle-server/cmd/utils"
"github.com/github/git-bundle-server/internal/argparse"
"github.com/github/git-bundle-server/internal/core"
"github.com/github/git-bundle-server/internal/log"
"github.com/git-ecosystem/git-bundle-server/cmd/utils"
"github.com/git-ecosystem/git-bundle-server/internal/argparse"
"github.com/git-ecosystem/git-bundle-server/internal/core"
"github.com/git-ecosystem/git-bundle-server/internal/log"
)

type stopCmd struct {
Expand Down
12 changes: 6 additions & 6 deletions cmd/git-bundle-server/update-all.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ import (
"context"
"fmt"

"github.com/github/git-bundle-server/cmd/utils"
"github.com/github/git-bundle-server/internal/argparse"
"github.com/github/git-bundle-server/internal/cmd"
"github.com/github/git-bundle-server/internal/common"
"github.com/github/git-bundle-server/internal/core"
"github.com/github/git-bundle-server/internal/log"
"github.com/git-ecosystem/git-bundle-server/cmd/utils"
"github.com/git-ecosystem/git-bundle-server/internal/argparse"
"github.com/git-ecosystem/git-bundle-server/internal/cmd"
"github.com/git-ecosystem/git-bundle-server/internal/common"
"github.com/git-ecosystem/git-bundle-server/internal/core"
"github.com/git-ecosystem/git-bundle-server/internal/log"
)

type updateAllCmd struct {
Expand Down
10 changes: 5 additions & 5 deletions cmd/git-bundle-server/update.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ import (
"context"
"fmt"

"github.com/github/git-bundle-server/cmd/utils"
"github.com/github/git-bundle-server/internal/argparse"
"github.com/github/git-bundle-server/internal/bundles"
"github.com/github/git-bundle-server/internal/core"
"github.com/github/git-bundle-server/internal/log"
"github.com/git-ecosystem/git-bundle-server/cmd/utils"
"github.com/git-ecosystem/git-bundle-server/internal/argparse"
"github.com/git-ecosystem/git-bundle-server/internal/bundles"
"github.com/git-ecosystem/git-bundle-server/internal/core"
"github.com/git-ecosystem/git-bundle-server/internal/log"
)

type updateCmd struct {
Expand Down
6 changes: 3 additions & 3 deletions cmd/git-bundle-server/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import (
"context"
"fmt"

"github.com/github/git-bundle-server/cmd/utils"
"github.com/github/git-bundle-server/internal/argparse"
"github.com/github/git-bundle-server/internal/log"
"github.com/git-ecosystem/git-bundle-server/cmd/utils"
"github.com/git-ecosystem/git-bundle-server/internal/argparse"
"github.com/git-ecosystem/git-bundle-server/internal/log"
)

type versionCmd struct {
Expand Down
10 changes: 5 additions & 5 deletions cmd/git-bundle-server/web-server.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ import (
"fmt"
"path/filepath"

"github.com/github/git-bundle-server/cmd/utils"
"github.com/github/git-bundle-server/internal/argparse"
"github.com/github/git-bundle-server/internal/common"
"github.com/github/git-bundle-server/internal/daemon"
"github.com/github/git-bundle-server/internal/log"
"github.com/git-ecosystem/git-bundle-server/cmd/utils"
"github.com/git-ecosystem/git-bundle-server/internal/argparse"
"github.com/git-ecosystem/git-bundle-server/internal/common"
"github.com/git-ecosystem/git-bundle-server/internal/daemon"
"github.com/git-ecosystem/git-bundle-server/internal/log"
)

type webServerCmd struct {
Expand Down
12 changes: 6 additions & 6 deletions cmd/git-bundle-web-server/bundle-server.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ import (
"syscall"
"time"

"github.com/github/git-bundle-server/internal/bundles"
"github.com/github/git-bundle-server/internal/cmd"
"github.com/github/git-bundle-server/internal/common"
"github.com/github/git-bundle-server/internal/core"
"github.com/github/git-bundle-server/internal/git"
"github.com/github/git-bundle-server/internal/log"
"github.com/git-ecosystem/git-bundle-server/internal/bundles"
"github.com/git-ecosystem/git-bundle-server/internal/cmd"
"github.com/git-ecosystem/git-bundle-server/internal/common"
"github.com/git-ecosystem/git-bundle-server/internal/core"
"github.com/git-ecosystem/git-bundle-server/internal/git"
"github.com/git-ecosystem/git-bundle-server/internal/log"
)

type bundleWebServer struct {
Expand Down
6 changes: 3 additions & 3 deletions cmd/git-bundle-web-server/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import (
"fmt"
"os"

"github.com/github/git-bundle-server/cmd/utils"
"github.com/github/git-bundle-server/internal/argparse"
"github.com/github/git-bundle-server/internal/log"
"github.com/git-ecosystem/git-bundle-server/cmd/utils"
"github.com/git-ecosystem/git-bundle-server/internal/argparse"
"github.com/git-ecosystem/git-bundle-server/internal/log"
)

func main() {
Expand Down
14 changes: 7 additions & 7 deletions cmd/utils/container-helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ package utils
import (
"context"

"github.com/github/git-bundle-server/internal/bundles"
"github.com/github/git-bundle-server/internal/cmd"
"github.com/github/git-bundle-server/internal/common"
"github.com/github/git-bundle-server/internal/core"
"github.com/github/git-bundle-server/internal/daemon"
"github.com/github/git-bundle-server/internal/git"
"github.com/github/git-bundle-server/internal/log"
"github.com/git-ecosystem/git-bundle-server/internal/bundles"
"github.com/git-ecosystem/git-bundle-server/internal/cmd"
"github.com/git-ecosystem/git-bundle-server/internal/common"
"github.com/git-ecosystem/git-bundle-server/internal/core"
"github.com/git-ecosystem/git-bundle-server/internal/daemon"
"github.com/git-ecosystem/git-bundle-server/internal/git"
"github.com/git-ecosystem/git-bundle-server/internal/log"
)

func BuildGitBundleServerContainer(logger log.TraceLogger) *DependencyContainer {
Expand Down
6 changes: 3 additions & 3 deletions cmd/utils/container-helpers_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ import (
"strings"
"testing"

"github.com/github/git-bundle-server/cmd/utils"
. "github.com/github/git-bundle-server/internal/testhelpers"
typeutils "github.com/github/git-bundle-server/internal/utils"
"github.com/git-ecosystem/git-bundle-server/cmd/utils"
. "github.com/git-ecosystem/git-bundle-server/internal/testhelpers"
typeutils "github.com/git-ecosystem/git-bundle-server/internal/utils"
"github.com/stretchr/testify/assert"
)

Expand Down
6 changes: 3 additions & 3 deletions cmd/utils/cron.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ package utils
import (
"context"

"github.com/github/git-bundle-server/internal/common"
"github.com/github/git-bundle-server/internal/core"
"github.com/github/git-bundle-server/internal/log"
"github.com/git-ecosystem/git-bundle-server/internal/common"
"github.com/git-ecosystem/git-bundle-server/internal/core"
"github.com/git-ecosystem/git-bundle-server/internal/log"
)

type CronHelper interface {
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/github/git-bundle-server
module github.com/git-ecosystem/git-bundle-server

go 1.19

Expand Down
2 changes: 1 addition & 1 deletion internal/argparse/argparse.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"fmt"
"strings"

"github.com/github/git-bundle-server/internal/log"
"github.com/git-ecosystem/git-bundle-server/internal/log"
)

// For consistency with 'flag', use 2 as the usage-related error code
Expand Down
8 changes: 4 additions & 4 deletions internal/bundles/bundles.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ import (
"strings"
"time"

"github.com/github/git-bundle-server/internal/common"
"github.com/github/git-bundle-server/internal/core"
"github.com/github/git-bundle-server/internal/git"
"github.com/github/git-bundle-server/internal/log"
"github.com/git-ecosystem/git-bundle-server/internal/common"
"github.com/git-ecosystem/git-bundle-server/internal/core"
"github.com/git-ecosystem/git-bundle-server/internal/git"
"github.com/git-ecosystem/git-bundle-server/internal/log"
)

const (
Expand Down
6 changes: 3 additions & 3 deletions internal/bundles/bundles_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ import (
"path/filepath"
"testing"

"github.com/github/git-bundle-server/internal/bundles"
"github.com/github/git-bundle-server/internal/core"
. "github.com/github/git-bundle-server/internal/testhelpers"
"github.com/git-ecosystem/git-bundle-server/internal/bundles"
"github.com/git-ecosystem/git-bundle-server/internal/core"
. "github.com/git-ecosystem/git-bundle-server/internal/testhelpers"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/mock"
)
Expand Down
2 changes: 1 addition & 1 deletion internal/cmd/command.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"os"
"os/exec"

"github.com/github/git-bundle-server/internal/log"
"github.com/git-ecosystem/git-bundle-server/internal/log"
)

type CommandExecutor interface {
Expand Down
2 changes: 1 addition & 1 deletion internal/cmd/settings.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package cmd
import (
"io"

"github.com/github/git-bundle-server/internal/utils"
"github.com/git-ecosystem/git-bundle-server/internal/utils"
)

type settingType int
Expand Down
2 changes: 1 addition & 1 deletion internal/common/filesystem.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"path/filepath"
"syscall"

"github.com/github/git-bundle-server/internal/utils"
"github.com/git-ecosystem/git-bundle-server/internal/utils"
)

const (
Expand Down
8 changes: 4 additions & 4 deletions internal/core/cron.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ import (
"fmt"
"strings"

"github.com/github/git-bundle-server/internal/cmd"
"github.com/github/git-bundle-server/internal/common"
"github.com/github/git-bundle-server/internal/log"
"github.com/github/git-bundle-server/internal/utils"
"github.com/git-ecosystem/git-bundle-server/internal/cmd"
"github.com/git-ecosystem/git-bundle-server/internal/common"
"github.com/git-ecosystem/git-bundle-server/internal/log"
"github.com/git-ecosystem/git-bundle-server/internal/utils"
)

type cronSchedule string
Expand Down
Loading

0 comments on commit 959ff3b

Please sign in to comment.