-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
go.empty: prototype for new subrepository
R=golang-dev, r CC=golang-dev https://golang.org/cl/5572056
- Loading branch information
0 parents
commit f61fbb8
Showing
5 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
syntax:glob | ||
last-change |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# This source code refers to The Go Authors for copyright purposes. | ||
# The master list of authors is in the main Go distribution, | ||
# visible at http://tip.golang.org/AUTHORS. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# This source code was written by the Go contributors. | ||
# The master list of contributors is in the main Go distribution, | ||
# visible at http://tip.golang.org/CONTRIBUTORS. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
This is an empty Go subrepository. To create a new subrepository, | ||
visit http://code.google.com/p/go/adminSource and under repositories, | ||
type the new name, check [x] Clone contents and select [empty] as | ||
the one you want to clone. | ||
|
||
Then execute: | ||
go get code.google.com/p/go.newrepo | ||
cd $(go list -e -f '{{.Dir}}' code.google.com/p/go.newrepo) | ||
|
||
The go get will complain about not finding source code, but it will | ||
successfully check out the repository. | ||
|
||
Edit the README (this file) to describe the new subrepository, and then | ||
use the usual hg change, mail, submit to send in the change. | ||
You will need to follow http://golang.org/doc/contribute.html#Code_review | ||
to enable the Code Review extension (pointing into your Go root). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
defaultcc: [email protected] | ||
contributors: http://go.googlecode.com/hg/CONTRIBUTORS |