Skip to main content

linux常用命令

· One min read
chenweibo

杀端口号命令

#杀端口
netstat -ano | findstr 端口号
taskkill /f /pid 进程号

git

# 强拉远程分支覆盖
git fetch --all && git reset --hard origin/master && git pull