美文网首页
Git新手常见问题总结

Git新手常见问题总结

作者: fwei | 来源:发表于2017-04-11 21:14 被阅读0次
一. Please tell me who you are
1. 问题描述:初次使用git时,会遇到这样的提示
Please tell me who you are.
Run
  git config --global user.email "you@example.com"
  git config --global user.name "Your Name"
to set your account's default identity.
Omit --global to set the identity only in this repository.
2. 解决:参考提示,在命令行运行如下命令,Tell git who you are
git config --global user.email  "abc@example.com"
git config --global user.name "Your Name"
二. fatal: remote origin already exists.
1.问题描述:重复git remote add origin 同一个远程仓库时,会出现这个错误,可以理解为重复对origin进行绑定出错
2. 解决:
git remote rm origin 
三. 使用https://github.com/../..域名提交项目,会要求提交用户名和密码,用户名即github账号,密码即github的密码
四. Please make sure you have the correct access rights
1.问题描述:初次提交项目到远程仓库,会出现错误如下,原因是没有在远程配置本地密钥
Warning: Permanently added 'github.com,192.30.255.113' (RSA) to the list of known hosts.
Permission denied (publickey).
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
2.解决:
  1. 使用 ssh-keygen -t rsa -C "xxx@example.com"生成密钥
  2. 在~/.ssh 目录下,有id_rsa,id_rsa.pub两个文件,把id_ras.pub的内容添加到github.com的账号下。
    参考廖雪峰git教程

相关文章

  • Git新手常见问题总结

    一. Please tell me who you are 1. 问题描述:初次使用git时,会遇到这样的提示 2...

  • 直通车新手答疑-关键词推广篇

    为您总结新手在关键词推广上的常见问题 1. 新手直通车关键词从哪里来? 新手直通车前期可以优选考虑系统推荐词,系统...

  • react-native 爬坑经历

    常见问题总结: react native 常见问题总结 - 简书 1. unable to load script...

  • React Native

    常见问题汇总 [新手提问前先来这里看看]React Native的常见问题 React Native疑难点,问题深...

  • 前场与后场,速度与心态

    ​​20170814新手的常见问题 人物:littleder,littlebos,liw,zhangy,jilin...

  • 开源社区Git操作

    前言 本篇为大家总结社区多人合作常见的场景和对应的git操作命令。本篇非新手教程,阅读本篇前需具备Git基础知识。...

  • 最简洁的Git介绍

    一、解决问题 1、Git原理;2、Git的常见操作;3、Git常见问题以及相关操作; 二、Git原理 1、四大区域...

  • R语言几个解决方法总结

    作为R语言新手,在使用R语言的过程中遇到了很多的问题。本文总结了几个常见问题的解决方法,希望对需要的人能有所帮助。...

  • GitHub的入门,仓库使用

    (新手写给新手的share吧,各位方家还请海涵) 1.初始化Git库 现在初始化Git库,输入以下命令: git ...

  • windows中提交本地文件至远端

    遇到的常见问题在文本末有一些总结 初始化 1.直接在需要上传的文件目录下打开git bash here进入到需要上...

网友评论

      本文标题:Git新手常见问题总结

      本文链接:https://www.haomeiwen.com/subject/diseattx.html