
Git
文章平均质量分 54
Git的一些学习笔记
卓mu鸟
好记性不如烂笔头~
展开
-
gitblit 在windows中无法启动,“服务错误代码0”
gitblit 在windows中无法启动,“服务错误代码0”原创 2023-03-13 14:43:25 · 1109 阅读 · 1 评论 -
gitblit 在windows中启动提示Cannot assign requested address
gitblit Cannot assign requested address原创 2023-03-13 14:35:13 · 439 阅读 · 0 评论 -
Git修改远程仓库地址
参考:https://blog.youkuaiyun.com/asdfsfsdgdfgh/article/details/54981823原创 2021-07-21 10:47:51 · 539 阅读 · 0 评论 -
使用Eclipse Egit与码云管理你的代码
https://www.cnblogs.com/zhrb/p/6476718.html原创 2020-11-04 13:35:44 · 121 阅读 · 0 评论 -
用gitbash提交代码步骤
用gitbash提交代码步骤一、提交代码二、更新代码一、提交代码1、先去github创建一个仓库(Repositories),得到这个仓库地址,如:https://github.com/xxxx/htmlDemo.git2、在要上传的文件夹里面打开gitbash,按顺序执行① git init② git add .③ git commit -m ‘备注信息’④ git remote ...原创 2020-04-01 16:57:38 · 10182 阅读 · 1 评论 -
解决git push 中remote: Permission to xxxxx.git denied to xxx. fatal: unable to acce
解决方案第一步,将github中的项目clone下来第二步,修改.git/cofig中的urlcd 到项目中,编辑 .git/cofig中的urlvim .git/config将[remote "origin"]url = https://github.com/git的用户名/项目名称的url改为url = https://git的用户名@github.com/git的用户名/项...原创 2020-04-01 15:56:27 · 3975 阅读 · 2 评论