摘要: https://www.jianshu.com/p/c74ae40b5127 前言 情况一:项目在本地从零开发,未commit或者pull过任何Git版本,需要将自己本地的项目上传到GitLab新建的项目中。 情况二:项目是从远端clone到本地进行开发的,需要将该项目迁移到新建的GitLab项目中 阅读全文
posted @ 2020-10-13 09:44 名成在天下 阅读(408) 评论(0) 推荐(0)
摘要: public boolean integrityCheck(String weatherStr, String checkSum) { int ch = weatherStr.charAt(0); for (int i = 1; i < weatherStr.length(); i++) { ch 阅读全文
posted @ 2020-08-10 17:32 名成在天下 阅读(262) 评论(0) 推荐(0)
摘要: public LocalDateTime convertUTCToLocalTime(String timeStamp) { Long timeLong = Long.parseLong(timeStamp) * 1000L; Date timeDate = new java.util.Date(t 阅读全文
posted @ 2020-08-10 17:28 名成在天下 阅读(2651) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/pejsidney/p/9199115.html 阅读全文
posted @ 2020-06-22 16:01 名成在天下 阅读(161) 评论(0) 推荐(0)
摘要: 1.登陆账号 email git config --global user.name "xxxx" git config --global user.email "xxxxxxxx" 2.1新建仓库之后上传项目 git init git add --all git commit -m "Initia 阅读全文
posted @ 2020-06-17 22:43 名成在天下 阅读(251) 评论(0) 推荐(0)
摘要: // 创建一个Map Map<String, Object> infoMap = new HashMap<>(); infoMap.put("name", "zhagnsan"); infoMap.put("age", "12"); // 传统的Map迭代方式 for (Map.Entry<Stri 阅读全文
posted @ 2020-06-05 17:05 名成在天下 阅读(114) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/xiaostudy/p/11664076.html 阅读全文
posted @ 2020-05-07 17:25 名成在天下 阅读(307) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/hellozpc/article/details/81436980 https://www.cnblogs.com/dz-boss/p/10817100.html 阅读全文
posted @ 2020-04-29 10:06 名成在天下 阅读(123) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/weixin_39735923/article/details/79288578 阅读全文
posted @ 2020-04-29 09:51 名成在天下 阅读(199) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/cr330326/p/7388143.html 阅读全文
posted @ 2020-04-20 09:45 名成在天下 阅读(103) 评论(0) 推荐(0)