cmd中的相关命令 和git 相关命令

netstat -ba 查看对应的端口占用情况
netstat -ano 查看端口占用情况


image.png

netstat -ano|findstr "8082"查看指定端口占用情况


image.png

tasklist|findstr "22504" //查看PID对应的进程
tskill 文件名 就可结束相应的进程
shift+点击鼠标右键 在文件夹下显示命令行提示符

git add -u //将add过的文件提交
git add -a//提交所有 包括删除
git add . 提交目前所有

你可能感兴趣的:(cmd中的相关命令 和git 相关命令)