标签:blog http os io 文件 div 代码 log
git clone url
建立本地仓库,并提交至git-hub
生成ssh的公钥私钥对:ssh-keygen
从pc端打开生成的公钥,id_rsa.pub,复制并黏贴至git-hub的ssh-keys
cd至程序文件夹,输入 git init
然后输入git add .(.代表所有文件也可以输入具体的单个文件名)
然后输入git commit -m “任意注释”
创建一个remote git remote add origin url(ssh、https、subversion)
最后提交 git push origin master
从remote获取最新版本 git pull origin master
git log 获取本地提交历史
git revert 版本序列号
标签:blog http os io 文件 div 代码 log
原文地址:http://www.cnblogs.com/ginikeer/p/3921483.html