Skip to content

Commit dcc02b2

Browse files
authored
fix(Source): Fix broken code host doc links (#1096)
1 parent 3ce717f commit dcc02b2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1016,7 +1016,7 @@ Re-release of 3.29.3 for Sourcegraph 3.30.
10161016

10171017
### Added
10181018

1019-
- 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)
1019+
- 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)
10201020
- When used with Sourcegraph 3.18 or later, campaigns can now be created on GitLab. [#231](https://github.com/sourcegraph/src-cli/pull/231)
10211021

10221022
## 3.16.1

cmd/src/servegit.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ By default 'src serve-git' will recursively serve your current directory on the
2424
'src serve-git -list' will not start up the server. Instead it will write to stdout a list of
2525
repository names it would serve.
2626
27-
Documentation at https://docs.sourcegraph.com/admin/external_service/src_serve_git
27+
Documentation at https://sourcegraph.com/docs/admin/code_hosts/src_serve_git
2828
`)
2929
}
3030
var (

internal/servegit/serve.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ func (s *Serve) Repos() ([]Repo, error) {
253253
func explainAddr(addr string) string {
254254
return fmt.Sprintf(`Serving the repositories at http://%s.
255255
256-
See https://docs.sourcegraph.com/admin/external_service/src_serve_git for
256+
See https://sourcegraph.com/docs/admin/code_hosts/src_serve_git for
257257
instructions to configure in Sourcegraph.
258258
`, addr)
259259
}

0 commit comments

Comments
 (0)