一、git branch:
1、创建本地分支 local_branch
git branch local_branch
2、切换到分支local_branch
git checkout local_branch
3、创建本地分支local_branch 并切换到local_branch分支
git checkout -b local_branch
4、推送本地分支local_branch到远程分支 remote_branch并建立关联关系
a.远程已有remote_branch分支并且已经关联本地分支local_branch且本地已经切换到local_branch
git push
b.远程已有remote_branch分支但未关联本地分支local_branch且本地已经切换到local_branch
git push -u origin/remote_branch
c.远程没有有remote_branch分支并,本地已经切换到local_branch
git push origin local_branch:remote_branch
5、删除本地分支local_branch
git branch -d local_branch
6、删除远程分支remote_branch
git push origin :remote_branch
git branch -m | -M oldbranch newbranch 重命名分支,如果newbranch名字分支已经存在,则需要使用-M强制重命名,否则,使用-m进行重命名。
git branch -d | -D branchname 删除branchname分支
git branch -d -r branchname 删除远程branchname分支
7、查看本地分支
git branch
8、查看远程和本地分支
git branch -a
二、git 删除文件
1. 单个删除文件
git rm test.txt //删除多个文件,可用空格分开文件名
git commit -m "说明" //提交
git push //提交到远程仓库
2. 批量删除:
方法一:(如果是删除当前文件夹下所有文件,方法一将删除该空文件夹一并删除,不会保留文件夹)
操作:(cd 到你要删除的目录下或者 * 可用“”文件夹名“”代替) -r 代表 recursively(递归)
git rm * -r
git commit -m "clear"
方法二:手动在文件管理器中删除批量文件,然后执行命令:(如果是删除当前文件夹下所有文件,方法二仍会保留该空文件夹)
git add .
git commit -m "clear"
最后考虑是否同步到远程仓库,执行:
git push
git 命令整理
Posted 留下来
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git 命令整理相关的知识,希望对你有一定的参考价值。
以上是关于git 命令整理的主要内容,如果未能解决你的问题,请参考以下文章