Git 全局设置: git config --global user.name "算命先生" git config --global user.email "3268727800@qq.com" 创建 git 仓库: mkdir demo-git cd demo-git git init touch README.md git add README.md git commit -m "first commit" git remote add origin https://gitee.com/linzhangxian/demo-git.git git push -u origin master 已有仓库? cd existing_git_repo git remote add origin https://gitee.com/linzhangxian/demo-git.git git push -u origin master