Skip to content

fix(Source): Fix broken code host doc links #1096

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -1016,7 +1016,7 @@ Re-release of 3.29.3 for Sourcegraph 3.30.

### Added

- New command `src serve-git` which can serve local repositories for Sourcegraph to clone. This was previously in a command called `src-expose`. See [serving local repositories](https://docs.sourcegraph.com/admin/external_service/src_serve_git) in our documentation to find out more. [#12363](https://github.com/sourcegraph/sourcegraph/issues/12363)
- New command `src serve-git` which can serve local repositories for Sourcegraph to clone. This was previously in a command called `src-expose`. See [serving local repositories](https://sourcegraph.com/docs/admin/code_hosts/src_serve_git) in our documentation to find out more. [#12363](https://github.com/sourcegraph/sourcegraph/issues/12363)
- When used with Sourcegraph 3.18 or later, campaigns can now be created on GitLab. [#231](https://github.com/sourcegraph/src-cli/pull/231)

## 3.16.1
Expand Down
2 changes: 1 addition & 1 deletion cmd/src/servegit.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ By default 'src serve-git' will recursively serve your current directory on the
'src serve-git -list' will not start up the server. Instead it will write to stdout a list of
repository names it would serve.

Documentation at https://docs.sourcegraph.com/admin/external_service/src_serve_git
Documentation at https://sourcegraph.com/docs/admin/code_hosts/src_serve_git
`)
}
var (
Expand Down
2 changes: 1 addition & 1 deletion internal/servegit/serve.go
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ func (s *Serve) Repos() ([]Repo, error) {
func explainAddr(addr string) string {
return fmt.Sprintf(`Serving the repositories at http://%s.

See https://docs.sourcegraph.com/admin/external_service/src_serve_git for
See https://sourcegraph.com/docs/admin/code_hosts/src_serve_git for
instructions to configure in Sourcegraph.
`, addr)
}
Loading