添加gitignore文件

简介: Shusheng Shi@PC-of-sss MINGW64 ~/mmall/doc/mmall-fe (master)$ rm test.htmlShusheng Shi@PC-of-sss MINGW64 ~/mmall/doc/mmall-fe (master)$ lsREADME.
Shusheng Shi@PC-of-sss MINGW64 ~/mmall/doc/mmall-fe (master)
$ rm test.html

Shusheng Shi@PC-of-sss MINGW64 ~/mmall/doc/mmall-fe (master)
$ ls
README.md

Shusheng Shi@PC-of-sss MINGW64 ~/mmall/doc/mmall-fe (master)
$ vim .gitignore

Shusheng Shi@PC-of-sss MINGW64 ~/mmall/doc/mmall-fe (master)
$ git status
On branch master
Your branch is up-to-date with 'origin/master'.
Changes not staged for commit:
  (use "git add/rm <file>..." to update what will be committed)
  (use "git checkout -- <file>..." to discard changes in working directo                                                                                                             ry)

        deleted:    test.html

Untracked files:
  (use "git add <file>..." to include in what will be committed)

        .gitignore

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

Shusheng Shi@PC-of-sss MINGW64 ~/mmall/doc/mmall-fe (master)
$ git st
git: 'st' is not a git command. See 'git --help'.

The most similar commands are
        status
        reset
        stage
        stash
        svn

Shusheng Shi@PC-of-sss MINGW64 ~/mmall/doc/mmall-fe (master)
$ git add .

Shusheng Shi@PC-of-sss MINGW64 ~/mmall/doc/mmall-fe (master)
$ git ca 'first initial'
git: 'ca' is not a git command. See 'git --help'.

The most similar commands are
        clean
        tag
        var

Shusheng Shi@PC-of-sss MINGW64 ~/mmall/doc/mmall-fe (master)
$ git commit -am 'first initial'
[master 0f90348] first initial
 2 files changed, 3 insertions(+)
 create mode 100644 .gitignore
 delete mode 100644 test.html

Shusheng Shi@PC-of-sss MINGW64 ~/mmall/doc/mmall-fe (master)
$ git push
Counting objects: 3, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (2/2), done.
Writing objects: 100% (3/3), 307 bytes | 0 bytes/s, done.
Total 3 (delta 0), reused 0 (delta 0)
To gitee.com:ssshappymmall/mmall-fe.git
   c3d58f4..0f90348  master -> master

Shusheng Shi@PC-of-sss MINGW64 ~/mmall/doc/mmall-fe (master)
$ touch .DS_Store



目录
相关文章
|
6月前
|
缓存 Shell 开发工具
git 基本 使用和.gitignore文件不生效
git 基本 使用和.gitignore文件不生效
105 0
|
6月前
|
JavaScript 前端开发 开发工具
如何编写.gitignore文件
如何编写.gitignore文件
112 1
|
缓存 开发工具 git
Git .gitignore 文件不生效解决方法
Git .gitignore 文件不生效解决方法
315 0
|
缓存 开发工具 git
git-解决.gitignore文件不生效问题
git-解决.gitignore文件不生效问题
204 0
|
Java 开发工具 git
.gitignore忽略文件如何配置
.gitignore忽略文件如何配置
Beyond Compare比较文件夹时如何忽略文件
Beyond Compare比较文件夹时如何忽略文件
513 0
Beyond Compare比较文件夹时如何忽略文件
|
开发工具 Android开发 iOS开发
给Flutter项目添加.gitignore文件以及如何修改.gitignore文件并生效
flutter项目的开发,一般来说都是与原生开发混合进行的,单纯的flutter开发局限性很大,需要与原生进行配合。
.gitignore文件不生效
.gitignore文件不生效
145 0
|
开发工具 git
Git无法添加文件夹下文件
Git无法添加文件夹下文件
1083 0
|
IDE Java 开发工具
推荐一个实用的 .gitignore 文件
为什么要忽略文件? 常用的版本控制工具,不管是使用 git 还是 svn,我们都需要排除一些与程序代码无关的文件,如像 eclipse/ intellij idea 等 IDE 工具留下来的 .settings、.classpath、.project、.iml、.idea 等各种配置文件,还有 maven/ gradle 在项目构建后的 target、classes 目录下的编译文件等。
183 0