Skip to content

Commit 3caed93

Browse files
committed
whitespace
1 parent 03a423a commit 3caed93

File tree

2 files changed

+22
-5
lines changed

2 files changed

+22
-5
lines changed

src/main.rs

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,18 @@ use anyhow::{Context, Result, anyhow, bail, ensure};
55
use clap::{Parser, Subcommand};
66
use colored::Colorize;
77
use git::{
8-
DEFAULT_REMOTE, GitBranchStatus, after_text, git_branch_status, git_checkout_main, git_fetch,
9-
git_get_upstream, git_remote_main, git_sha, is_ancestor, run_git_status, shas_match,
8+
DEFAULT_REMOTE,
9+
GitBranchStatus,
10+
after_text,
11+
git_branch_status,
12+
git_checkout_main,
13+
git_fetch,
14+
git_get_upstream,
15+
git_remote_main,
16+
git_sha,
17+
is_ancestor,
18+
run_git_status,
19+
shas_match,
1020
};
1121
use state::{Branch, RestackStep, StackMethod};
1222
use tracing::level_filters::LevelFilter;

src/state.rs

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
use std::{
22
cell::{Cell, Ref, RefCell},
33
collections::{BTreeMap, HashMap, VecDeque},
4-
default, fs,
4+
default,
5+
fs,
56
path::PathBuf,
67
process::Command,
78
rc::Rc,
@@ -13,8 +14,14 @@ use serde::{Deserialize, Serialize};
1314

1415
use crate::{
1516
git::{
16-
DEFAULT_REMOTE, GitTrunk, after_text, git_branch_exists, git_remote_main, git_sha,
17-
git_trunk, is_ancestor,
17+
DEFAULT_REMOTE,
18+
GitTrunk,
19+
after_text,
20+
git_branch_exists,
21+
git_remote_main,
22+
git_sha,
23+
git_trunk,
24+
is_ancestor,
1825
},
1926
run_git,
2027
};

0 commit comments

Comments
 (0)