Delta Between Two Patch Sets: .hgignore
Issue 1947041 :
code review 1947041: goinstall: added -a flag to mean "all remote packages" (Closed)
Left Patch Set: code review 1947041: goinstall: added -a flag to mean "all remote packages"
Right Patch Set: code review 1947041: goinstall: added -a flag to mean "all remote packages"
Use n/p to move between diff chunks;
N/P to move between comments.
Please Sign in to add in-line comments.
Jump to:
.hgignore
src/cmd/goinstall/doc.go
src/cmd/goinstall/main.go
LEFT RIGHT
1 syntax:glob 1 syntax:glob
2 .DS_Store 2 .DS_Store
3 .git 3 .git
4 .gitignore 4 .gitignore
5 *.[568ao] 5 *.[568ao]
6 *.ao 6 *.ao
7 *.so 7 *.so
8 *.pyc 8 *.pyc
9 ._* 9 ._*
10 .nfs.* 10 .nfs.*
11 [568a].out 11 [568a].out
12 *~ 12 *~
13 *.orig 13 *.orig
14 core 14 core
15 _obj 15 _obj
16 _test 16 _test
17 y.tab.[ch]
17 doc/htmlgen 18 doc/htmlgen
19 src/Make.inc
18 src/cmd/6a/6a 20 src/cmd/6a/6a
19 y.tab.[ch]
20 src/cmd/?l/enam.c 21 src/cmd/?l/enam.c
22 src/cmd/cc/y.output
21 src/cmd/gc/builtin.c 23 src/cmd/gc/builtin.c
22 src/cmd/gc/mkbuiltin1 24 src/cmd/gc/mkbuiltin1
23 src/cmd/gc/opnames.h 25 src/cmd/gc/opnames.h
24 src/cmd/gc/y.output 26 src/cmd/gc/y.output
25 src/cmd/gc/y1.tab.c 27 src/cmd/gc/y1.tab.c
26 src/cmd/gc/yerr.h 28 src/cmd/gc/yerr.h
27 src/pkg/Make.deps 29 src/pkg/Make.deps
28 src/pkg/exp/ogle/ogle 30 src/pkg/exp/ogle/ogle
29 src/pkg/os/signal/unix.go 31 src/pkg/os/signal/unix.go
30 src/pkg/runtime/*/asm.h 32 src/pkg/runtime/*/asm.h
31 src/pkg/runtime/goc2c 33 src/pkg/runtime/goc2c
32 src/pkg/runtime/mkversion 34 src/pkg/runtime/mkversion
33 src/pkg/runtime/runtime.acid.* 35 src/pkg/runtime/runtime.acid.*
34 src/pkg/runtime/version.go 36 src/pkg/runtime/version.go
35 src/pkg/github.com/ 37 src/pkg/github.com/
36 src/pkg/*.googlecode.com/ 38 src/pkg/*.googlecode.com/
37 test/pass.out 39 test/pass.out
38 test/run.out 40 test/run.out
39 test/times.out 41 test/times.out
40 test/garbage/*.out 42 test/garbage/*.out
41 goinstall.log 43 goinstall.log
42 44
43 syntax:regexp 45 syntax:regexp
44 ^bin/ 46 ^bin/
45 ^pkg/ 47 ^pkg/
46 ^src/cmd/(.*)/6?\1$ 48 ^src/cmd/(.*)/6?\1$
47 ^.*/core.[0-9]*$ 49 ^.*/core.[0-9]*$
LEFT RIGHT