摘要: 1、回退一个commit版本 git reset --soft HEAD~1 记录一些git的操作: 写完代码之后,我们一般这样做:1、git add . //添加所有文件2、git commit -m “本功能全部完成”△、执行完commit后,想撤回commit,怎么办?△、这样凉拌:git r 阅读全文
posted @ 2023-03-31 09:41 lovleo 阅读(7) 评论(0) 推荐(0) 编辑
摘要: #### 1、查看网卡信息 ```ip addr``` #### 2、修改网卡配置 ```vi /etc/sysconfig/network-scripts/ifcfg-ens192``` ```propertiesTYPE=EthernetPROXY_METHOD=noneBROWSER_ONLY 阅读全文
posted @ 2023-03-27 17:40 lovleo 阅读(17) 评论(0) 推荐(0) 编辑
摘要: sudo passwd root apt-get install lrzsz 阅读全文
posted @ 2023-03-25 14:35 lovleo 阅读(4) 评论(0) 推荐(0) 编辑
摘要: su: Authentication failure 原因可能是还没有设置su,需要设置su 解决方法:输入sudo passwd root 阅读全文
posted @ 2023-03-25 14:00 lovleo 阅读(11) 评论(0) 推荐(0) 编辑
摘要: https://www.runoob.com/w3cnote/windows-finds-port-usage.html 查看被占用端口对应的 PID C:\Users\M>netstat -aon|findstr 3000 TCP 0.0.0.0:3000 0.0.0.0:0 LISTENING 阅读全文
posted @ 2023-02-14 16:59 lovleo 阅读(33) 评论(0) 推荐(0) 编辑
摘要: create-react-app 工具初始化react项目 https://create-react-app.dev/docs/getting-started npx npx create-react-app my-app npm npm init react-app my-app Yarn yar 阅读全文
posted @ 2023-02-14 13:48 lovleo 阅读(22) 评论(0) 推荐(0) 编辑
摘要: 1 private List<User> users = Arrays.asList( 2 new User("1001", "John", 16), 3 new User("1002", "Carly", 17), 4 new User("1003", "Tom", 11), 5 new User 阅读全文
posted @ 2023-02-02 18:54 lovleo 阅读(14) 评论(0) 推荐(0) 编辑
摘要: https://www.jianshu.com/p/0d78d1b1c611 阅读全文
posted @ 2023-02-02 17:22 lovleo 阅读(9) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/weixin_30844865/article/details/117475331 阅读全文
posted @ 2023-02-02 16:15 lovleo 阅读(71) 评论(0) 推荐(0) 编辑
摘要: 1.display:flex https://blog.csdn.net/weixin_46380993/article/details/104572253 阅读全文
posted @ 2022-12-26 17:39 lovleo 阅读(13) 评论(0) 推荐(0) 编辑