Skip to content

Commit 4031b0d

Browse files
authored
Change links to point to gitui-org instead of extrawurst (#2538)
1 parent 4ad2c4b commit 4031b0d

File tree

19 files changed

+394
-393
lines changed

19 files changed

+394
-393
lines changed

CHANGELOG.md

Lines changed: 352 additions & 351 deletions
Large diffs are not rendered by default.

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ too much context so that people not familiar with the codebase yet can still
2323
make a contribution.
2424

2525
[discord-server]: https://discord.gg/rZv4uxSQx3
26-
[good-first-issues]: https://github.com/extrawurst/gitui/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22
26+
[good-first-issues]: https://github.com/gitui-org/gitui/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ description = "blazing fast terminal-ui for git"
66
edition = "2021"
77
rust-version = "1.70"
88
exclude = [".github/*", ".vscode/*", "assets/*"]
9-
homepage = "https://github.com/extrawurst/gitui"
10-
repository = "https://github.com/extrawurst/gitui"
9+
homepage = "https://github.com/gitui-org/gitui"
10+
repository = "https://github.com/gitui-org/gitui"
1111
readme = "README.md"
1212
license = "MIT"
1313
categories = ["command-line-utilities"]

KEY_CONFIG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ The location of the file depends on your OS:
2626
* `$HOME/.config/gitui/key_bindings.ron` (linux)
2727
* `%APPDATA%/gitui/key_bindings.ron` (Windows)
2828

29-
See all possible keys to overwrite in gitui: [here](https://github.com/extrawurst/gitui/blob/master/src/keys/key_list.rs#L83)
29+
See all possible keys to overwrite in gitui: [here](https://github.com/gitui-org/gitui/blob/master/src/keys/key_list.rs#L83)
3030

3131
Possible values for:
3232
* `code` are defined by the type `KeyCode` in crossterm: [here](https://docs.rs/crossterm/latest/crossterm/event/enum.KeyCode.html)
@@ -48,4 +48,4 @@ Example content of this file looks like:
4848
shift: Some("shift-")
4949
)
5050
```
51-
This example will only overwrite two symbols. Find all possible symbols to overwrite in `symbols.rs` in the type `KeySymbolsFile` ([src/keys/symbols.rs](https://github.com/extrawurst/gitui/blob/master/src/keys/symbols.rs))
51+
This example will only overwrite two symbols. Find all possible symbols to overwrite in `symbols.rs` in the type `KeySymbolsFile` ([src/keys/symbols.rs](https://github.com/gitui-org/gitui/blob/master/src/keys/symbols.rs))

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2025 extrawurst
3+
Copyright (c) 2025 gitui-org
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,17 @@
55

66
</h1>
77

8-
[s0]: https://github.com/extrawurst/gitui/workflows/CI/badge.svg
9-
[l0]: https://github.com/extrawurst/gitui/actions
8+
[s0]: https://github.com/gitui-org/gitui/workflows/CI/badge.svg
9+
[l0]: https://github.com/gitui-org/gitui/actions
1010
[s1]: https://img.shields.io/crates/v/gitui.svg
1111
[l1]: https://crates.io/crates/gitui
1212
[s2]: https://img.shields.io/badge/license-MIT-blue.svg
1313
[s3]: https://img.shields.io/badge/unsafe-forbidden-success.svg
1414
[l3]: https://github.com/rust-secure-code/safety-dance/
1515
[s6]: https://img.shields.io/twitter/follow/extrawurst?label=follow&style=social
1616
[l6]: https://twitter.com/intent/follow?screen_name=extrawurst
17-
[s7]: https://deps.rs/repo/github/extrawurst/gitui/status.svg
18-
[l7]: https://deps.rs/repo/github/extrawurst/gitui
17+
[s7]: https://deps.rs/repo/github/gitui-org/gitui/status.svg
18+
[l7]: https://deps.rs/repo/github/gitui-org/gitui
1919
[s8]: https://img.shields.io/discord/1176858176897953872
2020
[l8]: https://discord.gg/rQNeEnMhus
2121

@@ -54,7 +54,7 @@
5454
- Responsive terminal UI
5555
- Async git API for fluid control
5656
- Submodule support
57-
- gpg commit signing with shortcomings (see [#97](https://github.com/extrawurst/gitui/issues/97)))
57+
- gpg commit signing with shortcomings (see [#97](https://github.com/gitui-org/gitui/issues/97)))
5858

5959
## 2. <a name="motivation"></a> Motivation <small><sup>[Top ▲](#table-of-contents)</sup></small>
6060

@@ -78,14 +78,14 @@ For a [RustBerlin meetup presentation](https://youtu.be/rpilJV-eIVw?t=5334) ([sl
7878

7979
These are the high level goals before calling out `1.0`:
8080

81-
* visualize branching structure in log tab ([#81](https://github.com/extrawurst/gitui/issues/81))
82-
* interactive rebase ([#32](https://github.com/extrawurst/gitui/issues/32))
81+
* visualize branching structure in log tab ([#81](https://github.com/gitui-org/gitui/issues/81))
82+
* interactive rebase ([#32](https://github.com/gitui-org/gitui/issues/32))
8383

8484
## 5. <a name="limitations"></a> Known Limitations <small><sup>[Top ▲](#table-of-contents)</sup></small>
8585

86-
- no sparse repo support (see [#1226](https://github.com/extrawurst/gitui/issues/1226))
87-
- no git-lfs support (see [#1089](https://github.com/extrawurst/gitui/discussions/1089))
88-
- *credential.helper* for https needs to be **explicitly** configured (see [#800](https://github.com/extrawurst/gitui/issues/800))
86+
- no sparse repo support (see [#1226](https://github.com/gitui-org/gitui/issues/1226))
87+
- no git-lfs support (see [#1089](https://github.com/gitui-org/gitui/discussions/1089))
88+
- *credential.helper* for https needs to be **explicitly** configured (see [#800](https://github.com/gitui-org/gitui/issues/800))
8989

9090
Currently, this tool does not fully substitute the _git shell_, however both tools work well in tandem.
9191

@@ -189,7 +189,7 @@ conda install -c conda-forge gitui
189189

190190
### Release Binaries
191191

192-
[Available for download in releases](https://github.com/extrawurst/gitui/releases)
192+
[Available for download in releases](https://github.com/gitui-org/gitui/releases)
193193

194194
Binaries available for:
195195

@@ -288,8 +288,8 @@ See [CONTRIBUTING.md](CONTRIBUTING.md).
288288

289289
Thanks goes to all the contributors that help make GitUI amazing! ❤️
290290

291-
Wanna become a co-maintainer? We are looking for [you](https://github.com/extrawurst/gitui/issues/2084)!
291+
Wanna become a co-maintainer? We are looking for [you](https://github.com/gitui-org/gitui/issues/2084)!
292292

293-
<a href="https://github.com/extrawurst/gitui/graphs/contributors">
294-
<img src="https://contrib.rocks/image?repo=extrawurst/gitui" />
293+
<a href="https://github.com/gitui-org/gitui/graphs/contributors">
294+
<img src="https://contrib.rocks/image?repo=gitui-org/gitui" />
295295
</a>

THEMES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Notes:
3030
* rgb colors might not be supported in every terminal.
3131
* using a color like `yellow` might appear in whatever your terminal/theme defines for `yellow`
3232
* valid colors can be found in ratatui's [Color](https://docs.rs/ratatui/latest/ratatui/style/enum.Color.html) struct.
33-
* all customizable theme elements can be found in [`style.rs` in the `impl Default for Theme` block](https://github.com/extrawurst/gitui/blob/master/src/ui/style.rs#L305)
33+
* all customizable theme elements can be found in [`style.rs` in the `impl Default for Theme` block](https://github.com/gitui-org/gitui/blob/master/src/ui/style.rs#L305)
3434

3535
## Customizing line breaks
3636

asyncgit/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ version = "0.27.0"
44
authors = ["extrawurst <[email protected]>"]
55
edition = "2021"
66
description = "allow using git2 in a asynchronous context"
7-
homepage = "https://github.com/extrawurst/gitui"
8-
repository = "https://github.com/extrawurst/gitui"
7+
homepage = "https://github.com/gitui-org/gitui"
8+
repository = "https://github.com/gitui-org/gitui"
99
readme = "README.md"
1010
license = "MIT"
1111
categories = ["concurrency", "asynchronous"]

asyncgit/src/sync/commit.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ pub fn amend(
5454

5555
/// Wrap `Repository::signature` to allow unknown user.name.
5656
///
57-
/// See <https://github.com/extrawurst/gitui/issues/79>.
57+
/// See <https://github.com/gitui-org/gitui/issues/79>.
5858
#[allow(clippy::redundant_pub_crate)]
5959
pub(crate) fn signature_allow_undefined_name(
6060
repo: &Repository,

asyncgit/src/sync/utils.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,7 @@ mod tests {
399399
assert_eq!(status_count(StatusType::Stage), 1);
400400
}
401401

402-
// see https://github.com/extrawurst/gitui/issues/108
402+
// see https://github.com/gitui-org/gitui/issues/108
403403
#[test]
404404
fn test_staging_sub_git_folder() -> Result<()> {
405405
let (_td, repo) = repo_init().unwrap();

0 commit comments

Comments
 (0)