美文网首页
GitHub上传资源

GitHub上传资源

作者: Infinite_eyes | 来源:发表于2017-02-10 22:34 被阅读53次

    下载

    资源首页点击下载GItHub客户端 选择下载

    下载完成后会多出 C:\Users\username\AppData\Local\GitHub 文件夹

    1 、图形界面上传

    运行客户端登陆 创建repositories 增加文件 提交到分支 提交到github

    2、命令行形式上传

      命令行可以是git shell 或者git bash
    
    
      git config --global user.name "user_nam"   #配置用户名 
      git config --global user.email "email"     #配置邮箱
    
      cd  D:\study\codeforcesproblem\problem     #进入资源目录
    
      git init                  #生成.git 文件
    
      touch  test.txt           #命令行生成测试文本
    
      git status                #查看文件状态
    
      git add test.txt          #跟踪文件并暂存
    
      git commit -m 'frist commit' #设置提交名称
    
      git remote add origin https://github.com/...  #添加远程仓库 
    
      git push -u origin master              #提交到远程仓库

    相关文章

      网友评论

          本文标题:GitHub上传资源

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