Skip to content

Commit

Permalink
temporarily disable fetch
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisDavison committed Mar 28, 2024
1 parent 03a4214 commit 7391db6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ enum OptCommand {
/// Push commits
#[structopt(alias = "p")]
Push,
/// Fetch commits and tags
#[structopt(alias = "f")]
Fetch,
// /// Fetch commits and tags
// #[structopt(alias = "f")]
// Fetch,
/// Show short status
#[structopt(alias = "s")]
Stat,
Expand Down Expand Up @@ -91,7 +91,7 @@ fn main() {

let cmd = match opts.command {
OptCommand::Push => git::push,
OptCommand::Fetch => git::fetch,
// OptCommand::Fetch => git::fetch,
OptCommand::Stat => git::stat,
OptCommand::List => git::list,
OptCommand::Unclean => git::needs_attention,
Expand Down

0 comments on commit 7391db6

Please sign in to comment.