GitHub 神级仓库:Build Your Own X — 497k Stars 的编程学习圣经 | Build Your Own X Guide

什么是 Build Your Own X? Build Your Own X 是 GitHub 上星标接近 500,000 的传奇仓库,专门收录"从零手写 XX"的教程合集。 地址:github.com/codecrafters-io/build-your-own-x 这个仓库的核心理念是: “What I cannot create, I do not understand.” — Richard Feynman(费曼,诺贝尔物理学奖得主) ...

2026年4月28日 · 3 分钟 · 91Chang

如何配置 SSH Key 连接 GitHub | How to Set Up SSH Key for GitHub

为什么要用 SSH Key? 使用 HTTPS 连接 GitHub 每次推送都需要输入账号密码(或 Token),而配置 SSH Key 之后,完全免密操作,更安全也更方便。 Why Use SSH Key? HTTPS requires entering your credentials every push. With SSH Key configured, you get password-free access — more secure and convenient. ...

2026年4月27日 · 2 分钟 · 91Chang

10个必学的 Git 命令 | 10 Essential Git Commands

为什么要学 Git 命令? 虽然有很多 Git 图形界面工具,但掌握命令行操作能让你更高效、更灵活地使用 Git。 Why Learn Git Commands? While GUI tools exist, knowing the command line makes you faster and more flexible. 1. git init — 初始化仓库 在当前目录创建一个新的 Git 仓库。 ...

2026年4月25日 · 2 分钟 · 91Chang

如何克隆 GitHub 仓库 | How to Clone a GitHub Repository

什么是克隆?| What is Cloning? 克隆(Clone)就是将 GitHub 上的远程仓库完整复制一份到你的本地电脑,包括所有文件和历史记录。 Cloning means copying a remote GitHub repository to your local machine — including all files and history. 找到仓库地址 | Find the Repository URL 打开你要克隆的 GitHub 仓库页面 点击绿色的 Code 按钮 选择 HTTPS 标签 复制地址(格式如 https://github.com/username/repo.git) 执行克隆命令 | Run the Clone Command 打开终端(Terminal / PowerShell),进入你想存放项目的目录,然后运行: ...

2026年4月24日 · 1 分钟 · 91Chang

如何将代码推送到 GitHub | How to Push Code to GitHub

推送的完整流程 | The Full Push Workflow 将本地修改推送到 GitHub 分为三步:暂存 → 提交 → 推送 The process has three steps: Stage → Commit → Push 修改文件 → git add → git commit → git push → GitHub 第一步:查看修改状态 git status 红色文件名 = 已修改但未暂存 绿色文件名 = 已暂存待提交 ...

2026年4月23日 · 1 分钟 · 91Chang