Skip to content

Commit 795962b

Browse files
authored
Merge pull request #1624 from EliahKagan/update-repo-url
Update gitoxide repository URLs
2 parents 70c4df5 + 1ea08bf commit 795962b

File tree

99 files changed

+281
-282
lines changed

Some content is hidden

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

99 files changed

+281
-282
lines changed

COLLABORATING.md

+4-5
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
- If you're unsure about remembering to do this, we suggest using a pre-commit git hook.
1515
- **if `main` breaks on CI** _which can happen nonetheless_
1616
- …and you _do know_ the cause, please fix it immediately. If necessary by reverting the offending commit until a more durable fix is possible.
17-
- …and you _do not know_ the cause, please open a PR to invite collaborators for their input. This is to avoid multiple collaborators
17+
- …and you _do not know_ the cause, please open a PR to invite collaborators for their input. This is to avoid multiple collaborators
1818
trying to fix the issue independently, causing merge-conflicts and confusion. We use this PR as synchronization primitive.
1919
- **for crates _you own_**
2020
- feel free to make any kind of changes to it, including major ones.
@@ -29,7 +29,6 @@ The workflow can be changed after public discussion - to get started, open a PR.
2929

3030
Please see the [development guide] for more detailed information on how code and cargo manifests are structured.
3131

32-
[development guide]: https://github.com/Byron/gitoxide/blob/main/DEVELOPMENT.md
33-
[project-board]: https://github.com/Byron/gitoxide/projects
34-
[discussions]: https://github.com/Byron/gitoxide/discussions
35-
32+
[development guide]: https://github.com/GitoxideLabs/gitoxide/blob/main/DEVELOPMENT.md
33+
[project-board]: https://github.com/GitoxideLabs/gitoxide/projects
34+
[discussions]: https://github.com/GitoxideLabs/gitoxide/discussions

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
For now, please have a look at the section in the [README] file.
22

3-
[README]: https://github.com/Byron/gitoxide#contributions
3+
[README]: https://github.com/GitoxideLabs/gitoxide#contributions

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ lints.workspace = true
33
[package]
44
name = "gitoxide"
55
description = "A command-line application for interacting with git repositories"
6-
repository = "https://github.com/Byron/gitoxide"
6+
repository = "https://github.com/GitoxideLabs/gitoxide"
77
authors = ["Sebastian Thiel <[email protected]>"]
88
edition = "2021"
99
license = "MIT OR Apache-2.0"
@@ -392,4 +392,4 @@ unnecessary_join = "allow" # x1
392392
stable_sort_primitive = "allow" # x1
393393
no_effect_underscore_binding = "allow" # x1
394394
empty_docs = "allow"
395-
too_long_first_doc_paragraph = "allow"
395+
too_long_first_doc_paragraph = "allow"

DEVELOPMENT.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* handle all errors, never `unwrap()`. If needed, `expect("why")`.
1717
* provide an error chain and make it easy to understand what went wrong.
1818
* We `thiserror` generally.
19-
* Adhere to the [stability guide](https://github.com/Byron/gitoxide/blob/main/STABILITY.md)
19+
* Adhere to the [stability guide](https://github.com/GitoxideLabs/gitoxide/blob/main/STABILITY.md)
2020

2121
## Commit Messages
2222

@@ -196,7 +196,7 @@ In _porcelain_ crates, like `gix`, we have `Platforms` which are typically cheap
196196
should keep a reference to the `Repository` instance that created them as the user is expected to clone the `Repository` if there is the need.
197197
However, if these structures are more expensive, call them `Cache` or `<NotPlatform>` and prefer to clone the `Repository` into them or otherwise keep them free of lifetimes
198198
to allow the user to keep this structure around for repeated calls. References for this paragraph are [this PR](https://github.com/Canop/bacon/pull/98) and
199-
[this discussion](https://github.com/Byron/gitoxide/discussions/675).
199+
[this discussion](https://github.com/GitoxideLabs/gitoxide/discussions/675).
200200

201201
## Examples, Porcelain CLI and Plumbing CLI - which does what?
202202

Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -141,12 +141,12 @@ $(baseline_asset_fixture):
141141
sed -i '' 's/master/main/g' $$(find . -type f)
142142

143143
transport_fixtures = gix-transport/tests/fixtures
144-
base_url = https://github.com/Byron/gitoxide.git
144+
base_url = https://github.com/GitoxideLabs/gitoxide.git
145145
update-curl-fixtures: ## use curl to fetch raw fixtures for use in unit test. Changes there might break them
146146
curl -D - -L "$(base_url)/info/refs?service=git-upload-pack" > $(transport_fixtures)/v1/http-handshake.response
147147
curl -D - -H 'Git-Protocol: version=2' -L "$(base_url)/info/refs?service=git-upload-pack" > $(transport_fixtures)/v2/http-handshake.response
148-
curl -H 'User-Agent: git/oxide-0.1.0' -D - -H 'Git-Protocol: version=1' -L "https://github.com/Byron/foo/info/refs?service=git-upload-pack" > $(transport_fixtures)/http-401.response
149-
curl -D - -H 'Git-Protocol: version=1' -L "https://github.com/Byron/gitoxide/info/refs?service=git-upload-pack" > $(transport_fixtures)/http-404.response
148+
curl -H 'User-Agent: git/oxide-0.1.0' -D - -H 'Git-Protocol: version=1' -L "https://github.com/GitoxideLabs/foo/info/refs?service=git-upload-pack" > $(transport_fixtures)/http-401.response
149+
curl -D - -H 'Git-Protocol: version=1' -L "https://github.com/GitoxideLabs/gitoxide/info/refs?service=git-upload-pack" > $(transport_fixtures)/http-404.response
150150

151151
update-assets: $(baseline_asset_fixture) ## refresh assets compiled into the binaries from their source
152152
-rm -Rf $(baseline_asset_dir)

0 commit comments

Comments
 (0)