Gitee和GitLab常用操作

Gitee 全局设置:

git config --global user.name ""
git config --global user.email ""

创建 git 仓库:

mkdir test_zxz
cd test_zxz
git init
touch README.md
git add README.md
git commit -m "first commit"
git remote add origin https://gitee.com/
git push -u origin "master"

已有仓库?

cd existing_git_repo
git remote add origin https://gitee.com/
git push -u origin "master"


GitLab 操作:
git config --global user.name ""
git config --global user.email ""

创建一个新仓库
git clone http://.git
cd vue_frny_online
git switch -c main
touch README.md
git add README.md
git commit -m "add README"
git push -u origin main

推送现有文件夹
cd existing_folder
git init --initial-branch=main
git remote add origin http://
git add .
git commit -m "Initial commit"
git push -u origin main

推送现有的 Git 仓库
cd existing_repo
git remote rename origin old-origin
git remote add origin http://.git
git push -u origin --all
git push -u origin --tags

posted @ 2022-02-11 11:05  foxbaby213  阅读(155)  评论(0)    收藏  举报