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文件管理追踪管理项目

第一次使用时要配置
  1. git config --global user.email "konglyv@163.com"
  2. git config --global user.name "Lingyu Kong"

Create a new repository
  1. git clone git@www.gitlab.cyber.ai:kongly/tt.git
  2. cd tt
  3. touch README.md
  4. git add README.md
  5. git commit -m "add README"
  6. git push -u origin master

Push an existing folder
  1. cd existing_folder
  2. git init
  3. git remote add origin git@www.gitlab.cyber.ai:kongly/tt.git
  4. git add .
  5. git commit -m "Initial commit"
  6. git push -u origin master

Push an existing Git repository
  1. cd existing_repo
  2. git remote rename origin old-origin
  3. git remote add origin git@www.gitlab.cyber.ai:kongly/tt.git
  4. git push -u origin --all
  5. git push -u origin --tags