File tree Expand file tree Collapse file tree 1 file changed +28
-3
lines changed Expand file tree Collapse file tree 1 file changed +28
-3
lines changed Original file line number Diff line number Diff line change 1
1
Docker —— 从入门到实践
2
2
===============
3
3
4
- v0.1.10
4
+ v0.2.0
5
5
6
6
[ Docker] ( docker.com ) 是个伟大的项目,它让虚拟化变得前所未有的高效和轻松,彻底释放了虚拟化的威力!
7
7
@@ -14,8 +14,33 @@ v0.1.10
14
14
15
15
维护本书的Github项目: [ https://github.com/yeasy/docker_practice ] (https://github
16
16
.com/yeasy/docker_practice)。
17
- 欢迎大家参与,提交pull request 。
17
+ 欢迎大家参与。
18
18
19
19
另外,欢迎大家加入Docker QQ群(341410255)一起交流学习,共同提高。
20
20
21
- 本书发布时,docker的最新版本为1.20。
21
+ 本书发布时,Docker的最新版本为1.20。
22
+
23
+ ## 参加步骤
24
+ * 在GitHub上fork到自己的仓库,如docker_user/docker_practice,然后clone到本地,并设置用户信息。
25
+ ```
26
+ $ git clone [email protected] :docker_user/docker_practice.git
27
+ $ cd docker_practice
28
+ $ git config user.name "Docker User"
29
+ $ git config user.email [email protected]
30
+ ```
31
+ * 修改代码后提交,并推送到自己的仓库。
32
+ ```
33
+ $ #do some change on the content
34
+ $ git commit -am "Fix issue #1: change helo to hello"
35
+ $ git push
36
+ ```
37
+ * 在GitHub网站上提交pull request。
38
+ * 定期使用项目仓库内容更新自己仓库内容。
39
+ ```
40
+ $ git remote add upstream github.com/yeasy/docker_practice
41
+ $ git fetch upstream
42
+ $ git checkout master
43
+ $ git rebase upstream/master
44
+ $ git push -f origin master
45
+ ```
46
+
You can’t perform that action at this time.
0 commit comments