美文网首页
用git从远程服务器clone 项目到本地

用git从远程服务器clone 项目到本地

作者: 乡下秋草 | 来源:发表于2017-07-05 22:47 被阅读97次

    1.获取本机的SSH 串

    在终端输入

    ssh-keygen -t rsa -C "forwhat.cn"//注意。forwhat.cn为用户名
    

    如果执行成功。返回

    Generating public/private rsa key pair.
    Enter file in which to save the key (/home/forwhat.cn/.ssh/id_rsa): 
    

    点击回车

    Enter passphrase (empty for no passphrase):
    

    再点击回车

    Enter same passphrase again:
    

    再次点击回车

    Your identification has been saved in /home/forwhat.cn/.ssh/id_rsa.
    Your public key has been saved in /home/forwhat.cn/.ssh/id_rsa.pub.
    

    再在终端输入

    cat /home/forwhat.cn/.ssh/id_rsa.pub
    

    就得到本机的ssh 串,去GitHub里添加


    GitHub 截图

    则本机 SSH串配置完成

    2.建立本地仓库

    在桌面建立一个文件夹,在终端 cd 该文件夹路径

    初始化git

    git init
    

    配置git

    git config --global user.name "your_username"  
    git config --global user.email your_email@domain.com 
    

    克隆远程服务器项目

    git clone git@github.com:yourName/yourProject.git
    \\yourName 用户名   yourProject 项目名
    

    至此该项目已克隆到本地

    相关文章

      网友评论

          本文标题:用git从远程服务器clone 项目到本地

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