Skip to content

Commit 707a94b

Browse files
committed
first commit
0 parents  commit 707a94b

File tree

252 files changed

+48799
-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.

252 files changed

+48799
-0
lines changed

.editorconfig

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Copyright 2017 <chaishushan{AT}gmail.com>. All rights reserved.
2+
# Use of this source code is governed by a Apache
3+
# license that can be found in the LICENSE file.
4+
5+
# http://editorconfig.org/
6+
7+
root = true
8+
9+
# Unix-style newlines with a newline ending every file
10+
[*]
11+
charset = utf-8
12+
end_of_line = lf
13+
trim_trailing_whitespace = true
14+
insert_final_newline = false
15+
16+
[*]
17+
indent_style = tab
18+
19+
[*.{go,proto}]
20+
charset = utf-8
21+
indent_style = tab
22+
23+
# Matches the exact files either package.json or .travis.yml
24+
[{package.json,.travis.yml}]
25+
indent_style = space
26+
indent_size = 2
27+
28+
[*.yaml]
29+
indent_style = space
30+
indent_size = 2

.nojekyll

Whitespace-only changes.

163study-go-master.jpg

36.9 KB
Loading

A20181610.jpg

303 KB
Loading

LICENSE

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
BSD 2-Clause License
2+
3+
Copyright (c) 2017, chai2010
4+
All rights reserved.
5+
6+
Redistribution and use in source and binary forms, with or without
7+
modification, are permitted provided that the following conditions are met:
8+
9+
* Redistributions of source code must retain the above copyright notice, this
10+
list of conditions and the following disclaimer.
11+
12+
* Redistributions in binary form must reproduce the above copyright notice,
13+
this list of conditions and the following disclaimer in the documentation
14+
and/or other materials provided with the distribution.
15+
16+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
17+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
20+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
22+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
23+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
24+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
25+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Makefile

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Copyright 2016 <chaishushan{AT}gmail.com>. All rights reserved.
2+
# Use of this source code is governed by a BSD-style
3+
# license that can be found in the LICENSE file.
4+
5+
#
6+
# MnBook: Mini Markdown Book
7+
# https://github.com/wa-lang/mnbook
8+
#
9+
10+
default:
11+
mnbook serve
12+
13+
build:
14+
-rm book
15+
mnbook build
16+
-rm book/.gitignore
17+
-rm book/.nojekyll
18+
-rm -rf book/.git
19+
20+
deploy:
21+
-@make clean
22+
mnbook build
23+
-rm book/.gitignore
24+
-rm -rf book/.git
25+
-rm -rf book/examples
26+
27+
cd book && git init
28+
cd book && git add .
29+
cd book && git commit -m "first commit"
30+
cd book && git branch -M gh-pages
31+
cd book && git remote add origin [email protected]:chai2010/advanced-go-programming-book.git
32+
cd book && git push -f origin gh-pages
33+
34+
clean:
35+
-rm -rf book

0 commit comments

Comments
 (0)