github上传工程

作者: 微微笑的蜗牛 | 来源:发表于2015-12-03 11:29 被阅读169次

    1、生成ssh

    ssh-keygen -t rsa -C email(注册github的email)

    默认生成在~/.ssh

    在github,�点击头像 Settings -> SSH Keys,
    将~/.ssh/id_rsa.pub文件内容拷贝进来,title填写email

    2、测试跟github连接

    ssh -T git@github.com

    3、配置config
    config文件在~/.gitconfig。
    可以用命令行来设置

    git config --global user.name "your name"
    git config --global user.email "your_email@youremail.com"

    4、在github上创建repository

    5、本地仓库与远程建立连接

    cd projectdir
    git init
    // 将所有文件add
    git add .
    git commit -m "first commit"
    // 添加远程仓库地址
    git remote add origin https://github.com/silan-liu/buttonEdgeInset.git
    git push -u origin master

    在push的时候,可能会提示,先pull,则先执行git pull origin master。

    相关文章

      网友评论

        本文标题:github上传工程

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