Gitee
执笔写回憶
人生苦短,才学Python!
展开
-
git复制仓库报错:Please make sure you have the correct access rights and the repository exists
1.删除.ssh文件夹(直接搜索该文件夹)下的known_hosts(手动删除即可,不需要git)2.在下载好的Git中的bin目录下打开bash.exe输入命令ssh-keygen -t rsa -C "username" (注:username为你git上的用户名,为登录名),如果执行成功。返回: Generating public/private rsa key pair. Enter file in which to save the key (/Users/user...原创 2022-03-08 13:26:42 · 1166 阅读 · 0 评论 -
git中Please enter a commit message to explain why this merge is necessary.
转载 2021-06-27 22:39:10 · 96 阅读 · 0 评论 -
如果已经push了,.gitignore不生效解决方案
原因是.gitignore只能忽略那些原来没有被track的文件,如果某些文件已经被纳入了版本管理中,则修改.gitignore是无效的。那么解决方法就是先把本地缓存删除(改变成未track状态),然后再提交:1、git rm -r --cached .2、git add .3、git commit -m 'update .gitignore'配置语法:以斜杠/开头表示目录;以星号*通配多个字符;以问号?通配单个字符以方括号[]包含单个字符的匹配列表;以叹号!表.原创 2021-06-01 11:08:54 · 762 阅读 · 0 评论 -
直接提交git命令
import osfrom time import sleep,localtime,strftimetry: zero = os.system("cd ztzy") print("cd ztzy") os.chdir(os.path.join(os.getcwd(), "ztzy")) if zero == 0: while True: first = os.system("git add .") pri.原创 2020-11-23 18:30:08 · 198 阅读 · 0 评论 -
windows下配置多个gitee账户(此例2个gitee账号)
1. 清除 git 的全局设置(针对已安装 git)新安装 git 跳过。若之前对 git 设置过全局的user.name和user.email。类似 (用git config --global --l进行查看你是否设置),显示为:$ git config --global user.name "你的名字"$ git config --global user.email "你的邮箱"必须删除该设置$ git config --global --unset user.n...原创 2020-11-17 18:13:41 · 3857 阅读 · 3 评论 -
基于码云gitee的jekyll博客评论系统
基于码云gitee的jekyll博客评论系统参考:https://eillott.gitee.io/2018/08/29/Hexo%E6%8E%A5%E5%85%A5%E7%A0%81%E4%BA%91%E8%AF%84%E8%AE%BA%E7%B3%BB%E7%BB%9F/原创 2020-09-02 13:57:13 · 900 阅读 · 0 评论 -
解决gitee:error: RPC failed; HTTP 413 curl 22 The requested URL returned error: 413
今天向远程仓库推送时出现:RPC failed; HTTP 413 curl 22 The requested URL returned error: 413 Request Entity Too Large错误!在git bash中执行,解决:git config http.postBuffer 524288000原创 2020-09-01 14:09:41 · 3029 阅读 · 0 评论 -
gitee代码推送命令入门
创建 git 仓库:# 创建文件夹gitee_testmkdir gitee_test# 进入到gitee_test文件夹cd gitee_test# 生成.git文件git init# 创建README.md文件touch README.mdgit add README.mdgit commit -m "first commit"git remote add origin https://gitee.com/**/gitee_test.gitgit push -u origin原创 2020-08-31 16:14:10 · 1461 阅读 · 0 评论