07 2021 档案
摘要:openssl x509部分命令打印出证书的内容:openssl x509 -in cert.pem -noout -text打印出证书的系列号openssl x509 -in cert.pem -noout -serial打印出证书的拥有者名字openssl x509 -in cert.pem -
阅读全文
摘要:git fetch 远程仓库 想要的分支 git checkout -b 新分支 远程仓库/想要的分支 git pull 远程仓库 新分支
阅读全文
摘要:az vm list -d -o json --query "[?name=='vm-name']" | jq '.[0].powerState' 输出vm信息 az vm list -d -o table 输出指定vm信息 az vm list -d -o table --query "[?nam
阅读全文
摘要:查看远程分支和本地分支 git branch -va 当我想从远程仓库里拉取一条本地不存在的分支时: git checkout -b 本地分支名 origin/远程分支名 例如: 切换远程分支 git checkout -b release origin/release-9.4
阅读全文
摘要:问题: 执行切换代码分支 git checkout featrue_2019-06-24 ,报错如下: error: you need to resolve your current index first 执行git pull代码时报错: Pull is not possible because
阅读全文