summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornickelc <constantin.nickel@gmail.com>2023-03-09 12:03:51 +0100
committerGitHub <noreply@github.com>2023-03-09 06:03:51 -0500
commitcf683c8c6d1c00e0be9f1abafcbd3f45900f1123 (patch)
treed2f0ae5cad60c2b1fb03fe153ef2f43afd66458e
parent6a37445efbe49bbcaff9b90ebdbf3d738b59badd (diff)
Rename `git_config_entry` module to `remote` (#1337)
The `GitConfigEntry` enum has been removed from the module and now only contains the `GitRemoteRepo` type.
-rw-r--r--src/git_config/mod.rs4
-rw-r--r--src/git_config/remote.rs (renamed from src/git_config/git_config_entry.rs)0
2 files changed, 2 insertions, 2 deletions
diff --git a/src/git_config/mod.rs b/src/git_config/mod.rs
index 971acfec..5a130112 100644
--- a/src/git_config/mod.rs
+++ b/src/git_config/mod.rs
@@ -1,6 +1,6 @@
-mod git_config_entry;
+mod remote;
-pub use git_config_entry::GitRemoteRepo;
+pub use remote::GitRemoteRepo;
use crate::env::DeltaEnv;
use regex::Regex;
diff --git a/src/git_config/git_config_entry.rs b/src/git_config/remote.rs
index a50d8649..a50d8649 100644
--- a/src/git_config/git_config_entry.rs
+++ b/src/git_config/remote.rs