当前位置:   article > 正文

git使用教程 + github国内镜像 + TortoiseGit配置及修复

github国内镜像

github国内镜像

github加速

切换hosts

  1. 下载 SwitchHosts
  2. 添加规则
    在这里插入图片描述
URL1: https://cdn.jsdelivr.net/gh/521xueweihan/GitHub520@main/hosts
URL2: https://raw.hellogithub.com/hosts
URL3: https://gitee.com/isevenluo/github-hosts/raw/master/hosts
  • 1
  • 2
  • 3

使用SwitchHosts加速访问Github

FastGithub

git使用

添加本机ssh key

git init

.gitignore:排除文件

git推送已有项目

  1. github上创建Repository,获取仓库提交地址HTTPS / SSH。SSH方式需要配置公私钥。
  2. 修改git / TortoiseGit全局用户信息:用户名、邮箱。
git config --global user.name "rainbow-rain"
git config --global user.email "rainbow_lucky0106@163.com"
  • 1
  • 2
  • tortoisegit配置
    在这里插入图片描述
  1. 生成公钥、私钥。公钥填写到github上,私钥保存在本地。
  • 可以使用git bash命令行生成(tortoisegit无法识别)
  • 使用tortoisegit自带PuTTYgen生成
  1. 提交
    在这里插入图片描述

常用命令

git status  # 查看状态
git add .  # 添加
git commit  -m  "提交信息"  # 提交
  • 1
  • 2
  • 3

其他命令

git log  # git commit日志
git remote -v   # 查看远程仓库地址
git push -u origin master  # 本地仓库push到github上面
  • 1
  • 2
  • 3

TortoiseGit

配置步骤

  1. PuttyGen生成密钥、公钥并保存到C:\Users\用户名.ssh目录
    在这里插入图片描述

  2. GitLab中添加公钥

  3. 在TortoiseGit Pageant中添加私钥

重装问题解决

  1. 查看TortoiseGit Setting中的环境变量设置
  2. 在HKEY_CURRENT_USER -> Software -> TortoiseGit中ssh值更改为Tortoise真实路径

no supported authentication method available

鼠标右键 -> TortoiseGit -> Settings -> Network -> SSH Client 项
改为git中ssh.exe的路径
在这里插入图片描述

在这里插入图片描述
https://blog.csdn.net/freedomVenly/article/details/89285011

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/589485
推荐阅读
相关标签
  

闽ICP备14008679号