美文网首页iOS开发
mac环境下上传项目到github

mac环境下上传项目到github

作者: Ailily | 来源:发表于2016-10-13 20:34 被阅读160次

    安装git
    <pre>
    $ git
    The program 'git' is currently not installed. You can install it by typing:sudo apt-get install git
    </pre>

    上述表明没有安装git安装 git:sudo apt-get install git
    安装完成后配置信息:

    $ git config --global user.name "Your Name"
    $ git config --global user.email "email@example.com"
    

    配置 SSH查看本地是否已经生成了ssh key(包含了id_rsa
    以及id_rsa.pub ~/.ssh
    没有就需要生成ssh key:

    $ ssh-keygen -t rsa -C "youremail@example.com"
    

    然后一直回车(默认是不要密码的,需要则输入密码)查看是否配置成功:

    $ cd ~/.ssh$ ls$ id_rsa id_rsa.pub
    

    如果有id_rsa
    和id_rsa.pub
    两个文件则生成了ssh key,然后通过

    cat ~/.ssh/id_rsa.pub
    

    查看公钥内容,然后添加到github上的SSH Keys 中;
    创建本地版本仓库1.在合适的位置创建一个空目录

    $ mkdir learngit
    $ cd learngit$ pwd/Users/desk/learngit
    

    也可以选择一个已有的项目文件夹,cd
    到当前文件夹下
    2.通过git命令git init
    把当前目录变成git可以管理的仓库:

    $ git init
    Initialized empty Git repository **in** /Users/desk/learngit/.git/
    

    提交文件到仓库

    $ git add readme.txt
    $ git commit -m "提交了一个文件"
    

    添加全部:git add .
    添加远程仓库1.先在github上创建一个仓库并拷贝地址如:
    git@github.com:MrXiaxia/test.git
    2.然后关联本地仓库:

    $ git remote add origin git@github.com:MrXiaxia/test.git
    

    3.把本地库的内容推送到远程库:

    $ git push -u origin master
    

    4.首次提交推送需加上-u
    ,以后不用;
    5.如出现以下错误:

    git push -u origin masterTo git@github.com:MrXiaxia/test.git
    ! [rejected] master -> master (non-fast-forward)error: failed to push some refs to 'git@github.com:MrXiaxia/test.git'hint: Updates were rejected because the tip of your current branch is behindhint: its remote counterpart. Integrate the remote changes (e.g.hint: 'git pull ...') before pushing again.hint: See the 'Note about fast-forwards' in 'git push --help' for details.
    

    可以尝试用:

    $ git push --force origin master
    

    常见错误(mac和windows)

    如果出现以下错误:
    提示出错信息:fatal: remote origin already exists.解决办法如下:

    • 1.先输入$ git remote rm origin
    • 2.再输入$ git remote add origin git@github.com:MrXia/gitdemo.git就不会报错了!
    • 3.如果输入$ git remote rm origin 还是报错的话,error: Could not remove config section 'remote.origin'. 我们需要修改gitconfig文件的内容
    • 4.找到你的github的安装路径,我的是C:\Users\ASUS\AppData\Local\GitHub\PortableGit_ca477551eeb4aea0e4ae9fcd3358bd96720bb5c8\etc
    • 5.找到一个名为gitconfig的文件,打开它把里面的[remote "origin"]那一行删掉就好了!

    如果输入$ ssh -T git@github.com出现错误提示:Permission denied (publickey).
    因为新生成的key不能加入ssh就会导致连接不上github。
    解决办法如下:
    1、先输入$ ssh-agent,再输入$ ssh-add ~/.ssh/id_key,这样就可以了。
    2、如果还是不行的话,输入ssh-add ~/.ssh/id_key 命令后出现报错Could not open a connection to your authentication agent.解决方法是key用Git Gui的ssh工具生成,这样生成的时候key就直接保存在ssh中了,不需要再ssh-add命令加入了,其它的user,token等配置都用命令行来做。
    3、最好检查一下在你复制id_rsa.pub文件的内容时有没有产生多余的空格或空行,有些编辑器会帮你添加这些的。
    如果输入$ git push origin master提示出错信息:
    error:failed to push som refs to .......
    解决办法如下:

    • 1、先输入$ git pull origin master //先把远程服务器github上面的文件拉下来

    • 2、再输入$ git push origin master

    • 3、如果出现报错 fatal: Couldn't find remote ref master或者fatal: 'origin' does not appear to be a git repository 以及fatal: Could not read from remote repository.则需要重新输入

      $ git remote add origingit@github.com:djqiang/gitdemo.git

    相关文章

      网友评论

        本文标题:mac环境下上传项目到github

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