# first_trial **Repository Path**: furtherbank/first_trial ## Basic Information - **Project Name**: first_trial - **Description**: 这只是一个测试 - **Primary Language**: TypeScript - **License**: GPL-3.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-01-30 - **Last Updated**: 2023-01-30 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # first_trial #### 任务 协作流程请看 [工作流程](https://cart-burying-studio.yuque.com/org-wiki-cart-burying-studio-hgu0nv/content/zwnkni55qmibf6oa) 这篇文档,其中包括教程 先加入仓库,然后每个人拉一下 master 分支,checkout 到自己的分支, 自己的分支名统一成`dev_你的姓名`,以便于调整。 修改内容,就是,在仓库中创建一个txt文件,文件名为`dev_你的姓名.txt`,随便写点内容,提交即可 提交推送之后,建立 pull request,邀请一个别人进行code review,直接给过就可以 # 命令提示符的使用 * dir命令 * cd命令:用于跳转命令行当前的文件夹 ## dir命令 ```cmd dir #显示当前路径下的文件 ``` ## cd命令 ```cmd cd/ #回到根目录 cd.. #回到上层目录 [该目录所在盘区]: cd [在盘区下相对路径] ``` # git的使用 https://blog.csdn.net/StrangeStranger/article/details/124601799 ## git配置 ```cmd git config --global user.name "John Doe" git config --global user.email johndoe@example.com ``` ## git下载(克隆)仓库 ```cmd git clone [url] ``` ## git更新到仓库 ```cmd git status # 查看当前信息 git add . git commit -m "写点什么东西" git push ``` ## 分支操作 ```cmd git branch #创建分支 git branch -d #删除分支 git branch -r #查看当前所有分支 git checkout #切换分支 git merge dev #合并分支 git remote git pull git push ```