VS code
查看json文件:
不安装插件的做法: JSON美化:先在状态栏右下角选择语言种类(高亮规则)为JSON,然后选中要美化的JSON,Ctrl+Shift+P搜索 format ,执行即可。 JSON(任意文本内容)合并为一行:选中文本,Ctrl+Shift+P 搜索 join line ,执行即可。
Pycharm
pycharm导入自己的文件标红,且无法跳转
https://blog.csdn.net/qq_30622831/article/details/80978118
debug调试时使用参数:
https://blog.csdn.net/wishchin/article/details/78560725
调整字体大小:
File -> setting -> Editor -> Font
更改缩进
https://www.py.cn/tools/pycharm/22012.html
Git
git add . 说明:重新提交到暂存区
git commit -m “提交版本管理” 说明:提交到本地仓库,将按照新的.gitignore文件管理追踪管理项目
第一次使用时要配置
git config --global user.email "konglyv@163.com"git config --global user.name "Lingyu Kong"
Create a new repository
git clone git@www.gitlab.cyber.ai:kongly/tt.gitcd tttouch README.mdgit add README.mdgit commit -m "add README"git push -u origin master
Push an existing folder
cd existing_foldergit initgit remote add origin git@www.gitlab.cyber.ai:kongly/tt.gitgit add .git commit -m "Initial commit"git push -u origin master
Push an existing Git repository
cd existing_repogit remote rename origin old-origingit remote add origin git@www.gitlab.cyber.ai:kongly/tt.gitgit push -u origin --allgit push -u origin --tags
