10 2020 档案
摘要:常用的有三种删除方式:通过 delete、truncate、drop 关键字进行删除;这三种都可以用来删除数据,但场景不同 一、从执行速度上来说 drop > truncate >> DELETE 二、从原理上讲 DELETE DELETE from TABLE_NAME where xxx 1、D
阅读全文
摘要:更新 apt库 apt-get update 安装go sudo apt-get install golang-go 鉴定是否安装成功 go version 配置全局变量 #修改~/.bashrc vim ~/.bashrc #添加Gopath路径 export GOPATH=/usr/local/
阅读全文
摘要:1.删除本地tag: git tag -d tag 2.批量删除本地tag git tag -l| awk '/^test_v1.[0-9]{1,}.[0-9]{1}$/ {print $1}' | xargs git tag -d 3.删除远程tag git push origin --delet
阅读全文