Skip to content

Commit 19cbb37

Browse files
committed
doc: Update repo urls from rustworkshop to timabell
Have moved the location of the repo, so help should show the update path.
1 parent e207e09 commit 19cbb37

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ use std::io::Write;
1111

1212
/// A CLI tool for managing multiple git repositories
1313
/// License: A-GPL v3.0
14-
/// Repo: https://github.com/rustworkshop/gitopolis
14+
/// Repo: https://github.com/timabell/gitopolis
1515
#[derive(Parser)]
1616
#[clap(author, version, subcommand_required = true, verbatim_doc_comment)]
1717
struct Args {

tests/end_to_end_tests.rs

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ fn help() {
2121
fn add_glob() {
2222
// Linux has shell globbing built in, but that's not available for windows/cmd so "add *" is passed
2323
// in without being expanded, resulting in an error instead of adding everything.
24-
// https://github.com/rustworkshop/gitopolis/issues/122
24+
// https://github.com/timabell/gitopolis/issues/122
2525
let temp = temp_folder();
2626
create_git_repo(&temp, "first_git_folder", "git://example.org/test_url");
2727
create_git_repo(&temp, "second_git_folder", "git://example.org/test_url2");
@@ -2120,7 +2120,7 @@ fn tag_remove_repo_not_found() {
21202120
#[test]
21212121
fn exec_displays_quoted_args() {
21222122
// Test that exec command display adds quotes for arguments with spaces
2123-
// Issue: https://github.com/rustworkshop/gitopolis/issues/86
2123+
// Issue: https://github.com/timabell/gitopolis/issues/86
21242124
let temp = temp_folder();
21252125
add_a_repo(&temp, "repo_a", "git://example.org/test_a");
21262126

@@ -2135,7 +2135,7 @@ fn exec_displays_quoted_args() {
21352135
#[test]
21362136
fn clone_with_url() {
21372137
// Test cloning a repository from a URL and automatically adding it to gitopolis
2138-
// Issue: https://github.com/rustworkshop/gitopolis/issues/193
2138+
// Issue: https://github.com/timabell/gitopolis/issues/193
21392139
let temp = temp_folder();
21402140

21412141
// Create a source repo in a subdirectory
@@ -2175,7 +2175,7 @@ fn clone_with_url() {
21752175
#[test]
21762176
fn clone_with_url_extracts_folder_name() {
21772177
// Test that clone extracts the correct folder name from various URL formats
2178-
// Issue: https://github.com/rustworkshop/gitopolis/issues/193
2178+
// Issue: https://github.com/timabell/gitopolis/issues/193
21792179
let temp = temp_folder();
21802180

21812181
// Create a source repo with .git in the name to test extraction
@@ -2209,7 +2209,7 @@ fn clone_with_url_extracts_folder_name() {
22092209
#[test]
22102210
fn clone_with_url_and_target_dir() {
22112211
// Test cloning with a custom target directory, like git clone does
2212-
// Issue: https://github.com/rustworkshop/gitopolis/issues/193
2212+
// Issue: https://github.com/timabell/gitopolis/issues/193
22132213
let temp = temp_folder();
22142214

22152215
// Create a source repo in a subdirectory
@@ -2251,7 +2251,7 @@ fn clone_with_url_and_target_dir() {
22512251
#[test]
22522252
fn move_repo() {
22532253
// Test basic move operation
2254-
// Issue: https://github.com/rustworkshop/gitopolis/issues/157
2254+
// Issue: https://github.com/timabell/gitopolis/issues/157
22552255
let temp = temp_folder();
22562256
add_a_repo(&temp, "old_location", "git://example.org/test_url");
22572257

@@ -2294,7 +2294,7 @@ url = \"git://example.org/test_url\"
22942294
#[test]
22952295
fn move_repo_with_nested_path() {
22962296
// Test move operation with nested source and target paths, creating parent directories
2297-
// Issue: https://github.com/rustworkshop/gitopolis/issues/157
2297+
// Issue: https://github.com/timabell/gitopolis/issues/157
22982298
let temp = temp_folder();
22992299
add_a_repo(&temp, "services/backend", "git://example.org/test_url");
23002300

@@ -2332,7 +2332,7 @@ url = \"git://example.org/test_url\"
23322332
#[test]
23332333
fn move_repo_preserves_tags() {
23342334
// Test that move preserves tags
2335-
// Issue: https://github.com/rustworkshop/gitopolis/issues/157
2335+
// Issue: https://github.com/timabell/gitopolis/issues/157
23362336
let temp = temp_folder();
23372337
add_a_repo_with_tags(
23382338
&temp,
@@ -2454,7 +2454,7 @@ url = \"git://example.org/test_url\"
24542454
#[test]
24552455
fn move_repo_not_found() {
24562456
// Test that move fails when repo doesn't exist
2457-
// Issue: https://github.com/rustworkshop/gitopolis/issues/157
2457+
// Issue: https://github.com/timabell/gitopolis/issues/157
24582458
let temp = temp_folder();
24592459
add_a_repo(&temp, "existing_repo", "git://example.org/test_url");
24602460

0 commit comments

Comments
 (0)