git从版本库中删除文件但不删除物理文件

git从版本库中删除文件但不删除物理文件

git rm file_path --cached
git commit -m "ignore *.iml"
git push origin dev

查看分支

git branch   # 查看本地分支
git branch -r # 查看远程分支
git branch -a # 查看所有分支

创建分支

git branch branch_name  
将本地分支push就创建了远程分支

切换分支

git checkout branch_name # 删除本地分支
git checkout -b branch_name  # 删除远程分支

删除分支

git branch -d branch_name  #删除本地分支
git push origin --delete branch_name # 删除远程分支

合并分支

合并前要先切换到要的分支,下面展示的是把dev分支合并如master分支
git checkout master
git merge dev

查看remote地址、远程分支、本地分支与之对应的关系等信息

git remote show origin

在本地删除远程不存在的分支

git remote prune origin

你可能感兴趣的:(linux)