-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprojectUpdate
executable file
·134 lines (117 loc) · 3.45 KB
/
projectUpdate
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
128
129
130
131
132
133
134
#!/bin/bash
#
# projectUpdate
#
# Version: 2.0.2
#
# Copyright 2014 - 2015 Claudio Giordano <[email protected]>
#
# Homepage https://github.com/clagiordano/gitScripts.git
# Homepage https://[email protected]/clagiordano/gitscripts.git
# License GPLv3 https://www.gnu.org/licenses/gpl.html
clear;
IFS='
';
CURDIR=$(pwd);
BASEDIR="";
#GIT_REMOTES="";
#GIT_COMMANDS="git fetch --all; git pull --all; git push --all origin; git push --all backup";
#. read_ini.sh
function error()
{
echo -e "[ \033[1;31mKO\033[0m ]: $1";
}
function success()
{
echo -e "[ \033[1;32mOK\033[0m ]: $1";
}
function skip()
{
echo -e "[\033[1;33mSKIP\033[0m]: $1";
}
function debug()
{
#if [ ${DEBUG_MODE} == "true" ]
#then
#echo -e "[\033[0;35mDEBUG\033[0m ]: \033[0;35m$1\033[0m" 1>&2; # Redirige lo stdout su stderr
echo -e "\033[1;35m[ ?? ]: $1\033[0m"; # 1>&2; # Redirige lo stdout su stderr
#fi
}
if [ $# -eq 0 ]
then
echo "arg count 0";
ARGDIR=${CURDIR};
else
if [ $# -eq 1 ]
then
echo "arg count 1";
BASEDIR=$1;
ARGDIR=$(ls "$1");
else
echo "arg count > 1";
ARGDIR=$*;
fi
fi
echo "ARGDIR: '$ARGDIR'";
echo "CURDIR: '$CURDIR'";
for directory in ${ARGDIR};
do
directory=${BASEDIR}${directory};
if [ -d ${directory} ]
then
success "Check directory $directory... ";
if eval "cd $directory"
then
if [ -d ".git" ]
then
success "Executing commands into repository... ";
#read_ini ".git/config";
#echo ${INI__section__key}
OLD_BRANCH=$(git branch | grep '\*' | sed 's/^.\ //');
#debug "OLD_BRANCH: ${OLD_BRANCH}";
if eval "git fetch --all -q"
then
success "Fetch all remotes";
else
error "Fetch all remotes";
fi
for branch in $(git branch | sed 's/^.\ //');
do
if eval "git checkout ${branch} -q"
then
success "Checkout branch '${branch}'";
else
error "Checkout branch '${branch}'";
fi
if eval "git pull --all -q"
then
success "Pull all remotes for branch '${branch}'";
else
error "Pull all remotes for branch '${branch}'";
fi
for remote in $(git remote);
do
if eval "git push --all ${remote} -q"
then
success "Push all branches to remote '${remote}'";
else
error "Push all branches to remote '${remote}'";
fi
done
done;
if eval "git checkout ${OLD_BRANCH} -q"
then
success "Return to original selected branch '${OLD_BRANCH}'";
else
success "Return to original selected branch '${OLD_BRANCH}'";
fi
else
skip "Directory '$directory' not is a valid git repository!";
fi;
cd - > /dev/null;
fi
else
skip "Invalid directory argument: '$directory'!";
fi
done;
exit 0;