git 的基本使用
- http://pan.baidu.com/s/1dFGIplJ 不用谢,只要打开一直点就好了
- 先在github上创建一个仓库 得到仓库地址https://github.com/*/-
- 找到你要上传的projects然后右键就会出现git bush,git gui,选git bush
- git init 初始化 git add . 添加全部
- git remote add origin “https://github.com/*/-” 设置远程仓库
- git commit -m “First commit” 记录
- git push origin master
git 还有许多命令,git clone啊git pull等等,这只是最简单的把本地代码同步到github上!