gitLab上传项目代码

在gitlab上创建项目后,没有显示仓库菜单,也看不到分支信息

这时,需要在本地创建好项目代码,然后在在项目代码的文件夹下,右键点击,使用git命令执行如下命令

Git global setup
git config --global user.name "wanga xiaofei"
git config --global user.email "1401431383@qq.com"

Create a new repository --克隆空代码到本地以及生成远程的主分支
git clone http://39.162.1.200:15001/13213161636/cs.git
cd cs
git switch -c main
touch README.md
git add README.md
git commit -m "add README"
git push -u origin main

Push an existing folder --推出本地项目代码
cd existing_folder
git init --initial-branch=main
git remote add origin http://39.162.1.200:15001/13213161636/cs.git
git add .
git commit -m "Initial commit"
git push -u origin main

Push an existing Git repository
cd existing_repo
git remote rename origin old-origin
git remote add origin http://39.162.1.200:15001/13213161636/cs.git
git push -u origin --all
git push -u origin --tags
相关推荐
Algorithm157621 小时前
mac上使用docker搭建gitlab
macos·docker·gitlab
binqian1 天前
【CICD】GitLab Runner 和执行器(Executor
gitlab
极小狐2 天前
GitLab 如何跨版本升级?
gitlab·devsecops·devops·极狐gitlab·安全合规
xixingzhe23 天前
gitlab角色、权限
gitlab
Source、3 天前
gitlab和jenkins连接
运维·gitlab·jenkins
公西雒4 天前
关于在GitLab的CI/CD中用docker buildx本地化多架构打包dotnet应用的问题
ci/cd·docker·gitlab·qemu·dotnet
todoitbo4 天前
gitlab-runner中搭建nvm、nrm以及优化maven打包
java·gitlab·maven
Hi202402175 天前
Gitlab自动化相关脚本
运维·自动化·gitlab
极小狐5 天前
极狐GitLab 签约足下科技,加速国产智驾操作系统的发展与普及
gitlab·devsecops·devops·极狐gitlab·安全合规
小蜜蜂爱编程6 天前
gitlab ci/cd搭建及使用笔记
笔记·ci/cd·gitlab