3 err() { printf '%b\n' "$*" 1>&2; exit 1; }
4 vr() { echo "$@"; "$@"; }
19 acmd=$(git config --get "alias.${cmd}" | sed 's: -.*::')
27 exec {ctlfd}<>"${pipe}"
30 jobs_max=${1:-$(getconf _NPROCESSORS_ONLN)}
32 _mj_child() { echo ${BASHPID} $? >&${ctlfd} ; }
42 if [[ ${jobs} -eq ${jobs_max} ]] ; then
43 read -r -u ${ctlfd} pid ret
53 while [[ ! -d ${root}/.repo && ${root} != "/" ]] ; do
59 case ${acmd:-${cmd}} in
61 if [[ $1 == "all" ]] ; then
63 if [[ $# -eq 0 ]] ; then
64 eval $(bash-colors --env | sed 's:^:export :')
67 while read -a line ; do
72 out=$(env _proj=${proj} r rb all . 2>&1)
73 if [[ -n ${out} ]] ; then
75 if [[ ${line} == "# "* ]] ; then
77 printf '%s### %s%-40s%s: %s\n' \
78 "${BRACKET}" "${GOOD}" "${line%%:*}" "${NORMAL}" "${line#*:}"
82 done < <(echo "${out}")
90 #exec r forall -p -c 'r rb all .' </dev/null
93 branches=$(g b | awk '
95 if ($0 ~ "^[*] *[(]no branch[)]") {
97 } else if ($1 == "*") {
103 END { print list b }')
104 [[ -z ${branches} ]] && exit 0
106 [[ -z ${GOOD} ]] && eval $(bash-colors --env)
107 #echo "${GOOD}### ${PWD}${NORMAL}"
108 # Skip if rebase is in progress.
109 if [[ -e .git/rebase-merge/interactive ]] ; then
110 echo -e "# ${_proj}: ${WARN}skipping due to active rebase${NORMAL}"
113 for b in ${branches} ; do
114 #echo " ${HILITE}### $b${NORMAL}"
116 if ! r rb -q "$@" ; then
125 cd "${root}" || exit 1
127 while read -a line ; do
132 out=$(g clean "$@" 2>&1)
133 if [[ -n ${out} ]] ; then
148 cd "${root}" || exit 1
150 if [[ ! -e .repo/sandbox-url ]] ; then
151 err "Please configure remote url base in ${root}/.repo/sandbox-url"
153 remote=$(<.repo/sandbox-url) || exit 1
155 echo "pushing projects from ${root}"
157 # ssh servers do not like it when you hammer them :)
158 # Received disconnect from 74.125.248.80: 7: Too many concurrent connections
159 # fatal: The remote end hung up unexpectedly
163 tcnt=$(echo "${rlist}" | wc -l)
168 export GIT_DIR=${path}/.git
170 printf '### (%*i/%i %3i%%) %s\n' \
171 ${#tcnt} $((cnt++)) ${tcnt} $(( cnt * 100 / tcnt )) ${proj}
173 g l -1 ${src} >& /dev/null || src=
174 mj_child g push --force ${remote}/${proj} ${src}:refs/sandbox/${USER}/${sync_branch} >/dev/null
175 done < <(echo "${rlist}")
181 # For the times when repo is being stupid, push directly to gerrit myself.
182 if ! branch=$(g symbolic-ref -q HEAD) ; then
183 err "could not figure out active branch"
185 branch=${branch#refs/heads/}
186 if ! remote_branch=$(g cfg --get "branch.${branch}.merge") ; then
187 err "could not figure out remote branch"
189 if ! remote=$(g cfg --get "branch.${branch}.remote") ; then
190 for remote in cros-internal cros origin ; do
191 g cfg --get "remote.${remote}.url" >/dev/null && break
194 remote_branch=${remote_branch#refs/heads/}
198 while [[ $# -gt 0 ]] ; do
208 err "unknown option: $1"
214 if [[ -n ${reviewers} ]] ; then
215 reviewers=( ${reviewers//,/ } )
216 git_args+=( "--receive-pack=git receive-pack ${reviewers[*]/#/--reviewer=}" )
219 vr git push "${git_args[@]}" ${remote} ${branch}:refs/for/${remote_branch} && exit
220 err "could not figure out remote to push to"
227 while [[ $# -gt 0 ]] ; do
230 if [[ $2 == *"OWNERS" ]] ; then
231 owners=$(awk -F'@' '{list = list "," $1} END {print substr(list, 2)}' "$2")
232 if [[ -z ${owners} ]] ; then
233 err "cannot find OWNERS list"
235 echo "Auto setting reviewers to: ${owners}"
237 args+=( --re "${owners}" )
250 exec repo ${acmd:-${cmd}} "$@"