摘要: 教程:http://rogerdudler.github.io/git-guide/index.zh.html1、安装配置安装git: http://git-scm.com/downloads初始配置: git config --global user.name "你的名字" git config --global user.email "你的Email"生成ssh key: ssh-keygen -t rsa -C "xxxxx@xxxxx.com"创建新仓库创建新文件夹,打开,然后执行创建新仓库: git init克隆项目: gi 阅读全文
posted @ 2014-01-12 19:44 Nob 阅读(251) 评论(0) 推荐(0) 编辑