12 2022 档案
摘要:1、克隆代码 git clone url 2、暂存更改 git add . 3、提交更改 git commit -m "提交代码" 4、将本地代码推送到远程 git push git push -u origin test_branch 5、拉取远程最新代码 git pull 6、查看当前分支及状态
阅读全文
摘要:post-raw格式: export function saveScriptInfo(parameter) { return request({ url: '/test/scriptFile/save', method: 'post', data: parameter }) } post-formD
阅读全文