参考:git 如何修改本地分支名称与远程分支名称 修改本地分支名: git branch -m old_name new_name 删除远程分支: git push origin :old_name 重新创建一个新的远程分支 也就是将你现在所在的分支,再push一遍 git push origin ...
分类:
其他好文 时间:
2021-03-10 13:01:41
阅读次数:
0
在github的wiki中,可以展现图片,可是,怎么添加图片,直接复制粘贴是不可行。 添加图片,基本上就是通过下面几步来完成: 1. clone wiki 2.创建图片目录 3.在图片目录中添加图片 4.上传并推送到远程wiki 5.在wiki中引用图片 具体操作步骤如下: 1. clone wik ...
分类:
其他好文 时间:
2021-03-02 12:06:37
阅读次数:
0
下午新建一个项目,准备push到git上面,结果不是很懂git的我,忽略了当本地与repo上面的文件如果不一致,则拒绝push。 看到一个博客里的问题和我的一毛一样: 主要原因就是因为repo上面的比如markdown文件不在本地。 通过如下命令进行代码合并【注:pull=fetch+merge] ...
分类:
其他好文 时间:
2021-02-23 13:59:26
阅读次数:
0
git tag -a "obj-v1.1.4" -m "rows read" git push --follow-tags 未执行 git add 操作 git restore file_name、git checkout -- file_name 或者 git reset --hard HEAD ...
分类:
其他好文 时间:
2021-02-22 11:46:41
阅读次数:
0
1047 Student List for Course Zhejiang University has 40,000 students and provides 2,500 courses. Now given the registered course list of each student, ...
分类:
其他好文 时间:
2021-02-17 14:09:06
阅读次数:
0
1.重命名 git branch -m oldBranchName newBranchName 2.删除远程分支:git push origin :oldBranchName 3.将重命名过的分支提交:git push origin newBranchName 4.新建分支 : git branch ...
分类:
其他好文 时间:
2021-02-15 12:07:38
阅读次数:
0
查看远程仓库地址别名 git remote -v $ git remote -v origin https://github.com/qingzhuan/demo01.git (fetch) origin https://github.com/qingzhuan/demo01.git (push) ...
分类:
其他好文 时间:
2021-01-18 11:23:59
阅读次数:
0
If a file is larger than 5MB size limit for pushing t, the files must be tracked and updated using git lfs. Note: Please follow the instructions here( ...
分类:
其他好文 时间:
2021-01-11 10:39:35
阅读次数:
0
将本地 tag 标签推送到远程: git push origin v0.1.0 当分支名与 tag 标签名相同时, 会出现无法推送指定标签的问题: error: src refspec v0.1.0 matches more than one. 尝试使用以下命令: git push origin r ...
分类:
其他好文 时间:
2021-01-07 11:55:33
阅读次数:
0
从远程仓库下载到本地 git clone 仓库地址 本地修改的文件添加上传队列 git add * 上传队列中的文件提交到本地仓库 git commit -m '提交的说明' 将本地仓库的内容推送到远程仓库 git push origin master 拉取远程仓库内容到本地,更新代码 git pu ...
分类:
其他好文 时间:
2020-12-31 12:46:06
阅读次数:
0