git
清欢ysy
技术改变世界
展开
-
当git账号的密码修改后,SourceTree 提示Authentication failed
【SourceTree 】当git账号的密码修改后,SourceTree 提示Authentication failedsouretree提交,但是git密码输入错误,然后也不在提示弹框,一直找不到是哪里的错误,后来找了一下是在这里修改一下C:\Users%USERNAME%\AppData\Local\Atlassian\SourceTree找到里面的passwd文件,打开删除你要删除的账户密码,然后再次拉去代码,就会弹出新的密码的框了。...原创 2020-07-04 10:53:07 · 681 阅读 · 0 评论 -
Git仓库多次提交导致仓库太大,导致git占用空间
Git仓库多次提交导致仓库太大,导致git占用空间git gc --prune=now原创 2020-02-01 17:06:40 · 2376 阅读 · 0 评论 -
执行Git命令时出现各种 SSL certificate problem 的解决办法
比如我在windows下用git clone gitURL就提示 SSL certificate problem: self signed certificate这种问题,在windows下出现得频率高些。我估计主要是git本身就是基于linux开发的,在windows上,容易缺失一些环境。参考了一些文章,解决方法其实就是“直接不管ssl证书的事儿”-_-|||方法如下:1.创建临时环...原创 2020-01-08 13:58:31 · 196 阅读 · 0 评论 -
Git忘记添加.gitignore文件
使用.gitignore文件删除掉已经提交的文件顺序依次执行如下命令:First commit any outstanding code changes, and then, run this command:git rm -r --cached .This removes any changed files from the index(staging area), then just...原创 2019-04-24 22:39:32 · 1067 阅读 · 0 评论 -
在Windows系统里创建.gitignore文件
在项目根目录下面创建gitignore.txt文件把你需要排除的文件名保存到gitignore.txt文件在项目根目录下面按住Shift键并邮件然后选择“在此处打开命令窗口”执行命令 ren gitignore.txt .gitignore...原创 2019-04-24 22:45:14 · 594 阅读 · 0 评论 -
git配置java程序的gitignore文件
优先提交gitignore文件,然后再提交其他java文件,这样可以保证不提交编译器eclipse和idea的配置文件gitignore配置文件如下### Java template*.class# Mobile Tools for Java (J2ME).mtj.tmp/# Package Files #*.jar*.war*.ear# virtual machine ...原创 2019-04-24 22:45:49 · 824 阅读 · 0 评论 -
fatal The remote end hung up unexpectedly
异常信息Counting objects: 61350, done.Delta compression using up to 2 threads.Compressing objects: 100% (20587/20587), done.efatal: The remote end hung up unexpecterror: RPC failed; HTTP 413 curl 22 T...原创 2019-05-30 12:31:44 · 2719 阅读 · 0 评论