
git
几个高兴
这个作者很懒,什么都没留下…
展开
-
推送gitblit报错:Please make sure you have the correct access rightsand the repository exists.
推送gitblit报错:Please make sure you have the correct access rightsand the repository exists.原创 2022-12-15 17:58:27 · 855 阅读 · 0 评论 -
Unable to negotiate with 47.96.92.201 port 29418: no matching host key type found. git问题解决
Unable to negotiate with 47.96.92.201 port 29418: no matching host key type found. Their offer: ssh-rsa,ssh-dss fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists. git问题解决原创 2022-09-26 12:00:12 · 4768 阅读 · 1 评论 -
git连接不到远程ssh,解决Unable to negotiate with **** port 22: no matching host key type found. Their offer:
git连接不到远程ssh,解决Unable to negotiate with **** port 22: no matching host key type found. Their offer:原创 2022-10-19 09:52:35 · 1344 阅读 · 0 评论 -
git使用流程命令
git 工具 简介 git 是分布式的代码管理工具 本地管理 下载安装 下载地址 全局配置 作用:告诉 git 是哪一个用户在使用 git 告诉git当前使用的用户是谁 git config --global user.name 'github用户名,也可以是其他名称' 告诉git 绑定的邮箱是什么。 git config --global user.email 'github绑定邮箱' ----------开始使用git----------- 查看配置 git config --global原创 2022-04-07 22:53:05 · 168 阅读 · 0 评论 -
如何解决error: failed to push some refs to ‘https://gitee.com/
git 上传远程仓库时,出错,如何解决error: failed to push some refs to ‘https://gitee.com/原创 2022-04-07 22:50:42 · 40789 阅读 · 7 评论 -
git命令集合
创建文件、cd进入文件、查看当前目录: $ mkdir learning-git $ cd learning-git $ pwd /Users/xxm/learning-git 初始化仓库:git init 克隆仓库:git clone <url> $ git clone https://codechina.youkuaiyun.com/codechina/help-docs 把文件加入git: $ git add readme.txt 把代码提交到仓库: $ git comm原创 2021-12-05 15:39:08 · 136 阅读 · 0 评论