# pytest_locust **Repository Path**: langlangagoo/pytest_locust ## Basic Information - **Project Name**: pytest_locust - **Description**: locust 压测分析 - **Primary Language**: Python - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-08-22 - **Last Updated**: 2023-08-22 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ```` #### 参与贡献 1. Fork 本仓库 2. 新建 Feat_xxx 分支 3. 提交代码 4. 新建 Pull Request #### 特技 1. 使用 Readme\_XXX.md 来支持不同的语言,例如 Readme\_en.md, Readme\_zh.md 2. Gitee 官方博客 [blog.gitee.com](https://blog.gitee.com) 3. 你可以 [https://gitee.com/explore](https://gitee.com/explore) 这个地址来了解 Gitee 上的优秀开源项目 4. [GVP](https://gitee.com/gvp) 全称是 Gitee 最有价值开源项目,是综合评定出的优秀开源项目 5. Gitee 官方提供的使用手册 [https://gitee.com/help](https://gitee.com/help) 6. Gitee 封面人物是一档用来展示 Gitee 会员风采的栏目 [https://gitee.com/gitee-stars/](https://gitee.com/gitee-stars/) 使用以下命令将远程库的代码拉取到本地,然后再进行推送: ``` Copy Codegit pull origin ``` 其中 `` 是你要拉取的分支名。如果本地仓库中不存在该分支,则需要先使用 `git checkout -b ` 命令创建并切换到该分支。 拉取代码后,可以再次执行 `git push` 命令进行推送。如果推送失败,可以尝试使用 `--force` 选项强制推送: ``` Copy Codegit push --force origin ``` 注意:强制推送会覆盖远程仓库中的代码,慎用。在强制推送前,请确保你已经充分了解可能造成的影响,并备份好重要的数据。 ## git 基础操作 $ git add . #将当前目录所有文件添加到git暂存区 $ git commit -m "my first commit" #提交并备注提交信息 $ git push origin master #将本地提交推送到远程仓 git push -u origin "master" ````