在指定项目下右键打开Git Bash Here 初始化 $ git init 添加到缓存区 $ git add . 提交到本地 $ git commit -m "提交信息" 添加远程仓库地址 $ git remote add origin https://gitee.com/... 新建空仓库中含有 README.MD 文件,先拉取再继续操作(非必须) $ git pull --rebase origin master 推送至远程仓库 $ git push -u origin master