From 324b95c0b2400254da1e9618a319dfb435d59ffe Mon Sep 17 00:00:00 2001 From: Fengda Huang Date: Wed, 29 May 2024 12:12:40 +0800 Subject: [PATCH 1/7] Rename readme.md to README.md --- chapters/{readme.md => README.md} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename chapters/{readme.md => README.md} (100%) diff --git a/chapters/readme.md b/chapters/README.md similarity index 100% rename from chapters/readme.md rename to chapters/README.md From 538c514edd800db8846ba0f94aa8a659658fc99a Mon Sep 17 00:00:00 2001 From: Fengda Huang Date: Wed, 29 May 2024 12:13:54 +0800 Subject: [PATCH 2/7] Rename _sidebar.MD to _sidebar.md --- chapters/{_sidebar.MD => _sidebar.md} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename chapters/{_sidebar.MD => _sidebar.md} (100%) diff --git a/chapters/_sidebar.MD b/chapters/_sidebar.md similarity index 100% rename from chapters/_sidebar.MD rename to chapters/_sidebar.md From ed3f6237348d1b993b2df92bd0843450ca30f427 Mon Sep 17 00:00:00 2001 From: Fengda Huang Date: Wed, 29 May 2024 13:26:00 +0800 Subject: [PATCH 3/7] Update _sidebar.md --- chapters/_sidebar.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chapters/_sidebar.md b/chapters/_sidebar.md index 14975fd..dff588b 100644 --- a/chapters/_sidebar.md +++ b/chapters/_sidebar.md @@ -18,4 +18,4 @@ - [16 find in github](/16-find-in-github.md) - [18 get star](/18-get-star.md) - [19 joke](/19-joke.md) -- [999 faq](/999-faq.md) +- [999 FAQ](/999-faq.md) From 6aee1c5ece833d69c679fe15a0bad1f479a0c6ea Mon Sep 17 00:00:00 2001 From: Fengda Huang Date: Wed, 29 May 2024 13:34:00 +0800 Subject: [PATCH 4/7] Update index.html --- index.html | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index b6bcb7d..3fa25fa 100644 --- a/index.html +++ b/index.html @@ -33,7 +33,10 @@ @@ -41,4 +44,4 @@
点击 这是indexloc提供的php浏览器服务,不要输入任何密码和下载
- \ No newline at end of file + From 469c54657af6aa2bfd82012f4a60947efaaa2586 Mon Sep 17 00:00:00 2001 From: Fengda Huang Date: Wed, 29 May 2024 13:39:26 +0800 Subject: [PATCH 5/7] Create static.yml --- .github/workflows/static.yml | 43 ++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 .github/workflows/static.yml diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml new file mode 100644 index 0000000..b9c9160 --- /dev/null +++ b/.github/workflows/static.yml @@ -0,0 +1,43 @@ +# Simple workflow for deploying static content to GitHub Pages +name: Deploy static content to Pages + +on: + # Runs on pushes targeting the default branch + push: + branches: ["gh-pages"] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages +permissions: + contents: read + pages: write + id-token: write + +# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. +# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. +concurrency: + group: "pages" + cancel-in-progress: false + +jobs: + # Single deploy job since we're just deploying + deploy: + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Setup Pages + uses: actions/configure-pages@v5 + - name: Upload artifact + uses: actions/upload-pages-artifact@v3 + with: + # Upload entire repository + path: '.' + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v4 From 36d0fa54b5e576c1319f87e472b6a7f8de4419d0 Mon Sep 17 00:00:00 2001 From: Fengda Huang Date: Wed, 29 May 2024 13:42:35 +0800 Subject: [PATCH 6/7] Update _sidebar.md --- chapters/_sidebar.md | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/chapters/_sidebar.md b/chapters/_sidebar.md index dff588b..4167bfb 100644 --- a/chapters/_sidebar.md +++ b/chapters/_sidebar.md @@ -1,21 +1,21 @@ - [Home Page](/) -- [01 introduction](/01-introduction.md) -- [01 start project](/01-start-project.md) -- [02 github fundamentals](/02-github-fundamentals.md) -- [03 build github project](/03-build-github-project.md) -- [04 commit message](/04-commit-message.md) -- [05 create project documents](/05-create-project-documents.md) -- [06 refactor project](/06-refactor-project.md) -- [07 tdd with autotest](/07-tdd-with-autotest.md) -- [08 github marketing](/08-github-marketing.md) -- [09 maintain project](/09-maintain-project.md) -- [10 git tools](/10-git-tools.md) -- [11 analytics](/11-analytics.md) -- [12 find github project](/12-find-github-project.md) -- [13 read code](/13-read-code.md) -- [14 streak your github](/14-streak-your-github.md) -- [15 milestone](/15-milestone.md) -- [16 find in github](/16-find-in-github.md) -- [18 get star](/18-get-star.md) -- [19 joke](/19-joke.md) +- [01 介绍](/01-introduction.md) +- [01 创建开源项目](/01-start-project.md) +- [02 Git 基本知识与 GitHub 使用](/02-github-fundamentals.md) +- [03 构建 GitHub 项目](/03-build-github-project.md) +- [04 Git 提交信息及几种不同的规范](/04-commit-message.md) +- [05 创建项目文档](/05-create-project-documents.md) +- [06 改善 GitHub 项目代码质量:重构](/06-refactor-project.md) +- [07 改善 GitHub 项目代码质量:测试](/07-tdd-with-autotest.md) +- [08 如何推广 GitHub 项目](/08-github-marketing.md) +- [09 开源项目维护](/09-maintain-project.md) +- [10 Git 与 GitHub 工具推荐](/10-git-tools.md) +- [11 GitHub 用户分析](/11-analytics.md) +- [12 如何在 GitHub "寻找灵感(fork)"](/12-find-github-project.md) +- [13 如何以“正确的姿势”阅读开源软件代码](/13-read-code.md) +- [14 GitHub 连击](/14-streak-your-github.md) +- [15 GitHub 里程碑](/15-milestone.md) +- [16 寻找 awesome-xxx:探索可能性](/16-find-in-github.md) +- [18 GitHub 获 Star 指南](/18-get-star.md) +- [19 GitHub 上有趣的故事](/19-joke.md) - [999 FAQ](/999-faq.md) From f990d38dcfd0f995059407fe2d9594459e9b8848 Mon Sep 17 00:00:00 2001 From: Fengda Huang Date: Sat, 24 Aug 2024 20:54:16 +0800 Subject: [PATCH 7/7] docs: remove toc and fixed #85 --- README.md | 156 ------------------------------------------------------ 1 file changed, 156 deletions(-) diff --git a/README.md b/README.md index 1d266ae..9c72cfb 100644 --- a/README.md +++ b/README.md @@ -12,162 +12,6 @@ 但是过了很久都没有动静,今天是 2015.10.24,我想是时候完成这个目标了。 -## 目录 - -* [前言](http://github.phodal.com/#前言) - * [我与 GitHub 的故事](http://github.phodal.com/#我与github的故事) - * [GitHub 与收获](http://github.phodal.com/#github与收获) - * [GitHub 与成长](http://github.phodal.com/#github与成长) - * [为什么你应该深入 GitHub](http://github.phodal.com/#为什么你应该深入github) - * [方便工作](http://github.phodal.com/#方便工作) - * [获得一份工作](http://github.phodal.com/#获得一份工作) - * [扩大交际](http://github.phodal.com/#扩大交际) -* [创建开源项目](http://github.phodal.com/#创建开源项目) - * [取一个好的名字](http://github.phodal.com/#取一个好的名字) - * [挑选好 LICENSE](http://github.phodal.com/#挑选好-license) - * [官方主页](http://github.phodal.com/#官方主页) -* [Git 基本知识与 GitHub 使用](http://github.phodal.com/#git基本知识与github使用) - * [Git](http://github.phodal.com/#git) - * [Git初入](http://github.phodal.com/#git初入) - * [GitHub](http://github.phodal.com/#github) - * [版本管理与软件部署](http://github.phodal.com/#版本管理与软件部署) - * [GitHub与Git](http://github.phodal.com/#github与git) - * [在GitHub创建项目](http://github.phodal.com/#在github创建项目) - * [GitHub 流行项目分析](http://github.phodal.com/#github流行项目分析) - * [Pull Request](http://github.phodal.com/#pull-request) - * [我的第一个PR](http://github.phodal.com/#我的第一个pr) - * [CLA](http://github.phodal.com/#cla) -* [构建 GitHub 项目](http://github.phodal.com/#构建github项目) - * [如何用好 GitHub](http://github.phodal.com/#如何用好github) - * [敏捷软件开发](http://github.phodal.com/#敏捷软件开发) - * [测试](http://github.phodal.com/#测试) - * [CI](http://github.phodal.com/#ci) - * [代码质量](http://github.phodal.com/#代码质量) - * [模块分离与测试](http://github.phodal.com/#模块分离与测试) - * [代码模块化](http://github.phodal.com/#代码模块化) - * [自动化测试](http://github.phodal.com/#自动化测试) - * [Jshint](http://github.phodal.com/#jshint) - * [Mocha](http://github.phodal.com/#mocha) - * [测试示例](http://github.phodal.com/#测试示例) - * [代码质量与重构](http://github.phodal.com/#代码质量与重构) - * [Code Climate](http://github.phodal.com/#code-climate) - * [代码的坏味道](http://github.phodal.com/#代码的坏味道) -* [Git 提交信息及几种不同的规范](http://github.phodal.com/#git-提交信息及几种不同的规范) - * [工作写法](http://github.phodal.com/#工作写法) - * [常规写法](http://github.phodal.com/#常规写法) - * [开源应用、开源库写法](http://github.phodal.com/#开源应用开源库写法) -* [创建项目文档](http://github.phodal.com/#创建项目文档) - * [README](http://github.phodal.com/#readme) - * [在线文档](http://github.phodal.com/#在线文档) - * [可用示例](http://github.phodal.com/#可用示例) -* [改善 GitHub 项目代码质量:重构](http://github.phodal.com/#改善-github-项目代码质量重构) - * [为什么重构?](http://github.phodal.com/#为什么重构) - * [重构 uMarkdown](http://github.phodal.com/#重构umarkdown) - * [代码说明](http://github.phodal.com/#代码说明) - * [Intellij Idea 重构](http://github.phodal.com/#intellij-idea重构) - * [Rename](http://github.phodal.com/#rename) - * [Extract Method](http://github.phodal.com/#extract-method) - * [Inline Method](http://github.phodal.com/#inline-method) - * [Pull Members Up](http://github.phodal.com/#pull-members-up) - * [重构之以查询取代临时变量](http://github.phodal.com/#重构之以查询取代临时变量) -* [改善 GitHub 项目代码质量:测试](http://github.phodal.com/#改善-github-项目代码质量测试) - * [TDD](http://github.phodal.com/#tdd) - * [一次测试驱动开发](http://github.phodal.com/#一次测试驱动开发) - * [说说TDD](http://github.phodal.com/#说说tdd) - * [TDD思考](http://github.phodal.com/#tdd思考) - * [功能测试](http://github.phodal.com/#功能测试) - * [轻量级网站测试TWill](http://github.phodal.com/#轻量级网站测试twill) - * [Twill 登陆测试](http://github.phodal.com/#twill-登陆测试) - * [Twill 测试脚本](http://github.phodal.com/#twill-测试脚本) - * [Fake Server](http://github.phodal.com/#fake-server) -* [如何推广](http://github.phodal.com/#如何推广) - * [Marketing First](http://github.phodal.com/#marketing-first) - * [编写一个好的 README](http://github.phodal.com/#编写一个好的-readme) - * [这个项目做什么——一句话文案](http://github.phodal.com/#这个项目做什么一句话文案) - * [它解决了什么问题](http://github.phodal.com/#它解决了什么问题) - * [它有什么特性](http://github.phodal.com/#它有什么特性) - * [安装及 hello,world 示例](http://github.phodal.com/#安装及hello-world-示例) - * [技术文档](http://github.phodal.com/#技术文档) - * [技术文档](http://github.phodal.com/#技术文档-1) - * [更多的示例程序](http://github.phodal.com/#更多的示例程序) - * [编写技术文章、书籍](http://github.phodal.com/#编写技术文章书籍) - * [鼓励、吸引贡献者](http://github.phodal.com/#鼓励吸引贡献者) -* [开源项目维护](http://github.phodal.com/#开源项目维护) - * [Release](http://github.phodal.com/#release) -* [Git 工具推荐](http://github.phodal.com/#git-工具推荐) -* [GitHub 用户分析](http://github.phodal.com/#github用户分析) - * [生成图表](http://github.phodal.com/#生成图表) - * [数据解析](http://github.phodal.com/#数据解析) - * [Matplotlib](http://github.phodal.com/#matplotlib) - * [每周分析](http://github.phodal.com/#每周分析) - * [Python GitHub 每周情况分析](http://github.phodal.com/#python-github-每周情况分析) - * [Python 数据分析](http://github.phodal.com/#python-数据分析) - * [Python Matplotlib 图表](http://github.phodal.com/#python-matplotlib图表) - * [存储到数据库中](http://github.phodal.com/#存储到数据库中) - * [SQLite3](http://github.phodal.com/#sqlite3) - * [数据导入](http://github.phodal.com/#数据导入) - * [Redis](http://github.phodal.com/#redis) - * [邻近算法与相似用户](http://github.phodal.com/#邻近算法与相似用户) -* [如何在 GitHub “寻找灵感(fork)”](http://github.phodal.com/#如何在github寻找灵感fork) - * [Lettuce 构建过程](http://github.phodal.com/#lettuce构建过程) - * [需求](http://github.phodal.com/#需求) - * [计划](http://github.phodal.com/#计划) - * [实现第一个需求](http://github.phodal.com/#实现第一个需求) - * [实现第二个需求](http://github.phodal.com/#实现第二个需求) -* [如何以“正确的姿势”阅读开源软件代码](http://github.phodal.com/#如何以正确的姿势阅读开源软件代码) - * [阅读过程](http://github.phodal.com/#阅读过程) - * [示例](http://github.phodal.com/#示例) -* [GitHub 连击](http://github.phodal.com/#github连击) - * [100 天](http://github.phodal.com/#天) - * [40 天的提升](http://github.phodal.com/#天的提升) - * [100 天的挑战](http://github.phodal.com/#天的挑战) - * [140 天的希冀](http://github.phodal.com/#天的希冀) - * [200 天的 Showcase](http://github.phodal.com/#天的showcase) - * [一些项目简述](http://github.phodal.com/#一些项目简述) - * [Google Maps solr polygon 搜索](http://github.phodal.com/#google-map-solr-polygon-搜索) - * [技能树](http://github.phodal.com/#技能树) - * [365 天](http://github.phodal.com/#天-1) - * [编程的基础能力](http://github.phodal.com/#编程的基础能力) - * [技术与框架设计](http://github.phodal.com/#技术与框架设计) - * [领域与练习](http://github.phodal.com/#领域与练习) - * [其他](http://github.phodal.com/#其他-1) - * [500 天](http://github.phodal.com/#天-2) - * [500 天与 10000 小时](http://github.phodal.com/#天与10000小时) - * [编程的情绪周期](http://github.phodal.com/#编程的情绪周期) - * [有意图的练习](http://github.phodal.com/#有意图的练习) - * [预见性练习](http://github.phodal.com/#预见性练习) - * [小结](http://github.phodal.com/#小结) - * [365*2-7 天里](http://github.phodal.com/#天里) - * [编码的练习](http://github.phodal.com/#编码的练习) - * [See you Again](http://github.phodal.com/#see-you-again) -* [GitHub 里程碑](http://github.phodal.com/#github-里程碑) - * [写在 GitHub 的第 19999 个 Star 时](http://github.phodal.com/#写在github-的第-19999-个-star-时) - * [从创建开源框架说起](http://github.phodal.com/#从创建开源框架说起) - * [下一个开源项目](http://github.phodal.com/#下一个开源项目) -* [GitHub 寻宝指南](http://github.phodal.com/#github-寻宝指南) - * [寻找 Demo 节省时间](http://github.phodal.com/#寻找-demo-节省时间) - * [寻找脚手架:加快前期开发](http://github.phodal.com/#寻找脚手架加快前期开发) - * [寻找 awesome-xxx:探索可能性](http://github.phodal.com/#寻找-awesome-xxx探索可能性) - * [**模仿轮子**的轮子](http://github.phodal.com/#模仿轮子的轮子) - * [学习资源](http://github.phodal.com/#学习资源) - * [密钥/密码](http://github.phodal.com/#密钥密码) - * [私有、商用的 SDK 或代码](http://github.phodal.com/#私有商用的-sdk-或代码) - * [数据及数据制作工具](http://github.phodal.com/#数据及数据制作工具) - * [结论](#结论) -* [GitHub 获 Star 指南](#github-获-star-指南) - * [为什么我们 Star 一个项目](#为什么我们-star-一个项目) - * [我的获 Star 方式](#我的获-star-方式) - * [GitHub 流量分析](#github-流量分析) - * [GitHub 获 Star 指南技巧](#github-获-star-指南技巧) - * [技巧一:结合 SEO 技巧](#技巧一结合-seo-技巧) - * [技巧二:完整、易读的 README](#技巧二完整易读的-readme) - * [技巧三:社交分享](#技巧三社交分享) - * [技巧四:文章](#技巧四文章) - * [技巧五:把握 GitHub Trending](#技巧五把握-github-trending) - * [不是技巧的技巧:持续性](#不是技巧的技巧持续性) -* [FAQ](#faq) - * [如何看待 GitHub 项目刷 Star 行为?](http://github.phodal.com/#如何看待github-项目刷star行为) - ## License [![Phodal's Book](http://brand.phodal.com/shields/book-small.svg)](https://www.phodal.com/)