番外:如何给github上的开源项目贡献代码?

此番操作,对于已经贡献过的来说很easy,对于从来没有玩过的人来说,有点懵逼。

ok, 教学开始。~

举个例子:比如你看到LogUtils库,想为这个库贡献代码。那么大体的操作步骤如下:

  • 1 克隆他的项目。[email protected]:pengwei1024/LogUtils.git
    • shell 命令: git clone xlog [email protected]:pengwei1024/LogUtils.git # clone 目标仓库
  • 2 fork 他的项目,然后 给本地项目添加fork的远程仓库
    • shell 命令:git remote add myfork [email protected]:pythoncat1024/LogUtils.git # add 自己的远程仓库
  • 3 在本地创建新分支,并在新分支上面修改提交。
    • 大致操作可以是这样子的:
git checkout -b frature
vi .gitignore
git add .
git commit -m "add a new feature"
git push -u origin feature
  • 4 去github上面,自己的项目里去执行pull request操作。
  • 5 等待目标库的维护者给你合入代码就好了。

你可能感兴趣的:(生活本来的样子)