Skip to content

Commit df0a1c0

Browse files
committed
[DONE] add imageS
1 parent 6c177cd commit df0a1c0

File tree

5 files changed

+43
-17
lines changed

5 files changed

+43
-17
lines changed

chapters/01-start-project.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,20 @@
1111
挑选好 LICENSE
1212
---
1313

14+
![License 使用情况](./img/permissive-vs-copylift-license-2.jpg)
15+
16+
### GPL
17+
18+
### BSD
19+
20+
### MIT
21+
22+
### Creative Common
1423

1524
官方主页
1625
---
1726

1827
一个好的例子是 GitHub Pages
1928

2029

21-
22-
2330
然后,创建

chapters/10-git-tools.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Git 命令行增强
1212

1313
### [diff-so-fancy](https://github.com/so-fancy/diff-so-fancy)
1414

15-
![diff so fancy 截图](git-diff-screenshot.png)
15+
![diff so fancy 截图](./img/git-diff-screenshot.png)
1616

1717
### [git-extras](https://github.com/tj/git-extras)
1818

@@ -65,11 +65,11 @@ Git、GitHub桌面增强
6565

6666
gitflow 分支合并、查看
6767

68-
![SourceTree 截图](sourcetree.jpg)
68+
![SourceTree 截图](./img/sourcetree.jpg)
6969

7070
### GitHub Desktop
7171

72-
![GitHub Desktop](github-desktop.jpg)
72+
![GitHub Desktop](./img/github-desktop.jpg)
7373

7474
Git 娱乐
7575
---
@@ -131,4 +131,4 @@ Set up your git name and email, this is important so that your commits can be id
131131

132132
### Gource
133133

134-
![Gource 历史](gource.jpg)
134+
![Gource 历史](./img/gource.jpg)

github-roam.md

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -93,15 +93,22 @@
9393
挑选好 LICENSE
9494
---
9595

96+
![License 使用情况](./img/permissive-vs-copylift-license-2.jpg)
97+
98+
### GPL
99+
100+
### BSD
101+
102+
### MIT
103+
104+
### Creative Common
96105

97106
官方主页
98107
---
99108

100109
一个好的例子是 GitHub Pages
101110

102111

103-
104-
105112
然后,创建
106113

107114
# Git基本知识与GitHub使用
@@ -1901,7 +1908,7 @@ Git 命令行增强
19011908

19021909
### [diff-so-fancy](https://github.com/so-fancy/diff-so-fancy)
19031910

1904-
![diff so fancy 截图](git-diff-screenshot.png)
1911+
![diff so fancy 截图](./img/git-diff-screenshot.png)
19051912

19061913
### [git-extras](https://github.com/tj/git-extras)
19071914

@@ -1954,11 +1961,11 @@ Git、GitHub桌面增强
19541961

19551962
gitflow 分支合并、查看
19561963

1957-
![SourceTree 截图](sourcetree.jpg)
1964+
![SourceTree 截图](./img/sourcetree.jpg)
19581965

19591966
### GitHub Desktop
19601967

1961-
![GitHub Desktop](github-desktop.jpg)
1968+
![GitHub Desktop](./img/github-desktop.jpg)
19621969

19631970
Git 娱乐
19641971
---
@@ -2020,7 +2027,7 @@ Set up your git name and email, this is important so that your commits can be id
20202027

20212028
### Gource
20222029

2023-
![Gource 历史](gource.jpg)
2030+
![Gource 历史](./img/gource.jpg)
20242031

20252032
# GitHub用户分析
20262033

71.3 KB
Loading

index.html

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,12 @@ <h1>GitHub 漫游指南</h1>
7878
</ul></li>
7979
<li><a href="#创建开源项目">创建开源项目</a><ul>
8080
<li><a href="#取一个好的名字">取一个好的名字</a></li>
81-
<li><a href="#挑选好-license">挑选好 LICENSE</a></li>
81+
<li><a href="#挑选好-license">挑选好 LICENSE</a><ul>
82+
<li><a href="#gpl">GPL</a></li>
83+
<li><a href="#bsd">BSD</a></li>
84+
<li><a href="#mit">MIT</a></li>
85+
<li><a href="#creative-common">Creative Common</a></li>
86+
</ul></li>
8287
<li><a href="#官方主页">官方主页</a></li>
8388
</ul></li>
8489
<li><a href="#git基本知识与github使用">Git基本知识与GitHub使用</a><ul>
@@ -307,6 +312,13 @@ <h1 id="创建开源项目">创建开源项目</h1>
307312
<p>人们创建</p>
308313
<h2 id="取一个好的名字">取一个好的名字</h2>
309314
<h2 id="挑选好-license">挑选好 LICENSE</h2>
315+
<figure>
316+
<img src="./img/permissive-vs-copylift-license-2.jpg" alt="License 使用情况" /><figcaption>License 使用情况</figcaption>
317+
</figure>
318+
<h3 id="gpl">GPL</h3>
319+
<h3 id="bsd">BSD</h3>
320+
<h3 id="mit">MIT</h3>
321+
<h3 id="creative-common">Creative Common</h3>
310322
<h2 id="官方主页">官方主页</h2>
311323
<p>一个好的例子是 GitHub Pages</p>
312324
<p>然后,创建</p>
@@ -1811,7 +1823,7 @@ <h1 id="git-与-github-工具推荐">Git 与 GitHub 工具推荐</h1>
18111823
<h2 id="git-命令行增强">Git 命令行增强</h2>
18121824
<h3 id="diff-so-fancy"><a href="https://github.com/so-fancy/diff-so-fancy">diff-so-fancy</a></h3>
18131825
<figure>
1814-
<img src="git-diff-screenshot.png" alt="diff so fancy 截图" /><figcaption>diff so fancy 截图</figcaption>
1826+
<img src="./img/git-diff-screenshot.png" alt="diff so fancy 截图" /><figcaption>diff so fancy 截图</figcaption>
18151827
</figure>
18161828
<h3 id="git-extras"><a href="https://github.com/tj/git-extras">git-extras</a></h3>
18171829
<p><strong>Ubuntu</strong></p>
@@ -1846,11 +1858,11 @@ <h2 id="gitgithub桌面增强">Git、GitHub桌面增强</h2>
18461858
<h3 id="sourcetree">SourceTree</h3>
18471859
<p>gitflow 分支合并、查看</p>
18481860
<figure>
1849-
<img src="sourcetree.jpg" alt="SourceTree 截图" /><figcaption>SourceTree 截图</figcaption>
1861+
<img src="./img/sourcetree.jpg" alt="SourceTree 截图" /><figcaption>SourceTree 截图</figcaption>
18501862
</figure>
18511863
<h3 id="github-desktop">GitHub Desktop</h3>
18521864
<figure>
1853-
<img src="github-desktop.jpg" alt="GitHub Desktop" /><figcaption>GitHub Desktop</figcaption>
1865+
<img src="./img/github-desktop.jpg" alt="GitHub Desktop" /><figcaption>GitHub Desktop</figcaption>
18541866
</figure>
18551867
<h2 id="git-娱乐">Git 娱乐</h2>
18561868
<h3 id="githug">githug</h3>
@@ -1899,7 +1911,7 @@ <h3 id="githug">githug</h3>
18991911
#...</code></pre>
19001912
<h3 id="gource">Gource</h3>
19011913
<figure>
1902-
<img src="gource.jpg" alt="Gource 历史" /><figcaption>Gource 历史</figcaption>
1914+
<img src="./img/gource.jpg" alt="Gource 历史" /><figcaption>Gource 历史</figcaption>
19031915
</figure>
19041916
<h1 id="github用户分析">GitHub用户分析</h1>
19051917
<h2 id="生成图表">生成图表</h2>

0 commit comments

Comments
 (0)