• 三: 克隆远程库到本地,将本地库上传到git


    如何克隆远程版本库到本地

    git clone URL

    如何用命令将本地项目上传到git

    1、(先进入项目文件夹)通过命令 git init 把这个目录变成git可以管理的仓库

       (注意: cd C:/Users/Dell/workspace/GitTestProject/src(运行命令的时候,路径要把正常的Windows路径的斜杠改方向。

        可以把git bash加入到右键,这样方便很多)

    git init

    2、把文件添加到版本库中,使用命令 git add .添加到暂存区里面去,不要忘记后面的小数点“.”,意为添加文件夹下的所有文件

    git add .

    3、用命令 git commit告诉Git,把文件提交到仓库。引号内为提交说明

    git commit -m 'first commit'

    4、关联到远程库

    git remote add origin 你的远程库地址

    注意: 如下要在远程建一个远程库。

     

    git remote add origin https://github.com/cade8800/ionic-demo.git

    5、获取远程库与本地同步合并(如果远程库不为空必须做这一步,否则后面的提交会失败)

    git pull --rebase origin master

    6、把本地库的内容推送到远程,使用 git push命令,实际上是把当前分支master推送到远程。执行此命令后会要求输入用户名、密码,验证通过后即开始上传。

    git push -u origin master

    7、状态查询命令

    git status

    备:详细请参考 http://www.cnblogs.com/tugenhua0707/p/4050072.html

  • 相关阅读:
    解析SRT格式的电影字幕文件
    svn笔记
    一个REST风格的URI设计方案[Blog Web Services]
    微服务部署
    sleuth链路追踪
    springboot生成pdf
    绘制多个word表格,压缩文件夹并输出流
    数据库调优
    常用网站
    解决:pip Fatal error in launcher: Unable to create process using
  • 原文地址:https://www.cnblogs.com/liufei1983/p/7441758.html
Copyright © 2020-2023  润新知