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

+352-351
Large diffs are not rendered by default.

CONTRIBUTING.md

+1-1
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

+2-2
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

+2-2
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

+1-1
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

+14-14
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

+1-1
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

+2-2
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

+1-1
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

+1-1
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();

filetreelist/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ version = "0.5.2"
44
authors = ["extrawurst <[email protected]>"]
55
edition = "2021"
66
description = "filetree abstraction based on a sorted path list, supports key based navigation events, folding, scrolling and more"
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 = ["command-line-utilities"]

git2-hooks/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ version = "0.4.0"
44
authors = ["extrawurst <[email protected]>"]
55
edition = "2021"
66
description = "adds git hooks support based on git2-rs"
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
documentation = "https://docs.rs/git2-hooks/"
1010
readme = "README.md"
1111
license = "MIT"

git2-testing/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ version = "0.1.0"
44
authors = ["extrawurst <[email protected]>"]
55
edition = "2021"
66
description = "convenience functions to write unittests on top of git2-rs"
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 = ["development-tools"]

invalidstring/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ version = "0.1.3"
44
authors = ["extrawurst <[email protected]>"]
55
edition = "2021"
66
description = "just for testing invalid string data"
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 = ["development-tools", "development-tools::testing", "encoding"]

scopetime/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ version = "0.1.2"
44
authors = ["extrawurst <[email protected]>"]
55
edition = "2021"
66
description = "log runtime of arbitrary scope"
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
license = "MIT"
1010
readme = "README.md"
1111
categories = ["development-tools::profiling"]

src/args.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ fn app() -> ClapApp {
100100
.value_name("LOG_FILE"))
101101
.arg(
102102
Arg::new("watcher")
103-
.help("Use notify-based file system watcher instead of tick-based update. This is more performant, but can cause issues on some platforms. See https://github.com/extrawurst/gitui/blob/master/FAQ.md#watcher for details.")
103+
.help("Use notify-based file system watcher instead of tick-based update. This is more performant, but can cause issues on some platforms. See https://github.com/gitui-org/gitui/blob/master/FAQ.md#watcher for details.")
104104
.long("watcher")
105105
.action(clap::ArgAction::SetTrue),
106106
)

src/input.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ impl Input {
125125
tx.send(InputEvent::Input(e))?;
126126
//Note: right after an input event we might have a reason to stop
127127
// polling (external editor opening) so lets do a quick poll until the next input
128-
// this fixes https://github.com/extrawurst/gitui/issues/1506
128+
// this fixes https://github.com/gitui-org/gitui/issues/1506
129129
poll_duration = FAST_POLL_DURATION;
130130
} else {
131131
poll_duration = SLOW_POLL_DURATION;

src/main.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -381,15 +381,15 @@ fn set_panic_handlers() -> Result<()> {
381381
panic::set_hook(Box::new(|e| {
382382
let backtrace = Backtrace::new();
383383
shutdown_terminal();
384-
log_eprintln!("\nGitUI was close due to an unexpected panic.\nPlease file an issue on https://github.com/extrawurst/gitui/issues with the following info:\n\n{:?}\ntrace:\n{:?}", e, backtrace);
384+
log_eprintln!("\nGitUI was close due to an unexpected panic.\nPlease file an issue on https://github.com/gitui-org/gitui/issues with the following info:\n\n{:?}\ntrace:\n{:?}", e, backtrace);
385385
}));
386386

387387
// global threadpool
388388
rayon_core::ThreadPoolBuilder::new()
389389
.panic_handler(|e| {
390390
let backtrace = Backtrace::new();
391391
shutdown_terminal();
392-
log_eprintln!("\nGitUI was close due to an unexpected panic.\nPlease file an issue on https://github.com/extrawurst/gitui/issues with the following info:\n\n{:?}\ntrace:\n{:?}", e, backtrace);
392+
log_eprintln!("\nGitUI was close due to an unexpected panic.\nPlease file an issue on https://github.com/gitui-org/gitui/issues with the following info:\n\n{:?}\ntrace:\n{:?}", e, backtrace);
393393
process::abort();
394394
})
395395
.num_threads(4)

wix/main.wxs

+3-3
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,15 @@
3535
Id='*'
3636
Name='gitui'
3737
UpgradeCode='C1CADE63-A601-4E02-96CC-FB921D5B174E'
38-
Manufacturer='extrawurst'
38+
Manufacturer='gitui-org'
3939
Language='1033'
4040
Codepage='1252'
4141
Version='$(var.Version)'>
4242

4343
<Package Id='*'
4444
Keywords='Installer'
4545
Description='blazing fast terminal-ui for git'
46-
Manufacturer='extrawurst'
46+
Manufacturer='gitui-org'
4747
InstallerVersion='450'
4848
Languages='1033'
4949
Compressed='yes'
@@ -151,7 +151,7 @@
151151
<!--<Icon Id='ProductICO' SourceFile='wix\Product.ico'/>-->
152152
<!--<Property Id='ARPPRODUCTICON' Value='ProductICO' />-->
153153

154-
<Property Id='ARPHELPLINK' Value='https://github.com/extrawurst/gitui'/>
154+
<Property Id='ARPHELPLINK' Value='https://github.com/gitui-org/gitui'/>
155155

156156
<UI>
157157
<UIRef Id='WixUI_FeatureTree'/>

0 commit comments

Comments
 (0)