写完代码之后,需要将代码提交到公司的远程仓库。
下面演示如何在pycharm中提交代码到仓库。
安装git 工具
下载
从官网进行下载
https://git-scm.com/downloads
Git-2.36.1-64-bit.zip
安装
将下载下来的安装包,双击打开,按照默认的安装方式,直接【下一步】安装即可。
提交代码到远程仓库
新建仓库
提交代码到远程仓库
参考
https://gitee.com/help/articles/4122
1. 打开命令行,配置git 基本信息
初次使用git 配置基本信息
- 用户名
- 邮箱 ```python C:\Users\zengy>git config —global user.name “zhao**“
C:\Users\zengy>git config —global user.email “zhao*@outlook.com”
![image.png](https://cdn.nlark.com/yuque/0/2022/png/87080/1653309761130-2ae05121-ba3f-42e8-9575-f7df14a022ed.png#clientId=u98f8f711-c160-4&crop=0&crop=0&crop=1&crop=1&from=paste&height=183&id=u253eb47f&margin=%5Bobject%20Object%5D&name=image.png&originHeight=229&originWidth=1019&originalType=binary&ratio=1&rotation=0&showTitle=false&size=20580&status=done&style=none&taskId=ub3d74280-7ace-4b25-9fcb-c25b741e5b1&title=&width=815.2)
<a name="vNQ9G"></a>
### 2.提交代码到仓库暂缓区
打开自己的项目<br />![image.png](https://cdn.nlark.com/yuque/0/2022/png/87080/1653309867535-1216ba0c-3e5e-452b-a642-5d984551df01.png#clientId=u98f8f711-c160-4&crop=0&crop=0&crop=1&crop=1&from=paste&height=644&id=ue839e606&margin=%5Bobject%20Object%5D&name=image.png&originHeight=805&originWidth=1050&originalType=binary&ratio=1&rotation=0&showTitle=false&size=80687&status=done&style=none&taskId=u32d84757-50e6-445e-bd42-be60b12037a&title=&width=840)<br />切换到项目的根目录下<br />![image.png](https://cdn.nlark.com/yuque/0/2022/png/87080/1653309959990-25c673c2-cdf4-4d97-874c-f9e8f78df47a.png#clientId=u98f8f711-c160-4&crop=0&crop=0&crop=1&crop=1&from=paste&height=516&id=u919a79b8&margin=%5Bobject%20Object%5D&name=image.png&originHeight=645&originWidth=1308&originalType=binary&ratio=1&rotation=0&showTitle=false&size=100539&status=done&style=none&taskId=u22a873b9-45c1-4533-88a8-41801aa7426&title=&width=1046.4)<br />在命令行中输入
<a name="ufbaw"></a>
#### 2.1 git init 转换为git 项目
```python
git init
2.2 git remote add origin 添加远程仓库
git remote add origin https://gitee.com/imzack/api20220523.git
- https://gitee.com/imzack/api20220523.git 这个地址改为自己代码仓库地址。
2.3 git pull origin master 同步远程仓库
git pull origin master
2.4 添加提交代码
添加代码
git add .
提交到本地
git commit -m "init project"
提交到远程仓库
git push origin master
提交成功之后,可以看到效果。