2017年5月3日
摘要: 今天研究sourceTree,在此小结一下 1.下载链接:https://www.atlassian.com/software/sourcetree 2.安装,注册账户登录,连接到GitHub账号上,经过一系列简单的配置 3.开始使用sourceTree向GitHub推送文件(在此现在本地准备一个g 阅读全文
posted @ 2017-05-03 14:23 yangh_martin 阅读(173) 评论(0) 推荐(0)
摘要: 注: 如果你使用Windows系统,为了避免遇到各种莫名其妙的问题,请确保目录名(包括父目录)不包含中文 学习git文档推荐:http://www.liaoxuefeng.com/wiki/0013739516305929606dd18361248578c67b8067c8c017b000" (下面 阅读全文
posted @ 2017-05-03 10:20 yangh_martin 阅读(115) 评论(0) 推荐(0)
摘要: function formateDate(date,s,m){ //参数1:时间戳;参数2:年月日连接符;参数3:时分秒连接符 year = date.getFullYear(); month = date.getMonth()+1; day = date.getDate(); hour = date.getHours(); minute = date.g... 阅读全文
posted @ 2017-05-03 09:54 yangh_martin 阅读(149) 评论(0) 推荐(0)