摘要: 1.git reset:恢复到指定版本号,但会导致后面的版本全无记录 1.查看版本号 git reflog git log gitlab上查看提交版本号 2.使用“git reset --hard 目标版本号”命令将版本回退 3.使用“git push -f”强制提交更改 2.git revert: 阅读全文
posted @ 2022-11-22 15:59 阿里小罗斯 阅读(6524) 评论(0) 推荐(0) 编辑
摘要: 解决方案 来源:https://blog.csdn.net/weixin_43185775/article/details/125973529 阅读全文
posted @ 2022-10-31 14:18 阿里小罗斯 阅读(40) 评论(0) 推荐(0) 编辑
摘要: git clone http://username:password@xxx.com/console/project-name.git 阅读全文
posted @ 2021-11-26 09:29 阿里小罗斯 阅读(720) 评论(0) 推荐(0) 编辑
摘要: 1. 查看网卡名称 ip addr 2.修改网卡配置文件 vim /etc/sysconfig/network-scripts/ifcfg-ens33 (最后一个为网卡名称) IPADDR=192.168.136.136 #静态ip地址 NETMASK=255.255.255.0 #子网掩码 GAT 阅读全文
posted @ 2021-11-03 16:32 阿里小罗斯 阅读(95) 评论(0) 推荐(0) 编辑
摘要: 转:https://defcon.cn/214.html 阅读全文
posted @ 2021-11-03 13:56 阿里小罗斯 阅读(357) 评论(0) 推荐(0) 编辑
摘要: 参考:https://www.cnblogs.com/skyblue123/p/12610641.html 阅读全文
posted @ 2021-08-31 09:50 阿里小罗斯 阅读(142) 评论(0) 推荐(0) 编辑
摘要: 看到一篇言简意赅,很不错的文章,记录下 摘录至:https://www.jianshu.com/p/3a3edbcd8f24 阅读全文
posted @ 2021-08-20 09:33 阿里小罗斯 阅读(34) 评论(0) 推荐(0) 编辑
摘要: 链接地址:https://www.cnblogs.com/gwkzb/p/12511883.html 阅读全文
posted @ 2021-08-05 14:00 阿里小罗斯 阅读(92) 评论(0) 推荐(0) 编辑
摘要: 1.是什么 Tapdata 是一款国产的数据服务产品,旨在帮助企业打破多个数据孤岛,可大幅度提高数据团队工作效率。 主要专注于数据的迁移、转换与发布,并提供实时性,基于数据库日志的实时迁移或同步。 官网地址:https://tapdata.net/ 2.为什么需要 是否有一个中央化数据存储的地方供其 阅读全文
posted @ 2021-07-26 10:08 阿里小罗斯 阅读(1329) 评论(1) 推荐(0) 编辑
摘要: //日期字符串格式为20210506 String coverageCharDate = "20210506"; //日期格式化变为2021-05-06(如果是20210506格式,格式化格式为yyyyMMdd) DateTimeFormatter inFormat = DateTimeFormat 阅读全文
posted @ 2021-06-04 10:33 阿里小罗斯 阅读(1584) 评论(0) 推荐(0) 编辑