Git 和 GitHub 入门指南(ZoL 版)
首次设置
git config --global user.name "My Name"
git config --global user.email [email protected]克隆初始仓库
git clone https://github.com/<your-account-name>/zfs.gitcd zfs
git remote add upstream https://github.com/zfsonlinux/zfs.git准备进行修改
git checkout -b my-new-branch在推送前测试你的补丁
提交你的修改以便推送
推送并创建 pull request
修正 pull request 中的问题
维护你的仓库
将提交回移植到发布分支
最后说明
最后更新于