Skip to content

Commit 622a298

Browse files
committed
add go
1 parent f3fd3ba commit 622a298

File tree

6,701 files changed

+1761445
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

6,701 files changed

+1761445
-0
lines changed

.gitattributes

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Treat all files in the Go repo as binary, with no git magic updating
2+
# line endings. Windows users contributing to Go will need to use a
3+
# modern version of git and editors capable of LF line endings.
4+
#
5+
# We'll prevent accidental CRLF line endings from entering the repo
6+
# via the git-review gofmt checks.
7+
#
8+
# See golang.org/issue/9281
9+
10+
* -text

.github/ISSUE_TEMPLATE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
Please answer these questions before submitting your issue. Thanks!
2+
3+
### What version of Go are you using (`go version`)?
4+
5+
6+
### What operating system and processor architecture are you using (`go env`)?
7+
8+
9+
### What did you do?
10+
11+
If possible, provide a recipe for reproducing the error.
12+
A complete runnable program is good.
13+
A link on play.golang.org is best.
14+
15+
16+
### What did you expect to see?
17+
18+
19+
### What did you see instead?
20+
21+

.github/PULL_REQUEST_TEMPLATE

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Please do not send pull requests to the golang/* repositories.
2+
3+
We do, however, take contributions gladly.
4+
5+
See https://golang.org/doc/contribute.html
6+
7+
Thanks!

.github/SUPPORT.md

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
Unlike many projects on GitHub, the Go project does not use its bug tracker for general discussion or asking questions.
2+
We only use our bug tracker for tracking bugs and tracking proposals going through the [Proposal Process](https://golang.org/s/proposal-process).
3+
4+
For asking questions, see:
5+
6+
* [The golang-nuts mailing list](https://groups.google.com/d/forum/golang-nuts)
7+
8+
* [The Go Forum](https://forum.golangbridge.org/), a web-based forum
9+
10+
* [Gophers Slack](https://gophers.slack.com), use the [invite app](https://invite.slack.golangbridge.org/) for access
11+
12+
* [Stack Overflow](http://stackoverflow.com/questions/tagged/go) with questions tagged "go"
13+
14+
* **IRC** channel #go-nuts on Freenode

.gitignore

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
.DS_Store
2+
*.[56789ao]
3+
*.a[56789o]
4+
*.so
5+
*.pyc
6+
._*
7+
.nfs.*
8+
[56789a].out
9+
*~
10+
*.orig
11+
*.rej
12+
*.exe
13+
.*.swp
14+
core
15+
*.cgo*.go
16+
*.cgo*.c
17+
_cgo_*
18+
_obj
19+
_test
20+
_testmain.go
21+
22+
/VERSION.cache
23+
/bin/
24+
/build.out
25+
/doc/articles/wiki/*.bin
26+
/goinstall.log
27+
/last-change
28+
/misc/cgo/life/run.out
29+
/misc/cgo/stdio/run.out
30+
/misc/cgo/testso/main
31+
/pkg/
32+
/src/*.*/
33+
/src/cmd/cgo/zdefaultcc.go
34+
/src/cmd/go/internal/cfg/zdefaultcc.go
35+
/src/cmd/go/internal/cfg/zosarch.go
36+
/src/cmd/internal/objabi/zbootstrap.go
37+
/src/go/build/zcgo.go
38+
/src/go/doc/headscan
39+
/src/runtime/internal/sys/zversion.go
40+
/src/unicode/maketables
41+
/test.out
42+
/test/garbage/*.out
43+
/test/pass.out
44+
/test/run.out
45+
/test/times.out

0 commit comments

Comments
 (0)