summaryrefslogtreecommitdiff
path: root/.hgignore
Commit message (Collapse)AuthorAgeFilesLines
* .hgignore: ignore autogenerated filesChristopher Wedgwood2011-12-201-0/+5
| | | | | | | | R=rsc CC=golang-dev http://codereview.appspot.com/5491077 Committer: Russ Cox <rsc@golang.org>
* build: update .hgignoreAndrew Gerrand2011-12-021-2/+1
| | | | | | R=golang-dev, dsymonds, r CC=golang-dev http://codereview.appspot.com/5451073
* misc/osx: Add scripts to create OS X package and disk imageScott Lawrence2011-11-181-0/+2
| | | | | | | | | | Fixes issue 2327. R=golang-dev, rsc, roberto, jdpoirier CC=golang-dev http://codereview.appspot.com/5375049 Committer: Joe Poirier <jdpoirier@gmail.com>
* .hgignore: ignore src/pkg/exp/ebnflint/ebnflintAlex Brainman2011-10-261-1/+1
| | | | | | R=golang-dev, adg CC=golang-dev http://codereview.appspot.com/5294060
* codereview: save CL messages in $(hg root)/last-changeRuss Cox2011-09-201-0/+1
| | | | | | | | Fixes issue 2279. R=bradfitz, r, r CC=golang-dev http://codereview.appspot.com/5096042
* exp/norm: added normregtest to .hgignore.Marcel van Lohuizen2011-09-141-0/+1
| | | | | | R=r, rsc CC=golang-dev http://codereview.appspot.com/5009045
* exp/norm: added trie lookup code and associated tests.Marcel van Lohuizen2011-08-101-0/+1
| | | | | | | | | | | | | | - triegen.go: Factored out trie generation code from maketables.go (only renamed printTrieTables to printTables and made it a method). - maketesttables.go: new tool to generate data for the trie unit test. - Makefile: changed accordingly. - trie.go: trie lookup code. - trietest_data.go: generated by maketesttables.go. - trie_test.go: unit test for trie.go. R=r CC=golang-dev http://codereview.appspot.com/4844053
* exp/norm: maketables tool for generating tables for normalization.Marcel van Lohuizen2011-08-041-0/+1
| | | | | | R=r, bsiegert, r, alex.brainman CC=golang-dev http://codereview.appspot.com/4662080
* go/build: exclude cgo test from armAndrew Gerrand2011-06-061-0/+1
| | | | | | | | | go/build: include command output in error values go/build: add syslist.go to .hgignore R=golang-dev, r CC=golang-dev http://codereview.appspot.com/4550118
* syscall: add Mmap, Munmap on Linux, FreeBSD, OS XRuss Cox2011-04-061-0/+2
| | | | | | | | | | * tweak mksyscall*.pl to be more gofmt-compatible. * add mkall.sh -syscalls option. * add sys/mman.h constants on OS X R=r, eds, niemeyer CC=golang-dev http://codereview.appspot.com/4369044
* .hgignore: Ignore all goinstalled packagesEvan Shaw2011-03-171-2/+1
| | | | | | | | R=golang-dev, niemeyer, rsc1, rog, rsc CC=golang-dev http://codereview.appspot.com/4285047 Committer: Russ Cox <rsc@golang.org>
* goinstall: handle $(GOOS) and $(GOARCH) in filenamesGustavo Niemeyer2011-03-071-0/+1
| | | | | | | | | | | | | | | | | | This enables goinstall to handle .go and .c files (for cgo) which are named after the following patterns: name_$(GOOS).* name_$(GOARCH).* name_$(GOOS)_$(GOARCH).* Files with those names are only included if the $(GOOS) and $(GOARCH) match the current system. R=rsc CC=golang-dev http://codereview.appspot.com/4172055 Committer: Russ Cox <rsc@golang.org>
* .hgignore: add *.cgo*.{c,go}Gustavo Niemeyer2011-02-221-0/+2
| | | | | | | | R=golang-dev, rsc CC=golang-dev http://codereview.appspot.com/4168059 Committer: Russ Cox <rsc@golang.org>
* .hgignore: add doc/codelab/wiki/*.binGustavo Niemeyer2011-02-191-0/+1
| | | | | | | | R=golang-dev, adg CC=golang-dev http://codereview.appspot.com/4173063 Committer: Andrew Gerrand <adg@golang.org>
* .hgignore: ignore src/pkg/runtime/version_*.goAlex Brainman2011-02-091-0/+1
| | | | | | R=golang-dev, r2 CC=golang-dev http://codereview.appspot.com/4159041
* .hgignore: Add some more files created by all.bash.Ian Lance Taylor2011-01-311-0/+5
| | | | | | R=rsc CC=golang-dev http://codereview.appspot.com/4105044
* codereview: handle file patterns betterRuss Cox2011-01-241-0/+1
| | | | | | | | | | | | | | | | | If a file pattern is given and matches files that look like they need to be hg added or hg removed, offer to do so. If a file pattern is given and matches files in another CL, warn. If a file pattern doesn't match anything, point that out. Vet first line of CL description. Fixes issue 972. R=adg, niemeyer CC=bradfitzgo, golang-dev http://codereview.appspot.com/4099042
* windows: implement exception handlingHector Chu2011-01-191-0/+2
| | | | | | | | R=rsc, brainman CC=golang-dev http://codereview.appspot.com/4079041 Committer: Russ Cox <rsc@golang.org>
* hg: add cgo/_cgo_* to .hgignore.Nigel Tao2011-01-121-0/+1
| | | | | | R=rsc, nigeltao_gnome CC=golang-dev http://codereview.appspot.com/3956042
* add _testmain.go to .hgignoreAlex Brainman2010-10-041-0/+1
| | | | | | R=rsc, r2 CC=golang-dev http://codereview.appspot.com/2332042
* goinstall: added -a flag to mean "all remote packages"Scott Lawrence2010-09-021-0/+1
| | | | | | | | | | | | | | Fixes issue 897. goinstall -a can be used to reinstall all packages after an upgrade goinstall -a -u can be used to update all package A history of remote package installs is stored in $GOROOT/goinstall.log R=rsc, adg CC=golang-dev http://codereview.appspot.com/1947041 Committer: Russ Cox <rsc@golang.org>
* .hgignore: ignore src/cmd/cc/y.outputChristian Himpel2010-08-261-0/+1
| | | | | | | | R=golang-dev, adg1, adg CC=golang-dev http://codereview.appspot.com/2023044 Committer: Andrew Gerrand <adg@golang.org>
* build: no required environment variablesRuss Cox2010-08-181-1/+2
| | | | | | R=adg, r, PeterGo CC=golang-dev http://codereview.appspot.com/1942044
* hgignore: adds bin/ to support setting $GOBIN to $GOROOT/binJames Whitehead2010-07-191-0/+1
| | | | | | | | R=PeterGo, adg CC=golang-dev, jnw http://codereview.appspot.com/1699046 Committer: Andrew Gerrand <adg@golang.org>
* .hgignore: ignore doc/htmlgenPaolo Giarrusso2010-06-091-0/+1
| | | | | | | | R=golang-dev, rsc CC=golang-dev http://codereview.appspot.com/1555042 Committer: Russ Cox <rsc@golang.org>
* rename cgo2c to goc2c in ignored listAlex Brainman2010-04-261-1/+1
| | | | | | | | R=rsc CC=golang-dev http://codereview.appspot.com/968043 Committer: Russ Cox <rsc@golang.org>
* runtime: add GOROOT and VersionRuss Cox2010-03-161-1/+5
| | | | | | R=r CC=golang-dev http://codereview.appspot.com/608041
* fix garbage benchmark Makefile.Russ Cox2010-02-091-3/+1
| | | | | | | | | | apparently some versions of GNU make cannot handle the %: %.$O rule. i don't understand why and don't care enough to find out. R=agl1 CC=golang-dev http://codereview.appspot.com/206055
* .hgignore: ignore .gitignore (already ignoring .git)Russ Cox2010-02-091-0/+4
| | | | | | R=agl1 CC=golang-dev http://codereview.appspot.com/206047
* add apple's .DS_Store to ignored listRob Pike2010-02-031-0/+1
| | | | | | R=rsc CC=golang-dev http://codereview.appspot.com/198102
* Ignore the temporary files used for improved error messages.Ian Lance Taylor2010-02-011-0/+3
| | | | | | R=rsc CC=golang-dev http://codereview.appspot.com/199047
* Replicate signal names from syscall in os/signal.David Symonds2010-01-111-0/+1
| | | | | | | | R=rsc CC=golang-dev http://codereview.appspot.com/183142 Committer: Russ Cox <rsc@golang.org>
* build Make.deps during make.bash insteadRuss Cox2009-11-191-0/+1
| | | | | | | | of keeping a checked-in copy. doesn't slow down make.bash appreciably. R=r http://codereview.appspot.com/156099
* Let us have side by side git if we wantJosh Goebel2009-11-171-0/+1
| | | | | | | R=r, rsc http://codereview.appspot.com/156046 Committer: Russ Cox <rsc@golang.org>
* Ignore more unimportant files.Ian Lance Taylor2009-11-071-2/+6
| | | | | | | | | | | - Emacs backup files. - *.orig files left by hg merge conflicts. - core files. - generated enam.c files. - runtime.acid now has an architecture. R=rsc http://go/go-review/1026017
* more file patterns to ignoreRuss Cox2009-11-011-2/+5
| | | | | R=r http://go/go-review/1016014
* tell Mercurial which files to ignoreRuss Cox2009-10-221-0/+24
R=r CC=go-dev http://go/go-review/1012005