美文网首页
github命令

github命令

作者: reco171 | 来源:发表于2018-09-04 14:25 被阅读0次
    1. 在github新建repository后,github会提示远程提交的命令
      echo "# springtest" >> README.md
      git init
      git add README.md
      git commit -m "first commit"
      git remote add origin https://github.com/reco171/springtest.git
      git push -u origin master
    2. 登录git与查看登录信息
      在远程提交前需要配置git用户信息
      git config --global user.name 'userName' //设置git账户,userName为你的git账号,
      git config --global user.email 'email'
      查看当前登录用户与邮箱
      git config --global user.name //获取当前登录的用户
      git config --global user.email //获取当前登录用户的邮箱
      参考:
      Git 常用命令总结
      https://blog.csdn.net/tomatozaitian/article/details/73515849

    相关文章

      网友评论

          本文标题:github命令

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