美文网首页
码云和git的使用教程

码云和git的使用教程

作者: A落儿 | 来源:发表于2018-12-02 14:32 被阅读0次

1.查看本地项目多出哪些文件,在终端中输入下面命令

git status

On branch master
Your branch is up to date with 'origin/master'.

Changes not staged for commit:
  (use "git add <file>..." to update what will be committed)
  (use "git checkout -- <file>..." to discard changes in working directory)

        modified:   README.md

Untracked files:
  (use "git add <file>..." to include in what will be committed)
//下面的内容就是多出来的文件
        .babelrc
        .editorconfig
        .eslintignore
        .eslintrc.js
        .gitignore
        .postcssrc.js
        build/
        config/
        index.html
        package.json
        src/
        static/
        test/

no changes added to commit (use "git add" and/or "git commit -a")

2.将代码先提交到本地的仓库

git add .

3.将代码commit一下

git commit -m '这里是备注信息'

4.讲代码上传

git push

5.git pull 和git checkout
6.合并分支和主干

git checkout master,切到主干
git merge origin/index-recommend,合并‘index-recommend’分支
git push

相关文章

  • 码云和git的使用教程

    1.查看本地项目多出哪些文件,在终端中输入下面命令 git status 2.将代码先提交到本地的仓库 git a...

  • 码云和git的使用

    码云和git的使用1:打开码云并注册登录自己的账号,用于管理我们的代码,以及我们代码的版本控制. 4:以上填写完成...

  • 码云和git的使用

    一、本地项目上传到远程仓库 建立本地git仓库 将本地项目工作区的所有文件添加到暂存区 将暂存区的文件提交到本地仓...

  • 码云Gitee Android端使用初解

    国内的Git托管服务——码云(gitee.com)使用方便,快捷,功能齐全。非常适合项目开发使用 码云和GitHu...

  • Git建立远程仓库连接与基本命令

    git建立远程仓库连接 一、码云新建仓库 参考官方教程 二、使用git命令推送代码到码云 git 配置 打开Git...

  • git工具入门01

    git工具大家对于基本的应用应该已经无比的熟悉了,这里主要是记录一下在使用码云和git工具时,针对fork+pul...

  • git使用

    git使用教训备忘 [码云提交代码教程](https://gitee.com/help/articles/4122...

  • 使用git上传码云和码云下载代码

    记录一下,get上传和拉取代码的简单操作吧! 一.上传demo 1.下载git,并且安装 5.打开cmd c...

  • Git使用教程-idea系列中git使用教程

    Git使用教程 idea、webstorm、phpstorm、androidstudio中git使用教程 首先你的...

  • 码云Git使用教程

    Git使用 https://jingyan.baidu.com/article/cdddd41cb7466853c...

网友评论

      本文标题:码云和git的使用教程

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