3 err() { printf '%b\n' "$*" 1>&2; exit 1; }
4 vr() { echo "$@"; "$@"; }
28 acmd=$(git config --get "alias.${cmd}" | sed 's: -.*::')
36 exec {ctlfd}<>"${pipe}"
39 jobs_max=${1:-$(getconf _NPROCESSORS_ONLN)}
41 _mj_child() { echo ${BASHPID} $? >&${ctlfd} ; }
51 if [[ ${jobs} -eq ${jobs_max} ]] ; then
52 read -r -u ${ctlfd} pid ret
62 while [[ ! -d ${root}/.repo && ${root:-/} != "/" ]] ; do
70 for r in ${*//,/ } ; do
75 ($2 == "chromium.org" || $2 == "google.com") {list = list "," $1}
76 END {print substr(list, 2)}
79 if [[ -z ${owners} ]] ; then
80 err "cannot find OWNERS list"
82 echo "Auto setting reviewers to: ${owners}"
91 reviewers=$(printf '%s,' "${arr[@]}")
92 reviewers=${reviewers%,}
96 # Diff projects have diff versions of repo. Find a compatible one.
97 local root=$(repo_root)
99 # Use the manifest repo URL.
100 local manifest_dir="${root}/.repo/manifests.git"
103 # Default to the local repo if it's there.
108 case $(g --git-dir="${manifest_dir}" config remote.origin.url) in
118 ~/chromiumos/depot_tools
119 /usr/local/src/depot_tools
124 for d in "${search[@]}" ; do
125 if [[ -x ${d}/repo ]] ; then
131 # Fallback: use $PATH.
135 case ${acmd:-${cmd}} in
137 if [[ $1 == "all" ]] ; then
139 if [[ $# -eq 0 ]] ; then
140 eval "$(bash-colors --env | sed 's:^:export :')"
143 while read -a line ; do
146 if ! cd "${root}/${dir}" ; then
151 out=$(r rb all . 2>&1)
152 if [[ -n ${out} ]] ; then
153 head=$(printf "%-40s" "${proj}")
154 echo "${out}" | sed "s:^:${head} :"
162 #exec r forall -p -c 'r rb all .' </dev/null
170 cd "${root}" || exit 1
172 while read -a line ; do
177 out=$(g clean "$@" 2>&1)
178 if [[ -n ${out} ]] ; then
194 f|fetch) sb_cmd="fetch" ;;
195 *) err "unknown sandbox command: $1"
201 cd "${root}" || exit 1
203 if [[ ! -e .repo/sandbox-url ]] ; then
204 err "Please configure remote url base in ${root}/.repo/sandbox-url"
206 remote=$(<.repo/sandbox-url) || exit 1
208 echo "pushing projects from ${root}"
210 # ssh servers do not like it when you hammer them :)
211 # Received disconnect from 74.125.248.80: 7: Too many concurrent connections
212 # fatal: The remote end hung up unexpectedly
216 tcnt=$(echo "${rlist}" | wc -l)
221 export GIT_DIR=${path}/.git
223 printf '### (%*i/%i %3i%%) %s\n' \
224 ${#tcnt} $((cnt++)) ${tcnt} $(( cnt * 100 / tcnt )) ${proj}
228 g l -1 ${src} >& /dev/null || src=
229 mj_child g push --force ${remote}/${proj} ${src}:refs/sandbox/${USER}/${sync_branch} >/dev/null
234 mj_child g fetch ${remote}/${proj} refs/sandbox/${USER}/${sync_branch}:refs/remotes/sb/${sync_branch} >/dev/null
237 done < <(echo "${rlist}")
243 # For the times when repo is being stupid, push directly to gerrit myself.
244 if ! branch=$(g symbolic-ref -q HEAD) ; then
245 err "could not figure out active branch"
247 branch=${branch#refs/heads/}
248 if ! remote_branch=$(g cfg --get "branch.${branch}.merge") ; then
249 echo "could not figure out remote branch; using ${branch}"
250 remote_branch=${branch}
252 if ! remote=$(g cfg --get "branch.${branch}.remote") ; then
253 for remote in cros-internal cros origin ; do
254 g cfg --get "remote.${remote}.url" >/dev/null && break
257 review=$(g cfg --get "remote.${remote}.review")
258 remote_branch=${remote_branch#refs/heads/}
262 while [[ $# -gt 0 ]] ; do
265 process_reviewers "$2"
268 -n|--dry-run|--draft)
272 err "unknown option: $1"
278 ref_spec="${branch}:refs/for/${remote_branch}"
279 if [[ -n ${reviewers} ]] ; then
280 reviewers=( ${reviewers//,/ } )
281 if [[ ${review} != ssh://* ]] ; then
282 gob_args=$(printf 'r=%s,' "${reviewers[@]}")
283 ref_spec+="%${gob_args%,}"
285 git_args+=( "--receive-pack=git receive-pack ${reviewers[*]/#/--reviewer=}" )
289 vr git push "${git_args[@]}" ${remote} ${ref_spec} && exit
290 err "could not figure out remote to push to"
297 while [[ $# -gt 0 ]] ; do
300 process_reviewers "$2"
301 args+=( --re "${reviewers}" )
312 email=${1:-${USER}@chromium.org}
315 git --git-dir="${root}/.repo/manifests.git" cfg user.email "${email}"
316 git --git-dir="${root}/.repo/repo/.git" cfg user.email "${email}"
319 set -- -c "git cfg user.email '${email}'"
323 exec python2 $(find_repo) ${acmd:-${cmd}} "$@"