From 102b0b31fba1471cae2e4f3c66cf14393ed3859d Mon Sep 17 00:00:00 2001 From: Stephan Dilly Date: Mon, 1 Mar 2021 09:51:15 +0100 Subject: [PATCH] file rename --- src/components/mod.rs | 4 ++-- src/components/{fetch.rs => pull.rs} | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename src/components/{fetch.rs => pull.rs} (100%) diff --git a/src/components/mod.rs b/src/components/mod.rs index 3a001ca8..3408103c 100644 --- a/src/components/mod.rs +++ b/src/components/mod.rs @@ -8,11 +8,11 @@ mod create_branch; mod cred; mod diff; mod externaleditor; -mod fetch; mod filetree; mod help; mod inspect_commit; mod msg; +mod pull; mod push; mod rename_branch; mod reset; @@ -30,11 +30,11 @@ pub use commitlist::CommitList; pub use create_branch::CreateBranchComponent; pub use diff::DiffComponent; pub use externaleditor::ExternalEditorComponent; -pub use fetch::PullComponent; pub use filetree::FileTreeComponent; pub use help::HelpComponent; pub use inspect_commit::InspectCommitComponent; pub use msg::MsgComponent; +pub use pull::PullComponent; pub use push::PushComponent; pub use rename_branch::RenameBranchComponent; pub use reset::ResetComponent; diff --git a/src/components/fetch.rs b/src/components/pull.rs similarity index 100% rename from src/components/fetch.rs rename to src/components/pull.rs