摘要:
![](http://images2017.cnblogs.com/blog/795862/201801/795862-20180119142703256-360472569.png) ![](http://images2017.cnblogs.com/blog/795862/201801/795862-20180119142713646-1480125266.png) 阅读全文
摘要:
1. 用户名邮箱的作用 用户名和邮箱地址是本地git客户端的一个变量,不随git库而改变。 每次commit都会用用户名和邮箱纪录。 github的contributions统计就是按邮箱来统计的。 2. 查看用户名和邮箱地址: $ git config user.name $ git config 阅读全文
摘要:
有的时候错误提交了commit,需要版本退回. 先用git log查看一下节点版本号commit_id $ git log 再用git reset退回 $ git reset soft commit_id 回退到上一个 提交的节点 代码还是原来你修改的 $ git reset –hard commi 阅读全文
摘要:
查看远程库 $ git remote vorigin https://github.com/autoliuweijie/MachineLearning.git (fetch)origin https://github.com/autoliuweijie/MachineLearning.git (pu 阅读全文
摘要:
今天重新回顾了一下Git使用教程,流程如下: 1. 设置SSH key,并将rsa秘钥添加到Git上 "参考这篇" 2. 下载远程代码 git clone [url] 3. 进入文件夹中 cd foldname 4. 查看所有分支 git branch a 5. 切换到自己需要的分支 git che 阅读全文