forked from cfgnunes/nautilus-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGit gc
executable file
·47 lines (35 loc) · 1.37 KB
/
Git gc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/usr/bin/env bash
# Source the script 'common-functions.sh'.
SCRIPT_DIR=$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" &>/dev/null && pwd)
ROOT_DIR=$(grep --only-matching "^.*scripts[^/]*" <<<"$SCRIPT_DIR")
source "$ROOT_DIR/common-functions.sh"
_main() {
local input_files=""
local output_dir=""
# Execute initial checks.
_check_dependencies "command=git"
_display_wait_box "2"
input_files=$(_get_files "par_type=directory; par_get_pwd=true")
# Execute the function '_main_task' for each file in parallel.
_run_task_parallel "$input_files" "$output_dir"
_display_result_box ""
}
_main_task() {
local input_file=$1
local output_dir=$2
local std_output=""
# Check if the current directory is a Git repository.
local top_level=""
top_level=$(git -C "$input_file" rev-parse --show-toplevel 2>&1)
_check_output "$?" "$top_level" "$input_file" "" || return 1
_directory_push "$top_level" || return 1
# Run the main process.
std_output=$(git reflog expire --expire=now --all 2>&1)
_check_output "$?" "$std_output" "$input_file" "" || return 1
# git gc: Cleanup unnecessary files and optimize the local repository.
# --prune: prune loose objects older than date.
std_output=$(git gc --prune=all 2>&1)
_check_output "$?" "$std_output" "$input_file" "" || return 1
_directory_pop || return 1
}
_main "$@"