@@ -21,7 +21,7 @@ fn help() {
2121fn 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]
21212121fn 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]
21362136fn 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]
21762176fn 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]
22102210fn 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]
22522252fn 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]
22952295fn 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]
23332333fn 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]
24552455fn 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