github使用
1、删除某个项目: 在repositories界面点进想删除的项目,点右面的Settings,最下面有delete的选项。
2、复制某个github上的项目: $ git clone git@github.com:fanfoudroid/fanfoudroid.git
3、对修改添加描述: $ git commit –m "discription"
4、将程序上传到服务器: $ git push origin master
5、添加远程库 :$ git remote add "url"
6、从源项目同步源码: $git fetch origin