From d9e0ca405570b8489e732ca9af2d3abf80b411a6 Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Wed, 14 Jan 2015 01:03:53 -0500 Subject: [release-branch.go1.4] all: copy master .gitattributes and .gitignore Change-Id: I10e60fb6bf2cf3daa2bc1184df7ded0a712a1905 Reviewed-on: https://go-review.googlesource.com/2806 Reviewed-by: Andrew Gerrand --- .gitattributes | 10 ++++++++++ .gitignore | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 63 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000000..07953cae39 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,10 @@ +# Treat all files in the Go repo as binary, with no git magic updating +# line endings. Windows users contributing to Go will need to use a +# modern version of git and editors capable of LF line endings. +# +# We'll prevent accidental CRLF line endings from entering the repo +# via the git-review gofmt checks. +# +# See golang.org/issue/9281 + +* -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000..7b63aaf3d4 --- /dev/null +++ b/.gitignore @@ -0,0 +1,53 @@ +.DS_Store +*.[5689ao] +*.a[5689o] +*.so +*.pyc +._* +.nfs.* +[5689a].out +*~ +*.orig +*.rej +*.exe +.*.swp +core +*.cgo*.go +*.cgo*.c +_cgo_* +_obj +_test +_testmain.go +build.out +test.out +doc/articles/wiki/*.bin +include/plan9/libc_plan9.h +misc/cgo/life/run.out +misc/cgo/stdio/run.out +misc/cgo/testso/main +misc/dashboard/builder/builder +src/cmd/?a/y.output +src/liblink/anames?.c +src/cmd/cc/y.output +src/cmd/cgo/zdefaultcc.go +src/cmd/dist/dist.dSYM +src/cmd/gc/mkbuiltin1 +src/cmd/gc/opnames.h +src/cmd/gc/y.output +src/cmd/go/zdefaultcc.go +src/go/doc/headscan +src/runtime/mkversion +src/runtime/zaexperiment.h +src/runtime/zversion.go +src/unicode/maketables +src/*.*/ +test/pass.out +test/run.out +test/times.out +test/garbage/*.out +goinstall.log +last-change +VERSION.cache + +bin/ +pkg/ -- cgit v1.2.3-54-g00ecf