Use of gitee code cloud

The first time I use gitee is because github sometimes cannot be opened. If you use Code Cloud, this problem will not occur.
Simple command line introductory tutorial:

git config --global user.name "飞行天下"
git config --global user.email "[email protected]"

Create gitee's warehouse

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

Existing warehouse

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

Push code
insert image description here
Note: If you use Code Cloud for the first time, there may be a phenomenon that you need to enter a user name and password. This is similar to github. This
article is over! ! !

Guess you like

Origin blog.csdn.net/weixin_45664217/article/details/120761979