Git 操作与解决方法

发布于 2023-05-03 21:47:49 字数 1572 浏览 64 评论 0

清除 git,即删除本地 .git 文件。命令:rm -rf .git

Git 远程推送 The authenticity of host 'github.com (52.74.223.119)'问题,解决:The authenticity of host 'github.com (52.74.223.119)' can't be established. 问题

生成 ssh 的方法和配置

生成 Deploy Keys,规则与 ssh key 一样

  1. ssh-keygen -f ~/.ssh/deploy_key_repo1(生成保存)
  2. ssh-add ~/.ssh/deploy_key_repo1(添加路径到认证列表)
  3. ssh-add -l(查看认证列表,看是否成功添加)
  4. cat ~/.ssh/deploy_key_repo1.pub | pbcopy(复制 deploy public key)

git@github.com: Permission denied (publickey).

Git: The key you are authenticating with has been marked as read only. 这里

配置邮箱和用户名

$ git config --global user.name "xxx"       
$ git config --global user.email "xxx"

# 以上是设置全局用户,如果是单一项目则:
$ git config user.name "xxx"       
$ git config user.email "xxx"

提交到暂存(全部)

$ git add -A -- .

查看当前用户信息以及其他的一些信息

$ git config --list

将暂存提交到 git 库

$ git commit -m "添加你的注释,一般是一些更改信息"

将本地的库链接到远程

$ git remote add origin https://github.com/toFrankie/HelloNode.git

push

$ git pull origin master

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

关于作者

黎夕旧梦

暂无简介

0 文章
0 评论
23 人气
更多

推荐作者

懂王

文章 0 评论 0

清秋悲枫

文章 0 评论 0

niceone-tech

文章 0 评论 0

小伙你站住

文章 0 评论 0

刘涛

文章 0 评论 0

南街九尾狐

文章 0 评论 0

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文