Git 全域性設定:
git config --global user.name "寂寞的鋼蛋兒"
git config --global user.email "guanchaoguo@qq.com"
建立 git 倉庫:
mkdir dicom-web
cd dicom-web
git init
touch README.md
git add README.md
git commit -m "first commit"
git remote add origin git@gitee.com:guanchaoguo/dicom-web.git
git push -u origin "master"
已有倉庫?
cd existing_git_repo
git remote add origin git@gitee.com:guanchaoguo/dicom-web.git
git push -u origin "master"