git 空项目初次提交项目命令记录

Command line instructions

You can also upload existing files from your computer using the instructions below.

Git global setup
bash 复制代码
git config --global user.name "demo"
git config --global user.email "demo@qq.com"
Create a new repository
bash 复制代码
git clone git@gitlab.xxx.com:workdemo/musicplayer.git
cd musicplayer
touch README.md
git add README.md
git commit -m "add README"
git push -u origin master
Push an existing folder
bash 复制代码
cd existing_folder
git init
git remote add origin git@gitlab.xxx.com:workdemo/musicplayer.git
git add .
git commit -m "Initial commit"
git push -u origin master
Push an existing Git repository
bash 复制代码
cd existing_repo
git remote rename origin old-origin
git remote add origin git@gitlab.xxx.com:workdemo/musicplayer.git
git push -u origin --all
git push -u origin --tags
相关推荐
王景程6 小时前
GitHub的主要用途及核心功能
git·github
Мартин.11 小时前
[Meachines] [Easy] LinkVortex Git leakage+Ghost 5.58+Double Link Bypass权限提升
git
甜到心里的蛋糕13 小时前
github汉化
git·github
可涵不会debug17 小时前
【C++】在线五子棋对战项目网页版
linux·服务器·网络·c++·git
Amy_cx19 小时前
卸载和安装Git小乌龟、git基本命令
git
铃响十分1 天前
make/Makefile、进度条、git
git
念九_ysl1 天前
git操作
git
画船听雨眠aa1 天前
git的安装
git
bing_1581 天前
Git常用命令
git
森林的尽头是阳光2 天前
git克隆原项目到新目录,保留提交记录分支等,与原项目保持各自独立
git