git config --global user.name "Minglong"
git config --global user.email "ye583025823@126.com"

创建 git 仓库:

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

已有仓库?

cd existing_git_repo
git remote add origin https://gitee.com/yeminglong/element-theme-blue.git
git push -u origin master