场景:操作 github 时,例如提交本地项目或文件等。
linux 系统可以使用 sudo 直接安装 git 命令,而 windows 系统需要下载官方 git 安装包,然后使用 git bash 操作,他们操作命令基本一致
touch README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/BrentHuang/MyRepo.git
git push -u origin master
- 在本地新建一个分支: git branch Branch1
- 切换到你的新分支: git checkout Branch1
- 将新分支发布在 github 上: git push origin Branch1
- 在本地删除一个分支: git branch -d Branch1
- 在 github 远程端删除一个分支: git push origin :Branch1 (分支名前的冒号代表删除)