Git分支和远程仓库操作(1)
【推荐】2019 Java 开发者跳槽指南.pdf(吐血整理) >>> 基本操作: 将远程仓库与本地仓库关联: git remote add origin git@github.com:coderxx/abc.git 增加内容: git add 文件名/文件夹名 ;增加多个文件时,文件名之间用逗号隔开 提交分支: git commit -m "注释内容" ; 查看状态: git status ;查看工作区是否有任何变动 推送分支: git push origin master (第一次推送用 git push -u origin master) 注意: 上面coderxx为你的github的注册名,abc.git是你的远程仓库名称;关联时要选择git@github.com这种SSH Key形式,不要选https://的形式。因https形式适用于clone,交互性差,版本推送时会出现错误: fatal: The remote end hung up unexpectedly 扩展: 1、 查看分支:git branch 创建分支:git branch <name> 切换分支:git checkout <name> 创建并切换分支:git checkout -b <name> 合并某分支到当前分支:git merge <name> 删除分支:git branch -d <name>