Git 操作与解决方法
清除 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. 问题
生成 Deploy Keys,规则与 ssh key 一样
ssh-keygen -f ~/.ssh/deploy_key_repo1
(生成保存)ssh-add ~/.ssh/deploy_key_repo1
(添加路径到认证列表)ssh-add -l
(查看认证列表,看是否成功添加)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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论