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
66 while read -a line ; do
71 out=$(env _proj=${proj} r rb all . 2>&1)
72 [[ -n ${out} ]] && echo "${out}"
79 #exec r forall -p -c 'r rb all .' </dev/null
82 branches=$(g b | awk '
84 if ($0 ~ "^[*] *[(]no branch[)]") {
86 } else if ($1 == "*") {
92 END { print list b }')
93 [[ -z ${branches} ]] && exit 0
95 eval $(bash-colors --env)
96 #echo "${GOOD}### ${PWD}${NORMAL}"
97 # Skip if rebase is in progress.
98 if [[ -e .git/rebase-merge/interactive ]] ; then
99 echo "# ${_proj}: skipping due to active rebase"
102 for b in ${branches} ; do
103 #echo " ${HILITE}### $b${NORMAL}"
105 if ! r rb -q "$@" ; then
116 cd "${root}" || exit 1
118 if [[ ! -e .repo/sandbox-url ]] ; then
119 err "Please configure remote url base in ${root}/.repo/sandbox-url"
121 remote=$(<.repo/sandbox-url) || exit 1
123 echo "pushing projects from ${root}"
125 # ssh servers do not like it when you hammer them :)
126 # Received disconnect from 74.125.248.80: 7: Too many concurrent connections
127 # fatal: The remote end hung up unexpectedly
131 tcnt=$(echo "${rlist}" | wc -l)
136 export GIT_DIR=${path}/.git
138 printf '### (%*i/%i %3i%%) %s\n' \
139 ${#tcnt} $((cnt++)) ${tcnt} $(( cnt * 100 / tcnt )) ${proj}
141 g l -1 ${src} >& /dev/null || src=
142 mj_child g push --force ${remote}/${proj} ${src}:refs/sandbox/${USER}/${sync_branch} >/dev/null
149 # For the times when repo is being stupid, push directly to gerrit myself.
150 if ! branch=$(g symbolic-ref -q HEAD) ; then
151 err "could not figure out active branch"
153 branch=${branch#refs/heads/}
154 if ! remote_branch=$(g cfg --get "branch.${branch}.merge") ; then
155 err "could not figure out remote branch"
157 remote_branch=${remote_branch#refs/heads/}
160 while [[ $# -gt 0 ]] ; do
167 err "unknown option: $1"
174 if [[ -n ${reviewers} ]] ; then
175 reviewers=( ${reviewers//,/ } )
176 git_args+=( "--receive-pack=git receive-pack ${reviewers[*]/#/--reviewer=}" )
179 for remote in cros-internal cros origin ; do
180 if g cfg --get "remote.${remote}.url" >/dev/null ; then
181 vr git push "${git_args[@]}" ${remote} ${branch}:refs/for/${remote_branch}
185 err "could not figure out remote to push to"
192 while [[ $# -gt 0 ]] ; do
195 if [[ $2 == *"OWNERS" ]] ; then
196 owners=$(awk -F'@' '{list = list "," $1} END {print substr(list, 2)}' "$2")
197 if [[ -z ${owners} ]] ; then
198 err "cannot find OWNERS list"
200 echo "Auto setting reviewers to: ${owners}"
202 args+=( --re "${owners}" )
215 exec repo ${acmd:-${cmd}} "$@"