
github
文章平均质量分 59
ayst123
这个作者很懒,什么都没留下…
展开
-
第一次使用 github
今天开始学习 github 的使用, 在网上搜索了下 这个 pdf 的帮助很大: http://www.ossxp.com/doc/git/gotgit-part1.pdf github 采用分布式管理,方便多人协同编写代码。 git commit 用于向本地提交代码 git push 和 git pull 分别是向数据库提交和下载原创 2014-03-13 09:26:12 · 647 阅读 · 0 评论 -
第一次使用 github 的流程
在桌面设一个文件夹 /mygit cd mygit git i原创 2014-07-09 14:23:16 · 610 阅读 · 0 评论 -
Git, Protocol https not supported or disabled in libcurl
想 git clone https:, 但发现出现 Protocol https not supported or disabled in libcurl 的错误。解决的办法: 1. 更新 git >1.9 2. 更新 curl, 我安装的是 version 7.42.1. 可用 which 命令查看package 是安装在哪了 如: which git, which curl原创 2015-05-03 08:50:13 · 1507 阅读 · 0 评论 -
Git, Misc
不用每次输入账号和密码的方法 对单个 repo 设置 user.name 和 user.emailaddress 不用每次输入账号和密码的方法 git config credential.helper store git push https://github.com/repo.git Username for ‘https://github....原创 2018-05-10 14:59:51 · 403 阅读 · 0 评论