
git
文章平均质量分 50
antRain
这个作者很懒,什么都没留下…
展开
-
搭建 本地 远程git 仓库
文件目录下的那些文件 , 是没有工作区的,只会记录git提交的历史信息。可以通过创建一个专门的用户来管理 git。, 远程主机名 这里采用 ssh 方式。创建一个目录, 作为git仓库。拷贝秘钥,不需要重复输入密码。原创 2022-10-29 14:26:04 · 760 阅读 · 0 评论 -
git安装
git安装下载安装下载1.官网下载2.腾讯镜像下载安装参考Git 安装和使用教程原创 2019-08-30 17:57:32 · 180 阅读 · 0 评论 -
git push 问题
git push 问题问题解决问题Connection reset by 52.74.223.119 port 22fatal: Could not read from remote repository.Please make sure you have the correct access rightsand the repository exists.表示本地端口被重置,解...原创 2019-09-26 18:10:02 · 134 阅读 · 0 评论 -
git操作
git操作SSH生成$ ssh-keygen -t rsa -C "youremail@example.com"检测SSH是否连接成功$ ssh -T git@github.com添加仓库git remote add origin '你的仓库'修改git$ git add . $ git commit -m ' ' git add . 将所有修改的添加到...原创 2019-10-03 19:11:18 · 134 阅读 · 0 评论