ICON

来源:互联网 发布:厦门住宿推荐 知乎 编辑:程序博客网 时间:2024/04/30 19:54
最近为了制作按钮上的图示伤透了脑筋,东找西找,发现了一个很好用的icon制作网站,有2000多个icon可以下载,还可以线上修改,挺方便的,提供给各位参考。

http://www.iconinventor.com


如何使用Github进行代码提交?

1、先安装git

win 下的git安装 http://help.github.com/win-git-installation/   
mac 下的git安装 http://help.github.com/mac-git-installation/   
linux 下的git安装 http://help.github.com/linux-git-installation/  

2、安装完毕后使用你的github帐号进行登录

3、在Github创建一个repository

4、打开Github命令窗口,并cd到你本地电脑的存放代码的目录

5、输入 

git init

进行初始化

6、输入 

git commit -m "提交备注信息"

进行备注本次提交的内容描述

7、输入

git remote add origin git@github.com:wangchongan/DomainReg.git git push -u origin master

提交代码至Github

如何使用 Github下载 代码 

1、找到Github上要下载的代码页面,点击右上角的Fork按钮,会在你的帐号下生成一个Reposity

2、复制git地址,类似于:git@github.com:wangchongan/weixin-robot-java.git

3、到本地要存放代码的目录下,使用如下命令下载代码:

git clone git@github.com:wangchongan/weixin-robot-java.git

0 0