Git命令行入门教程

29 阅读1分钟

简易的命令行入门教程:

工作流程

Git 全局设置:

git config --global user.name "用户名"
git config --global user.email "你的邮箱"

创建 git 仓库:

mkdir gitee
cd gitee
git init 
touch README.md
git add README.md
git commit -m "first commit"
git remote add origin https://gitee.com/bubaiwantong/【项目的名称】.git
git push -u origin "master"

已有仓库?

cd existing_git_repo
git remote add origin https://gitee.com/bubaiwantong/gitee.git
git push -u origin "master"