梦幻的彼岸 发表于 2021-9-12 18:37:39

[开源书籍][运维相关]运维实践指南

在线阅读地址https://billwang139967.gitbooks.io/op_practice_book/content/
原文介绍
运维实践指南
此笔记中记录着学习点滴,希望可以帮到更多的人。

如果这其中有些是你正困惑的地方,那么此笔记也许能帮到你,如果有好的建议,戳这 进行提交下建议

参加步骤
在 GitHub 上 fork 到自己的仓库,然后 clone 到本地,并设置用户信息。
$ git clone https://github.com/meetbill/op_practice_book.git
$ cd op_practice_book
$ git config user.name "yourname"
$ git config user.email "your email"
修改代码后提交,并推送到自己的仓库。
$ #do some change on the content
$ git commit -am "Fix issue #1: change helo to hello"
$ git push
在 GitHub 网站上提交 pull request。
定期使用项目仓库内容更新自己仓库内容。
$ git remote add upstream https://github.com/meetbill/op_practice_book.git
$ git fetch upstream
$ git checkout master
$ git rebase upstream/master
$ git push -f origin master

H.U.C清风 发表于 2023-8-28 21:09:34

谢谢分享,已回复
页: [1]
查看完整版本: [开源书籍][运维相关]运维实践指南