吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 1369|回复: 0
收起左侧

[其他转载] 【笔记】GitLab初始化仓库脚本记录

[复制链接]
alan3258 发表于 2021-6-29 08:23
gitlab创建新项目后,可以通过以下方式导入或新建项目到版本控制中。

Git global setup
git config --global user.name "username"
git config --global user.email "username@163.com"

Create a new repository
git clone ssh://git@git.git.com/username/project.git
cd project
touch README.md
git add README.md
git commit -m "add README"
git push -u origin master

Push an existing folder
cd existing_folder
git init
git remote add origin ssh://git@git.git.com/username/project.git
git add .
git commit -m "Initial commit"
git push -u origin master

Push an existing Git repository
cd existing_repo
git remote rename origin old-origin
git remote add origin ssh://git@git.git.com/username/project.git
git push -u origin --all
git push -u origin --tags

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-25 16:51

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表