others linux服务器运维 django3 监控 k8s golang 数据库 大数据 前端 devops 理论基础 java oracle 运维日志

pycharm上传代码到gitlab仓库

访问量:1141 创建时间:2020-04-01

前提: - 已经在本地安装了python3.6,django 3,pycharm。 - 已经安装了gitlab ce社区版。 - 通过pycharm创建了django项目。

安装git客户端

下载地址:

https://git-scm.com/downloads

安装过程一直下一步默认即可。安装完成后再cmd中测试:

C:\Users\Administrator>git --version
git version 2.25.0.windows.1

C:\Users\Administrator>

push测试代码到gitlab仓库中:

在如图所示的pycharm的Terminal中执行如下命令,执行push操作时会要求输入git账号密码:

E:\opstest>git config --global user.name "root"
E:\opstest>git config --global user.email "645478@163.com"
E:\opstest>git remote add origin http://192.168.1.139:8088/ops/opstest.git
E:\opstest>git add .
E:\opstest>git commit -m "Initial commit"
E:\opstest>git push -u origin master

至此简单的django项目上传到gitlab仓库完成。

登陆评论: 使用GITHUB登陆