Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(530)

Side by Side Diff: git-cr-sync

Issue 10820057: Convenience script to update a submodule-based checkout. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools/
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:executable
+ *
OLDNEW
(Empty)
1 #!/bin/sh
2
cmp 2012/07/30 17:22:04 can you add a brief comment at the top of the file
szager1 2012/07/30 17:49:57 Done.
3 j=10
4 ECHO=
5 pull=pull
6 pull_args=
7 hooks=yes
8
9 usage() {
10 cat <<EOF 1>&2
11 Usage: git-cr-sync [-n|--dry-run] [--fetch] [-j|--jobs [jobs]]
cmp 2012/07/30 17:22:04 git-crsync would avoid an extra trip to the dash s
szager1 2012/07/30 17:49:57 Done.
12 [--no-hooks] [<args to git-pull or git-fetch>]
13 EOF
14 }
15
16 parallel_update() {
17 ( echo Entering "$1" &&
18 cd "$1" &&
19 $ECHO git $pull $pull_args origin &&
20 git ls-files -s | grep ^160000 | awk '{print $4}' |
21 xargs -L 1 -P "$j" $ECHO git submodule update --init )
22 }
23
24 while test $# -ne 0; do
25 case "$1" in
26 -j|--jobs)
27 if test -n "$2"; then
28 j="$2"
29 shift
30 else
31 j=0
32 fi
33 ;;
34 -n|--dry-run)
35 ECHO=echo
36 ;;
37 -h|--help)
38 usage
39 exit 0
40 ;;
41 --fetch)
42 pull=fetch
43 ;;
44 --no-hooks)
45 hooks=no
46 ;;
47 *)
48 pull_args="$pull_args $1"
49 break
50 ;;
51 esac
52 shift
53 done
54
55 while test "$PWD" != "/"; do
56 if test -f "$PWD/src/.gitmodules"; then
57 break
58 fi
59 cd ..
60 done
61 if test "$PWD" = "/"; then
62 echo "Could not find the root of your checkout; aborting." 1>&2
63 exit 1
64 fi
65
66 ls -d */.git |
67 while read gitdir; do
68 parallel_update `dirname $gitdir`
69 done
70
71 test "$hooks" = "yes" && test -x src/.git/hooks/deps2hooks.sh &&
72 src/.git/hooks/deps2hooks.sh
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698