git remote update origin --prune,要注意下,如果你的remote branch不是在origin下,按你得把origin换成你的名字 $ git remote update origin --prune Fetching origin remote: Counting ...
分类:
其他好文 时间:
2021-05-24 06:30:31
阅读次数:
0
查看远程与本地所有分支 git branch -a 拉取远程分支到本地 git checkout -b '车管家' remotes/origin/车管家 切换分支 git checkout -f test ...
分类:
其他好文 时间:
2021-05-24 04:44:55
阅读次数:
0
PS C:\ycm\test\ts-newProjet> git pull origin master * branch master -> FETCH_HEAD fatal: refusing to merge unrelated histories 在新建项目时报refusing to merg ...
分类:
其他好文 时间:
2021-05-24 01:24:52
阅读次数:
0
1.创建分支 git branch develop 2.查看本地分支: git branch 注:名称前面加* 号的是当前的分支 3.查看远程分支: 加上-a参数可以查看远程分支,远程分支会用红色表示出来(如果你开了颜色支持的话) git branch -a 4.切换分支 git checkout ...
分类:
其他好文 时间:
2021-04-28 12:13:29
阅读次数:
0
学习无他法,唯有持之以恒 Git解决中文乱码问题git status 乱码解决方法:git config --global core.quotepath false?git commit 乱码解决方法:git config --global i18n.commitencoding utf-8?git ...
分类:
其他好文 时间:
2021-04-26 13:50:31
阅读次数:
0
There is no tracking information for the current branch. Please specify which branch you want to merge with. See git-pull(1) for details. git pull <re ...
分类:
其他好文 时间:
2021-04-22 15:28:20
阅读次数:
0
首先github右上角个人点开 然后setting 然后 然后 然后 这个note我是随便填的 下面都勾选了,具体想搞明白各项什么意思的点击read more about... 最后generate token 下面有github文档的友情链接 算了 不会搞友情链接,自行复制一下吧 https:// ...
分类:
数据库 时间:
2021-04-16 11:41:01
阅读次数:
0
1. git git checkout -b v1 // 创建并切换 git checkout name // 撤回修改文件 git branch -a // 查看所有分支 git branch --set-upstream-to=origin/feature-v1 // 默认拉取远程分支 git ...
分类:
系统相关 时间:
2021-03-29 11:44:12
阅读次数:
0
1、重写commit,删除大文件 git filter-branch --force --index-filter "git rm -rf --cached --ignore-unmatch CPT_0707_ao/temp_past/temp2/deltap.csv" --prune-empty ...
分类:
Web程序 时间:
2021-03-26 15:31:53
阅读次数:
0
工作区:代码编辑部分 暂存区:git add 本地仓库 git commit git 配置 git config --global user.name "" git config --global user.email "" git config --global --list ctril +l清屏 ...
分类:
其他好文 时间:
2021-03-26 15:12:55
阅读次数:
0