• git之项目上传


     git之项目上传

    需求:将项目代码上传至github

    前期准备:

    1.github账号注册

    2.安装git环境,可以打开且使用git shell.

    3.生成SSH key并与github账号绑定

    步骤:

    1.进入gitshell

    2. 进入到项目指定的目录下,适用git命令初始化该目录

    3.初始化git

    $ git init

    4. 在GitHub上创建和本地项目的同名分支

    5.在GitHub创建新repository成功之后,使用命令关联本地库和GitHub远程库

      $ git remote add origin git@github.com:taidragon/XMUI.git
      $ git remote add origin git@github.com:taidragon(用户名)/XMUI(项目名).git

    6.将本地文件添加到本地缓存库和提交到本地分支,如下命令

       $ git add .      //将所有的本地文件提交到缓存中;后面的 . 代表所有文件;
      $ git commit -m "commit all file"  //将所有文件提交到本地库中

    7.提交本地到远程库

      $ git push -u origin master //第一次提交 添加命令参数 -u 确保关联本地库和远程库
      $ git push origin master //非第一次提交使用此命令即可

    8.查看GitHub上新建repository页面,本地的项目已经提交上去

       钻研不易,转载请注明出处。

  • 相关阅读:
    Lesson 61-62 Are Relatives Important to You?
    Lesson 59-60 Househusband
    Lesson 57-58 Cosmetic Surgery
    Lesson 55-56 TV Commercials
    Blash
    高维宇宙
    巴卡尔
    完美标号
    小A点菜(luogu 1164)简单DP
    聪明的质监员(qc)
  • 原文地址:https://www.cnblogs.com/s313139232/p/10178315.html
Copyright © 2020-2023  润新知