blob: ce9b6fa215febaa9c358e1f0f604ed76736299af (
plain)
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
|
#!/bin/sh
home=$(echo $HOME | sed 's/\//\\\//g')
repos="$(grep -v '#' | sed "s/\~/$home/")" << REPOS
#~/.local/src/programs/blr
~/.local/src/programs/dmenu
~/.config
~/.local/bin
~/.local/src/programs/st
~/.local/src/programs/timmywm
REPOS
#echo "$repos" | cut -f1
# Colors
BOLD="\033[1m"
NORM="\033[0m"
CYN="\033[0;36m"
RED="\033[0;31m"
GRN="\033[0;32m"
MAG="\033[0;35m"
me() { echo $0 | sed 's/.*\///'; }
repocheck() { [ -z "$repos" ] && echo "No repos have been added!\nUse \"$(me) add\" or edit the script file to add a new repo!" && exit; }
reponame() { sed -n 's/^\s*url.*\/\(.*\)\.git/\1/p' $1/.git/config; }
rddiff() {
repocheck
for repo in $repos; do
name="$(reponame $repo)"
if cd $repo 2>/dev/null; then
if git diff --quiet HEAD $REF -- $DIR; then
echo "$GRN[Repo $name is unchanged!]$NORM"
else
echo "$CYN[Repo $name has changed:]$NORM"
git status | grep -v '(use'
read -p "Would you like to view the changes? [y/n]: " viewchange
case $viewchange in
y|yes|Y|Yes) git diff HEAD $REF -- $DIR ;;
esac
read -p "Would you like to push these changes? [y/n]: " pushchange
case $pushchange in
y|yes|Y|Yes)
while [ -z "$commitmsg" ]; do
read -p "Enter a commit message: " commitmsg
done
git add . && git commit -m "$commitmsg" && git push \
&& echo "$GRN[Changes to repo $name successfully pushed!]$NORM" \
|| echo "$RED[An error occured while pushing changes to repo $name!]$NORM"
;;
esac
fi
fi
done
}
drdiff() { echo impl; }
case $1 in
add) echo "add this in" ;;
*) rddiff ;;
esac
|