删除远程分支:
git push 远程仓库 --delete 远程分支
git push 远程仓库:远程分支
本地分支重命名:git branch -m 本地旧分支 本地新分支
查看分支关联信息:
git remote show 远程仓库
git branch -vv
建立分支关联:
- 第一次push的时候加-u:
git push -u 远程仓库 本地分支:远程分支
当前目录的所有文件中查找字符串:grep -rn "字符串" *
-i
忽略大小写
删除远程分支:
git push 远程仓库 --delete 远程分支
git push 远程仓库:远程分支
本地分支重命名:git branch -m 本地旧分支 本地新分支
查看分支关联信息:
git remote show 远程仓库
git branch -vv
建立分支关联:
git push -u 远程仓库 本地分支:远程分支
当前目录的所有文件中查找字符串:grep -rn "字符串" *
-i
忽略大小写