-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfresh.sh
128 lines (103 loc) · 2.57 KB
/
fresh.sh
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
#
# Copyright (c) Sebastian Kucharczyk <kuchen@kekse.biz>
# https://kekse.biz/ https://github.com/kekse1/utilities/
# v0.4.6
#
# Tiny helper (copy it to '/etc/profile.d/fresh.sh'),
# since it is *not* executable (but `source` or `.`).
#
# You should see what the `fresh` function does.
#
# The `keep` will create new (empty) '.keep' files if
# not already existing; it'll traverse recursively
# through all directories below your `pwd` (and it'll
# ignore all hidden (dot) directories (like '.git')!
#
_GIT_DATE_FORMAT='%s'
_GIT_DATE_FORMAT_EXT='%s%N'
_GIT_DATE_SYMBOL='+'
fresh()
{
local _dir="`git rev-parse --git-dir 2>/dev/null`"
if [[ $? -ne 0 ]]; then
echo " >> Not inside a git repository!" >&2
return 1
else
_dir="$(realpath "$_dir")"
_dir="${_dir::-5}"
fi
local _add=0
[[ $# -gt 0 ]] && _add=1
local _orig="`pwd`"
cd "$_dir"
local _txt=
if [[ $_add -eq 0 ]]; then
echo -e " >> Only fetching latest repository state."
echo -e " >> To also upload your changes, argue with a commit message (\`$_GIT_DATE_SYMBOL\` for a \`date\`)."
else
_txt="$*"
if [[ "${_txt::1}" == "$_GIT_DATE_SYMBOL" ]]; then
_txt="`date +"$_GIT_DATE_FORMAT_EXT"` ${_txt:1}"
else
_txt="`date +"$_GIT_DATE_FORMAT"`"
_txt="[$_txt] $*"
fi
echo -e " >> Repository path:\n \e[1m${_dir}\e[0m"
echo -e " >> Applying commit:\n \e[1m${_txt}\e[0m\n"
fi
git pull
if [[ $_add -ne 0 ]]; then
git add --all
git commit -m "$_txt"
git push
fi
cd "$_orig"
}
keep()
{
local _created=0
local _existed=0
local _erroneous=0
local _depth=0
traverse()
{
cd "$1"
if [[ $? -eq 0 ]]; then
[[ $2 -gt $_depth ]] && _depth=$2
else
let _erroneous=$_erroneous+1
return 1
fi
if [[ -e "$1/.keep" ]]; then
let _existed=$_existed+1
else
touch "$1/.keep"
if [[ $? -eq 0 ]]; then
let _created=$_created+1
else
let _erroneous=$_erroneous+1
fi
fi
local p; for i in *; do
p="$1/$i"
if [[ -L "$p" ]]; then
continue
elif [[ -d "$p" ]]; then
traverse "$p" $(($2+1))
fi
done
}
local _orig="`pwd`"
traverse "$_orig" 1
if [[ $_created -gt 0 ]]; then
echo -e " >> Created \e[1m${_created}\e[0m \e[4m.keep\e[0m files."
else
echo -e " >> \e[1mNO\e[0m \e[4m.keep\e[0m files created."
fi
[[ $_existed -gt 0 ]] && echo -e " >> \e[1m${_existed}\e[0m files already existed."
[[ $_erroneous -ne 0 ]] && echo -e " >> FAILED to create \e[1m${_erroneous}\e[0m files!" >&2
[[ $_depth -gt 1 ]] && echo -e " >> Traversed recursively up to a maximum depth of \e[1m${_depth}\e[0m."
cd "$_orig"
[[ $_erroneous -ne 0 ]] && return 1
return 0
}