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 

 



posted @ 2021-06-29 17:05  方诚  阅读(144)  评论(0编辑  收藏  举报