Linux
- 开启防火墙:service firewalld start
- 关闭防火墙:service firewalld stop
- 重启防火墙:service firewalld restart
git
- 查看本地仓库连接的远程仓库:git remote -v
- 修改本地才可以连接的远程仓库的名字:git remote rename ‘old name’ ‘new name’
- 推送到远程:git push -u remoteRepositoriesName ‘本地分支名’ ‘远程分支名’
其它
- linux源码下载攻略:http://www.taodudu.cc/news/show-4790176.html?action=onClick
- 打jar包:https://www.xjx100.cn/news/452018.html?action=onClick
网络
- 查看端口占用情况:netstat -aon |findstr “:端口号”