02 2022 档案
摘要:对文件进行修改后,想要撤销修改,可以使用 git checkout . 【注意最后的点号】 本来要对目录执行 git stash 对修改进行压栈,却错误地顺手写成了 git stash pop,把之前未知的修改弹出了 此时,可以使用 git reset HEAD filename git statu
阅读全文
摘要:代码管理gitlab gitlist gitee gitHub 工单系统MantisBT 维基系统dokuwiki 集成发布Jenkins 权限管理ldap 邮件系统Tencent企业邮箱 数据库mysql 虚拟机 qemu kvm Virtual Machine Manager 录屏软件kazam
阅读全文
摘要:git设置rebase,可以有效防止代码merge过度、代码误覆盖的问题 git config --global pull.rebase true 一般的代码提交过程如下:1. git stash 把自己改的内容压栈,就是存起来2. git pull 第1步执行后本地没有改动了,可以pull代码了3
阅读全文
摘要:.nodeConfig{ table { margin-top: 10px; width: 100%; // width: 98%; // margin-left: 2%; td{ font-size: 1.3rem; color: white; border-right: 0px solid wh
阅读全文
摘要:import React from 'react'; export default function EmptyRow(props) { let arr = []; for (let i = 0; i < props.length; i ++) { arr.push(i); } return ( <
阅读全文
摘要:.warningPopup .warningText { margin-bottom: 5%; color: #21fffa; } .warningPopup .closeBtn { position: absolute; width: 9%; height: 9%; right: 7px; top
阅读全文
摘要:<RangePicker inputReadOnly={"true"}
阅读全文
摘要:<div className={user.role + "" "7" ? "sectorConfig" : "sectorConfigCommon"}>
阅读全文
摘要:<tr style={{display: flagNoData 0 ? "" : "none", height: "200px", color: "white", fontSize:'1.8rem', textAlign:'center'}}> <td colSpan={9}>未查到相关数据</td
阅读全文
摘要:.charsOverflowStyle { text-overflow: ellipsis; overflow: hidden; white-space: nowrap; margin-left: 20px; }
阅读全文
摘要:const confirmReadAll = () => { for (let i = 0; i <= list.length - 1; i++) { confirmReadOnes(list[i].alert_id); } } const confirmReadOnes = (alert_id)
阅读全文
摘要:1. sudo apt update 【如果执行中出现错误,注意查看是否多行命令写到一行中了】 sudo apt install software-properties-common apt-transport-https curl 2. curl -sSL https://packages.mic
阅读全文
摘要:1 登录docker仓库 - 使用明文的登录信息 docker login -u 【username】 -p 【password】 repo.xxx.top:28802 WARNING! Using --password via the CLI is insecure. Use --password
阅读全文