git 设置
git config --global user.name "星火" git config --global user.email "itoracle@aliyun.com"
创建 git 仓库:
mkdir test
cd test
git init
touch README.md
git add README.md
git commit -m "first commit"
git remote add origin https://gitee.com/itdb/test.git
git push -u origin master
已有仓库?
cd existing_git_repo git remote add origin https://gitee.com/itdb/test.git git push -u origin master
--------------------------------------
git config --global user.name "星火"
git config --global user.email "aibook33@aliyun.com"
git remote add aidoc https://gitee.com/aibook33/aidoc.git
.gitconfig
[credential]
helper = store