You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/cli.rs
+3-11Lines changed: 3 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -12,23 +12,15 @@ use crate::display::DisplayHarness;
12
12
constHELP:&str = "\
13
13
More information: https://github.com/nickgerace/gfold
14
14
15
-
Description:
16
-
This application helps you keep track of multiple Git repositories via CLI.
17
-
By default, it displays relevant information for all repos in the current
18
-
working directory.
15
+
Description: this application helps you keep track of multiple Git repositories via CLI. By default, it displays relevant information for all repos in the current working directory.
19
16
20
-
Config File Usage:
21
-
While CLI options are prioritized, default options will fallback to the
22
-
config file if it exists. Here are the config file lookup locations:
17
+
Config File Usage: while CLI options are prioritized, default options will fallback to the config file if it exists. Here are the config file lookup locations:
23
18
24
19
$XDG_CONFIG_HOME/gfold.toml
25
20
$XDG_CONFIG_HOME/gfold/config.toml
26
21
$HOME/.config/gfold.toml (or {{FOLDERID_Profile}}\\.config\\gfold.toml on Windows)
27
22
28
-
Troubleshooting:
29
-
Investigate unexpected behavior by prepending execution with
30
-
\"RUST_BACKTRACE=1\"and \"RUST_LOG=debug\". You can adjust those variable's
31
-
values to aid investigation.";
23
+
Troubleshooting: investigate unexpected behavior by prepending execution with \"RUST_BACKTRACE=1\"and \"RUST_LOG=debug\". You can adjust those variable's values to aid investigation.";
32
24
33
25
#[derive(Parser)]
34
26
#[command(version, about = HELP, long_about = None)]
0 commit comments