随笔分类 -  git版本控制工具

摘要:1. 为本地所有的 git仓库 中配置自己的 git账户名称 和 邮箱,用于记录每次提交时所记录下来的日志 git config --global user.name "Your Name" git config --global user.email "email@example.com" 2. 阅读全文
posted @ 2017-06-15 20:18 s_qiu 阅读(160) 评论(0) 推荐(0)
摘要:1、从公共远程fork一份自己的本地远程之后,从本地远程 clone 到本地 2、将本地代码跟公共远程代码做关联配置 git remote add upstream https://github.com/volojs/create-template.git 3、此时查看本地代码所配置的远程有哪些 g 阅读全文
posted @ 2017-04-17 11:13 s_qiu 阅读(672) 评论(0) 推荐(0)