mirror of
https://github.com/RGBCube/nu_scripts
synced 2025-08-01 06:37:46 +00:00
update some scripts from dash to underscore, add 20k_club script (#271)
This commit is contained in:
parent
9ae962ce41
commit
ea7de87315
4 changed files with 206 additions and 106 deletions
|
@ -260,8 +260,8 @@ export extern "cargo run" [
|
|||
|
||||
# Run the tests
|
||||
export extern "cargo test" [
|
||||
test-arg-seperator?: string
|
||||
...args?: any # Arguments to be passed to the tests
|
||||
test_arg_seperator?: string
|
||||
...args: any # Arguments to be passed to the tests
|
||||
--no-run # Compile, but don't run tests
|
||||
--no-fail-fast # Run all tests regardless of failure
|
||||
--package(-p): string@"nu-complete cargo packages" # Test only the specified packages
|
||||
|
@ -304,8 +304,8 @@ export extern "cargo test" [
|
|||
|
||||
# Execute benchmarks of a package
|
||||
export extern "cargo bench" [
|
||||
bench-option-seperator?: string
|
||||
...options?: any # Options to be passed to the benchmarks
|
||||
bench_option_seperator?: string
|
||||
# ...options?: any # Options to be passed to the benchmarks
|
||||
--no-run # Compile, but don't run benchmarks
|
||||
--no-fail-fast # Run all benchmarks regardless of failure
|
||||
--package(-p): string@"nu-complete cargo packages" # Benchmark only the specified packages
|
||||
|
@ -397,7 +397,7 @@ export extern "cargo publish" [
|
|||
--locked # Require Cargo.lock is up to date
|
||||
--offline # Run without accessing the network
|
||||
--help(-h) # Prints help information
|
||||
-Z: any # Unstable (nightly-only) flags to Cargo, see 'cargo -Z help' for details
|
||||
-Z: any # Unstable (nightly-only) flags to Cargo, see 'cargo -Z help' for details
|
||||
--jobs(-j): number # Number of parallel jobs to run
|
||||
--keep-going # Build as many crates in the dependency graph as possible
|
||||
]
|
||||
|
|
|
@ -26,9 +26,9 @@ export extern "winget install" [
|
|||
--override: string, # Override arguments to be passed on to the installer
|
||||
--location(-l): path, # Location to install to (if supported)
|
||||
--force: bool, # Override the installer hash check
|
||||
--accept-package-agreements: bool, # Accept all licence agreements for packages
|
||||
--accept_package_agreements: bool, # Accept all licence agreements for packages
|
||||
--header: string, # Optional Windows-Package-Manager REST source HTTP header
|
||||
--accept-source-agreements: bool, # Accept all source agreements during source operations
|
||||
--accept_source_agreements: bool, # Accept all source agreements during source operations
|
||||
--help(-?): bool # Display the help for this command
|
||||
]
|
||||
|
||||
|
@ -49,9 +49,9 @@ def "winget show" [
|
|||
--override: string, # Override arguments to be passed on to the installer
|
||||
--location(-l): path, # Location to install to (if supported)
|
||||
--force: bool, # Override the installer hash check
|
||||
--accept-package-agreements: bool, # Accept all licence agreements for packages
|
||||
--accept_package_agreements: bool, # Accept all licence agreements for packages
|
||||
--header: string, # Optional Windows-Package-Manager REST source HTTP header
|
||||
--accept-source-agreements: bool, # Accept all source agreements during source operations
|
||||
--accept_source_agreements: bool, # Accept all source agreements during source operations
|
||||
--raw: bool, # Output the raw CLI output instead of structured data
|
||||
--help(-?): bool, # Display the help for this command
|
||||
] {
|
||||
|
@ -109,7 +109,7 @@ export extern "winget source add" [
|
|||
--arg(-a): string, # Argument given to the source
|
||||
--type(-t): string@"nu-complete winget source type", # Type of the source
|
||||
--header: string, # Optional Windows-Package-Manager REST source HTTP header
|
||||
--accept-source-agreements: bool, # Accept all source agreements during source operations
|
||||
--accept_source_agreements: bool, # Accept all source agreements during source operations
|
||||
--help(-?): bool # Display the help for this command
|
||||
]
|
||||
|
||||
|
@ -179,7 +179,7 @@ def "winget search" [
|
|||
--count(-n): int, # Show no more than specified number of results
|
||||
--exact(-e): bool, # Find package using exact match
|
||||
--header: string, # Optional Windows-Package-Manager REST source HTTP header
|
||||
--accept-source-agreements: bool, # Accept all source agreements during source operations
|
||||
--accept_source_agreements: bool, # Accept all source agreements during source operations
|
||||
--raw: bool, # Output the raw CLI output instead of structured data
|
||||
--help(-?): bool # Display the help for this command
|
||||
] {
|
||||
|
@ -227,7 +227,7 @@ def "winget list" [
|
|||
--count(-n): int, # Show no more than specified number of results
|
||||
--exact(-e): bool, # Find package using exact match
|
||||
--header: string, # Optional Windows-Package-Manager REST source HTTP header
|
||||
--accept-source-agreements: bool, # Accept all source agreements during source operations
|
||||
--accept_source_agreements: bool, # Accept all source agreements during source operations
|
||||
--raw: bool, # Output the raw CLI output instead of structured data
|
||||
--help(-?): bool # Display the help for this command
|
||||
] {
|
||||
|
@ -279,9 +279,9 @@ export extern "winget upgrade" [
|
|||
--override: string, # Override arguments to be passed on to the installer
|
||||
--location(-l): path, # Location to install to (if supported)
|
||||
--force: bool, # Override the installer hash check
|
||||
--accept-package-agreements: bool, # Accept all licence agreements for packages
|
||||
--accept_package_agreements: bool, # Accept all licence agreements for packages
|
||||
--header: string, # Optional Windows-Package-Manager REST source HTTP header
|
||||
--accept-source-agreements: bool, # Accept all source agreements during source operations
|
||||
--accept_source_agreements: bool, # Accept all source agreements during source operations
|
||||
--all: bool, # Update all installed packages to latest if available
|
||||
--help(-?): bool # Display the help for this command
|
||||
]
|
||||
|
@ -336,7 +336,7 @@ export extern "winget export" [
|
|||
--output(-o): path, # File where the result is to be written
|
||||
--source(-s): string@"nu-complete winget install source", # Export packages from the specified source
|
||||
--include-versions: bool, # Include package versions in produced file
|
||||
--accept-source-agreements: bool, # Accept all source agreements during source operations
|
||||
--accept_source_agreements: bool, # Accept all source agreements during source operations
|
||||
--help(-?): bool # Display the help for this command
|
||||
]
|
||||
|
||||
|
@ -345,8 +345,8 @@ export extern "winget import" [
|
|||
--import-file(-i): path, # File describing the packages to install
|
||||
--ignore-unavailable: bool, # Ignore unavailable packages
|
||||
--ignore-versions: bool, # Ignore package versions
|
||||
--accept-package-agreements: bool, # Accept all licence agreements for packages
|
||||
--accept-source-agreements: bool # Accept all source agreements during source operations
|
||||
--accept_package_agreements: bool, # Accept all licence agreements for packages
|
||||
--accept_source_agreements: bool # Accept all source agreements during source operations
|
||||
]
|
||||
|
||||
def "nu-complete winget install locale" [] {
|
||||
|
|
100
make_release/20k_club.nu
Normal file
100
make_release/20k_club.nu
Normal file
|
@ -0,0 +1,100 @@
|
|||
# Readme
|
||||
# a .mailmap file needs to be in the root of each repo to aggregate users with multiple email addresses
|
||||
# we could add users if we need to map multiple email addresses to a single user
|
||||
# and commit the mailmap file to the repo if we wanted to. Format of the mailmap file is at the
|
||||
# end of the script.
|
||||
#
|
||||
# 1. git clone every repo in the list
|
||||
# 2. setup repos_root_folder to match your system
|
||||
# 3. setup the proper slash by system (TODO make the slash system agnostic)
|
||||
# 4. setup the output folder to the path you want it in
|
||||
|
||||
# Generate PR Counts for the XX Clubs.
|
||||
# example usage: get_pr_counts true
|
||||
# If true is provided as an argument, the script will also generate CSV files for each
|
||||
# repo with one line per commit, username, email, date in order for you to figure out
|
||||
# if you need to update the mailmap file so you can merge mutliple users into one.
|
||||
# If false is provided as an argument, the script will summarize the PR counts and
|
||||
# display a table with the top 50 rows.
|
||||
# Whether you run in debug_csv mode or not, the output is written to csv files in the
|
||||
# $repos_root_folder/20k folder
|
||||
def get_pr_counts [debug_csv: bool] {
|
||||
# let repos_root_folder = 'c:\users\dschroeder\source\repos\forks'
|
||||
let repos_root_folder = '/Users/fdncred/src/forks'
|
||||
let repos = [[name, folder];
|
||||
[nushell, $'($repos_root_folder)(char psep)nushell'],
|
||||
[reedline, $'($repos_root_folder)(char psep)reedline'],
|
||||
[scripts, $'($repos_root_folder)(char psep)nu_scripts'],
|
||||
[vscode, $'($repos_root_folder)(char psep)vscode-nushell-lang'],
|
||||
[nana, $'($repos_root_folder)(char psep)nana'],
|
||||
[docs, $'($repos_root_folder)(char psep)nushell.github.io']
|
||||
]
|
||||
|
||||
let output_folder = $'($repos_root_folder)(char psep)20k'
|
||||
if not ($output_folder | path exists) {
|
||||
mkdir $output_folder
|
||||
}
|
||||
|
||||
$repos | each {|repo|
|
||||
let repo_name = $repo.name
|
||||
let repo_folder = $repo.folder
|
||||
|
||||
let output_file = $'($output_folder)(char psep)($repo_name).csv'
|
||||
print $"Working on ($repo_name). Saving to ($output_file)."
|
||||
|
||||
cd $repo.folder
|
||||
|
||||
if $debug_csv {
|
||||
# This outputs commit, name, email, date for use for adding info to mailmap file
|
||||
git log --pretty=%h»¦«%aN»¦«%aE»¦«%aD |
|
||||
lines |
|
||||
split column "»¦«" commit name email date |
|
||||
upsert date {|d| $d.date | into datetime} |
|
||||
to csv |
|
||||
save ($output_file)
|
||||
} else {
|
||||
git log --pretty=%h»¦«%aN»¦«%aE»¦«%aD |
|
||||
lines |
|
||||
split column "»¦«" commit name email date |
|
||||
upsert date {|d| $d.date | into datetime} |
|
||||
group-by name |
|
||||
transpose |
|
||||
upsert column1 {|c| $c.column1 | length} |
|
||||
sort-by column1 |
|
||||
rename name commits |
|
||||
reverse |
|
||||
to csv |
|
||||
save ($output_file)
|
||||
}
|
||||
}
|
||||
|
||||
cd $output_folder
|
||||
|
||||
if not $debug_csv {
|
||||
let data = (open docs.csv |
|
||||
append (open nana.csv) |
|
||||
append (open nushell.csv) |
|
||||
append (open reedline.csv) |
|
||||
append (open scripts.csv) |
|
||||
append (open vscode.csv)
|
||||
)
|
||||
|
||||
let data_dfr = ($data | into df)
|
||||
$data_dfr |
|
||||
group-by name |
|
||||
agg [(col commits | sum | as "all_commits")] |
|
||||
collect |
|
||||
sort-by all_commits |
|
||||
reverse |
|
||||
into nu |
|
||||
first 50
|
||||
}
|
||||
}
|
||||
|
||||
# .mailmap file
|
||||
# format
|
||||
# new_name <new_email> old_name <old_email>
|
||||
# name <email_we_now_want_to_use> some old name <old email address1>
|
||||
# name <email_we_now_want_to_use> some old name <old email address2>
|
||||
# name <email_we_now_want_to_use> some old name <old email address3>
|
||||
# name <email_we_now_want_to_use> some old name <old email address4>
|
|
@ -21,34 +21,34 @@ module panache-plumbing {
|
|||
|
||||
# Get the current directory with home abbreviated
|
||||
export def "panache-git dir" [] {
|
||||
let current-dir = ($env.PWD)
|
||||
let current_dir = ($env.PWD)
|
||||
|
||||
let current-dir-relative-to-home = (
|
||||
do --ignore-errors { $current-dir | path relative-to $nu.home-path } | str collect
|
||||
let current_dir_relative_to_home = (
|
||||
do --ignore-errors { $current_dir | path relative-to $nu.home-path } | str collect
|
||||
)
|
||||
|
||||
let in-sub-dir-of-home = ($current-dir-relative-to-home | empty? | nope)
|
||||
let in_sub_dir_of_home = ($current_dir_relative_to_home | empty? | nope)
|
||||
|
||||
let current-dir-abbreviated = (if $in-sub-dir-of-home {
|
||||
$'~(char separator)($current-dir-relative-to-home)'
|
||||
let current_dir_abbreviated = (if $in_sub_dir_of_home {
|
||||
$'~(char separator)($current_dir_relative_to_home)'
|
||||
} else {
|
||||
$current-dir
|
||||
$current_dir
|
||||
})
|
||||
|
||||
$'(ansi reset)($current-dir-abbreviated)'
|
||||
$'(ansi reset)($current_dir_abbreviated)'
|
||||
}
|
||||
|
||||
# Get repository status as structured data
|
||||
export def "panache-git structured" [] {
|
||||
let in-git-repo = (do --ignore-errors { git rev-parse --abbrev-ref HEAD } | empty? | nope)
|
||||
let in_git_repo = (do --ignore-errors { git rev-parse --abbrev-ref HEAD } | empty? | nope)
|
||||
|
||||
let status = (if $in-git-repo {
|
||||
let status = (if $in_git_repo {
|
||||
git --no-optional-locks status --porcelain=2 --branch | lines
|
||||
} else {
|
||||
[]
|
||||
})
|
||||
|
||||
let on-named-branch = (if $in-git-repo {
|
||||
let on_named_branch = (if $in_git_repo {
|
||||
$status
|
||||
| where ($it | str starts-with '# branch.head')
|
||||
| first
|
||||
|
@ -58,7 +58,7 @@ module panache-plumbing {
|
|||
false
|
||||
})
|
||||
|
||||
let branch-name = (if $on-named-branch {
|
||||
let branch_name = (if $on_named_branch {
|
||||
$status
|
||||
| where ($it | str starts-with '# branch.head')
|
||||
| split column ' ' col1 col2 branch
|
||||
|
@ -68,7 +68,7 @@ module panache-plumbing {
|
|||
''
|
||||
})
|
||||
|
||||
let commit-hash = (if $in-git-repo {
|
||||
let commit_hash = (if $in_git_repo {
|
||||
$status
|
||||
| where ($it | str starts-with '# branch.oid')
|
||||
| split column ' ' col1 col2 full_hash
|
||||
|
@ -79,7 +79,7 @@ module panache-plumbing {
|
|||
''
|
||||
})
|
||||
|
||||
let tracking-upstream-branch = (if $in-git-repo {
|
||||
let tracking_upstream_branch = (if $in_git_repo {
|
||||
$status
|
||||
| where ($it | str starts-with '# branch.upstream')
|
||||
| str collect
|
||||
|
@ -89,7 +89,7 @@ module panache-plumbing {
|
|||
false
|
||||
})
|
||||
|
||||
let upstream-exists-on-remote = (if $in-git-repo {
|
||||
let upstream_exists_on_remote = (if $in_git_repo {
|
||||
$status
|
||||
| where ($it | str starts-with '# branch.ab')
|
||||
| str collect
|
||||
|
@ -99,7 +99,7 @@ module panache-plumbing {
|
|||
false
|
||||
})
|
||||
|
||||
let ahead-behind-table = (if $upstream-exists-on-remote {
|
||||
let ahead_behind_table = (if $upstream_exists_on_remote {
|
||||
$status
|
||||
| where ($it | str starts-with '# branch.ab')
|
||||
| split column ' ' col1 col2 ahead behind
|
||||
|
@ -107,8 +107,8 @@ module panache-plumbing {
|
|||
[[]]
|
||||
})
|
||||
|
||||
let commits-ahead = (if $upstream-exists-on-remote {
|
||||
$ahead-behind-table
|
||||
let commits_ahead = (if $upstream_exists_on_remote {
|
||||
$ahead_behind_table
|
||||
| get ahead
|
||||
| first
|
||||
| into int
|
||||
|
@ -116,8 +116,8 @@ module panache-plumbing {
|
|||
0
|
||||
})
|
||||
|
||||
let commits-behind = (if $upstream-exists-on-remote {
|
||||
$ahead-behind-table
|
||||
let commits_behind = (if $upstream_exists_on_remote {
|
||||
$ahead_behind_table
|
||||
| get behind
|
||||
| first
|
||||
| into int
|
||||
|
@ -126,7 +126,7 @@ module panache-plumbing {
|
|||
0
|
||||
})
|
||||
|
||||
let has-staging-or-worktree-changes = (if $in-git-repo {
|
||||
let has_staging_or_worktree_changes = (if $in_git_repo {
|
||||
$status
|
||||
| where ($it | str starts-with '1') || ($it | str starts-with '2')
|
||||
| str collect
|
||||
|
@ -136,7 +136,7 @@ module panache-plumbing {
|
|||
false
|
||||
})
|
||||
|
||||
let has-untracked-files = (if $in-git-repo {
|
||||
let has_untracked_files = (if $in_git_repo {
|
||||
$status
|
||||
| where ($it | str starts-with '?')
|
||||
| str collect
|
||||
|
@ -146,7 +146,7 @@ module panache-plumbing {
|
|||
false
|
||||
})
|
||||
|
||||
let has-unresolved-merge-conflicts = (if $in-git-repo {
|
||||
let has_unresolved_merge_conflicts = (if $in_git_repo {
|
||||
$status
|
||||
| where ($it | str starts-with 'u')
|
||||
| str collect
|
||||
|
@ -156,7 +156,7 @@ module panache-plumbing {
|
|||
false
|
||||
})
|
||||
|
||||
let staging-worktree-table = (if $has-staging-or-worktree-changes {
|
||||
let staging_worktree_table = (if $has_staging_or_worktree_changes {
|
||||
$status
|
||||
| where ($it | str starts-with '1') || ($it | str starts-with '2')
|
||||
| split column ' '
|
||||
|
@ -166,31 +166,31 @@ module panache-plumbing {
|
|||
[[]]
|
||||
})
|
||||
|
||||
let staging-added-count = (if $has-staging-or-worktree-changes {
|
||||
$staging-worktree-table
|
||||
let staging_added_count = (if $has_staging_or_worktree_changes {
|
||||
$staging_worktree_table
|
||||
| where staging == 'A'
|
||||
| length
|
||||
} else {
|
||||
0
|
||||
})
|
||||
|
||||
let staging-modified-count = (if $has-staging-or-worktree-changes {
|
||||
$staging-worktree-table
|
||||
let staging_modified_count = (if $has_staging_or_worktree_changes {
|
||||
$staging_worktree_table
|
||||
| where staging in ['M', 'R']
|
||||
| length
|
||||
} else {
|
||||
0
|
||||
})
|
||||
|
||||
let staging-deleted-count = (if $has-staging-or-worktree-changes {
|
||||
$staging-worktree-table
|
||||
let staging_deleted_count = (if $has_staging_or_worktree_changes {
|
||||
$staging_worktree_table
|
||||
| where staging == 'D'
|
||||
| length
|
||||
} else {
|
||||
0
|
||||
})
|
||||
|
||||
let untracked-count = (if $has-untracked-files {
|
||||
let untracked_count = (if $has_untracked_files {
|
||||
$status
|
||||
| where ($it | str starts-with '?')
|
||||
| length
|
||||
|
@ -198,23 +198,23 @@ module panache-plumbing {
|
|||
0
|
||||
})
|
||||
|
||||
let worktree-modified-count = (if $has-staging-or-worktree-changes {
|
||||
$staging-worktree-table
|
||||
let worktree_modified_count = (if $has_staging_or_worktree_changes {
|
||||
$staging_worktree_table
|
||||
| where worktree in ['M', 'R']
|
||||
| length
|
||||
} else {
|
||||
0
|
||||
})
|
||||
|
||||
let worktree-deleted-count = (if $has-staging-or-worktree-changes {
|
||||
$staging-worktree-table
|
||||
let worktree_deleted_count = (if $has_staging_or_worktree_changes {
|
||||
$staging_worktree_table
|
||||
| where worktree == 'D'
|
||||
| length
|
||||
} else {
|
||||
0
|
||||
})
|
||||
|
||||
let merge-conflict-count = (if $has-unresolved-merge-conflicts {
|
||||
let merge_conflict_count = (if $has_unresolved_merge_conflicts {
|
||||
$status
|
||||
| where ($it | str starts-with 'u')
|
||||
| length
|
||||
|
@ -223,21 +223,21 @@ module panache-plumbing {
|
|||
})
|
||||
|
||||
{
|
||||
in_git_repo: $in-git-repo,
|
||||
on_named_branch: $on-named-branch,
|
||||
branch_name: $branch-name,
|
||||
commit_hash: $commit-hash,
|
||||
tracking_upstream_branch: $tracking-upstream-branch,
|
||||
upstream_exists_on_remote: $upstream-exists-on-remote,
|
||||
commits_ahead: $commits-ahead,
|
||||
commits_behind: $commits-behind,
|
||||
staging_added_count: $staging-added-count,
|
||||
staging_modified_count: $staging-modified-count,
|
||||
staging_deleted_count: $staging-deleted-count,
|
||||
untracked_count: $untracked-count,
|
||||
worktree_modified_count: $worktree-modified-count,
|
||||
worktree_deleted_count: $worktree-deleted-count,
|
||||
merge_conflict_count: $merge-conflict-count
|
||||
in_git_repo: $in_git_repo,
|
||||
on_named_branch: $on_named_branch,
|
||||
branch_name: $branch_name,
|
||||
commit_hash: $commit_hash,
|
||||
tracking_upstream_branch: $tracking_upstream_branch,
|
||||
upstream_exists_on_remote: $upstream_exists_on_remote,
|
||||
commits_ahead: $commits_ahead,
|
||||
commits_behind: $commits_behind,
|
||||
staging_added_count: $staging_added_count,
|
||||
staging_modified_count: $staging_modified_count,
|
||||
staging_deleted_count: $staging_deleted_count,
|
||||
untracked_count: $untracked_count,
|
||||
worktree_modified_count: $worktree_modified_count,
|
||||
worktree_deleted_count: $worktree_deleted_count,
|
||||
merge_conflict_count: $merge_conflict_count
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -245,38 +245,38 @@ module panache-plumbing {
|
|||
export def "panache-git styled" [] {
|
||||
let status = (panache-git structured)
|
||||
|
||||
let is-local-only = ($status.tracking_upstream_branch != true)
|
||||
let is_local_only = ($status.tracking_upstream_branch != true)
|
||||
|
||||
let upstream-deleted = (
|
||||
let upstream_deleted = (
|
||||
$status.tracking_upstream_branch &&
|
||||
$status.upstream_exists_on_remote != true
|
||||
)
|
||||
|
||||
let is-up-to-date = (
|
||||
let is_up_to_date = (
|
||||
$status.upstream_exists_on_remote &&
|
||||
$status.commits_ahead == 0 &&
|
||||
$status.commits_behind == 0
|
||||
)
|
||||
|
||||
let is-ahead = (
|
||||
let is_ahead = (
|
||||
$status.upstream_exists_on_remote &&
|
||||
$status.commits_ahead > 0 &&
|
||||
$status.commits_behind == 0
|
||||
)
|
||||
|
||||
let is-behind = (
|
||||
let is_behind = (
|
||||
$status.upstream_exists_on_remote &&
|
||||
$status.commits_ahead == 0 &&
|
||||
$status.commits_behind > 0
|
||||
)
|
||||
|
||||
let is-ahead-and-behind = (
|
||||
let is_ahead_and_behind = (
|
||||
$status.upstream_exists_on_remote &&
|
||||
$status.commits_ahead > 0 &&
|
||||
$status.commits_behind > 0
|
||||
)
|
||||
|
||||
let branch-name = (if $status.in_git_repo {
|
||||
let branch_name = (if $status.in_git_repo {
|
||||
(if $status.on_named_branch {
|
||||
$status.branch_name
|
||||
} else {
|
||||
|
@ -286,73 +286,73 @@ module panache-plumbing {
|
|||
''
|
||||
})
|
||||
|
||||
let branch-styled = (if $status.in_git_repo {
|
||||
(if $is-local-only {
|
||||
(branch-local-only $branch-name)
|
||||
} else if $is-up-to-date {
|
||||
(branch-up-to-date $branch-name)
|
||||
} else if $is-ahead {
|
||||
(branch-ahead $branch-name $status.commits_ahead)
|
||||
} else if $is-behind {
|
||||
(branch-behind $branch-name $status.commits_behind)
|
||||
} else if $is-ahead-and-behind {
|
||||
(branch-ahead-and-behind $branch-name $status.commits_ahead $status.commits_behind)
|
||||
} else if $upstream-deleted {
|
||||
(branch-upstream-deleted $branch-name)
|
||||
let branch_styled = (if $status.in_git_repo {
|
||||
(if $is_local_only {
|
||||
(branch-local-only $branch_name)
|
||||
} else if $is_up_to_date {
|
||||
(branch-up-to-date $branch_name)
|
||||
} else if $is_ahead {
|
||||
(branch-ahead $branch_name $status.commits_ahead)
|
||||
} else if $is_behind {
|
||||
(branch-behind $branch_name $status.commits_behind)
|
||||
} else if $is_ahead_and_behind {
|
||||
(branch-ahead-and-behind $branch_name $status.commits_ahead $status.commits_behind)
|
||||
} else if $upstream_deleted {
|
||||
(branch-upstream-deleted $branch_name)
|
||||
} else {
|
||||
$branch-name
|
||||
$branch_name
|
||||
})
|
||||
} else {
|
||||
''
|
||||
})
|
||||
|
||||
let has-staging-changes = (
|
||||
let has_staging_changes = (
|
||||
$status.staging_added_count > 0 ||
|
||||
$status.staging_modified_count > 0 ||
|
||||
$status.staging_deleted_count > 0
|
||||
)
|
||||
|
||||
let has-worktree-changes = (
|
||||
let has_worktree_changes = (
|
||||
$status.untracked_count > 0 ||
|
||||
$status.worktree_modified_count > 0 ||
|
||||
$status.worktree_deleted_count > 0 ||
|
||||
$status.merge_conflict_count > 0
|
||||
)
|
||||
|
||||
let has-merge-conflicts = $status.merge_conflict_count > 0
|
||||
let has_merge_conflicts = $status.merge_conflict_count > 0
|
||||
|
||||
let staging-summary = (if $has-staging-changes {
|
||||
let staging_summary = (if $has_staging_changes {
|
||||
(staging-changes $status.staging_added_count $status.staging_modified_count $status.staging_deleted_count)
|
||||
} else {
|
||||
''
|
||||
})
|
||||
|
||||
let worktree-summary = (if $has-worktree-changes {
|
||||
let worktree_summary = (if $has_worktree_changes {
|
||||
(worktree-changes $status.untracked_count $status.worktree_modified_count $status.worktree_deleted_count)
|
||||
} else {
|
||||
''
|
||||
})
|
||||
|
||||
let merge-conflict-summary = (if $has-merge-conflicts {
|
||||
let merge_conflict_summary = (if $has_merge_conflicts {
|
||||
(unresolved-conflicts $status.merge_conflict_count)
|
||||
} else {
|
||||
''
|
||||
})
|
||||
|
||||
let delimiter = (if ($has-staging-changes && $has-worktree-changes) {
|
||||
let delimiter = (if ($has_staging_changes && $has_worktree_changes) {
|
||||
('|' | bright-yellow)
|
||||
} else {
|
||||
''
|
||||
})
|
||||
|
||||
let local-summary = (
|
||||
$'($staging-summary) ($delimiter) ($worktree-summary) ($merge-conflict-summary)' | str trim
|
||||
let local_summary = (
|
||||
$'($staging_summary) ($delimiter) ($worktree_summary) ($merge_conflict_summary)' | str trim
|
||||
)
|
||||
|
||||
let local-indicator = (if $status.in_git_repo {
|
||||
(if $has-worktree-changes {
|
||||
let local_indicator = (if $status.in_git_repo {
|
||||
(if $has_worktree_changes {
|
||||
('!' | red)
|
||||
} else if $has-staging-changes {
|
||||
} else if $has_staging_changes {
|
||||
('~' | bright-cyan)
|
||||
} else {
|
||||
''
|
||||
|
@ -361,15 +361,15 @@ module panache-plumbing {
|
|||
''
|
||||
})
|
||||
|
||||
let repo-summary = (
|
||||
$'($branch-styled) ($local-summary) ($local-indicator)' | str trim
|
||||
let repo_summary = (
|
||||
$'($branch_styled) ($local_summary) ($local_indicator)' | str trim
|
||||
)
|
||||
|
||||
let left-bracket = ('[' | bright-yellow)
|
||||
let right-bracket = (']' | bright-yellow)
|
||||
let left_bracket = ('[' | bright-yellow)
|
||||
let right_bracket = (']' | bright-yellow)
|
||||
|
||||
(if $status.in_git_repo {
|
||||
$'($left-bracket)($repo-summary)($right-bracket)'
|
||||
$'($left_bracket)($repo_summary)($right_bracket)'
|
||||
} else {
|
||||
''
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue