标签:
Windows下Github客户端的配置和使用步骤如下
ssh-keygen -t rsa -C "xxxxxxxxx@qq.com"
git init //初始化
git config --global user.name "name" //设置用户名
git config --global user.email "email" //设置邮箱
git remote add git@github.com:ywlaker/uc-web.git //添加远程仓库,要替换成自己的用户名和仓库名
git pull origin master //把仓库的资料拉过来,比如readme文件和license文件
git add ./* //添加本地工程文件
git commit -m "comment" //提交到缓存
git push -u origin master //提交到远程仓库
标签:
原文地址:http://www.cnblogs.com/ywlaker/p/5166888.html