摘要: Git 全局设置: git config --global user.name "寂寞的钢蛋儿" git config --global user.email "guanchaoguo@qq.com" 创建 git 仓库: mkdir dicom-web cd dicom-web git init 阅读全文
posted @ 2024-09-05 18:15 vx_guanchaoguo0 阅读(11) 评论(0) 推荐(0)
摘要: 查看分支的源头 git reflog show dev 拉出分的分支 (8d6f4f17 提交id) git checkout -b rimag 8d6f4f17 阅读全文
posted @ 2024-09-05 12:54 vx_guanchaoguo0 阅读(21) 评论(0) 推荐(0)
摘要: 安装 sudo apt-get isntall postgresql 登录(无需密码) sudo -u postgres psql 修改密码 alter user postgres with password '123456'; 新密码登录 psql -U postgres -d postgres 阅读全文
posted @ 2024-09-05 11:29 vx_guanchaoguo0 阅读(11) 评论(0) 推荐(0)
摘要: 报错如下 实际设置 需要加上级包名 通过 apps.py 统一处理 阅读全文
posted @ 2024-09-05 10:57 vx_guanchaoguo0 阅读(6) 评论(0) 推荐(0)