博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
添加gitignore文件
阅读量:6701 次
发布时间:2019-06-25

本文共 1961 字,大约阅读时间需要 6 分钟。

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.mdShusheng Shi@PC-of-sss MINGW64 ~/mmall/doc/mmall-fe (master)$ vim .gitignoreShusheng Shi@PC-of-sss MINGW64 ~/mmall/doc/mmall-fe (master)$ git statusOn branch masterYour branch is up-to-date with 'origin/master'.Changes not staged for commit:  (use "git add/rm 
..." to update what will be committed) (use "git checkout --
..." to discard changes in working directo ry) deleted: test.htmlUntracked files: (use "git add
..." to include in what will be committed) .gitignoreno changes added to commit (use "git add" and/or "git commit -a")Shusheng Shi@PC-of-sss MINGW64 ~/mmall/doc/mmall-fe (master)$ git stgit: 'st' is not a git command. See 'git --help'.The most similar commands are status reset stage stash svnShusheng 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 varShusheng 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.htmlShusheng Shi@PC-of-sss MINGW64 ~/mmall/doc/mmall-fe (master)$ git pushCounting 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 -> masterShusheng Shi@PC-of-sss MINGW64 ~/mmall/doc/mmall-fe (master)$ touch .DS_Store

转载地址:http://eowlo.baihongyu.com/

你可能感兴趣的文章
为你推荐几款开发常用的代码编辑器
查看>>
opencv python 直方图
查看>>
MySQL的Buffered and Unbuffered queries
查看>>
devstack安装
查看>>
利用 entry/onpremise 搭建一个 Sentry 异常汇总工具
查看>>
【跃迁之路】【513天】刻意练习系列272(2018.07.03)
查看>>
【刷算法】二叉搜索树与双向链表
查看>>
实战PHP数据结构基础之单链表
查看>>
函数化组件
查看>>
二叉树
查看>>
Go微服务 - 第一部分 - 介绍及理论基础
查看>>
语义图像分割概览
查看>>
React 教程第十五篇 —— 项目应用
查看>>
关于js类型转换骚操作
查看>>
JS代码复用模式
查看>>
Node.js 教程第七篇——Express 基础应用
查看>>
如何优雅的设计PHP异常
查看>>
JavaScript的String
查看>>
记录Homestead安装过程中的坑
查看>>
【基础】JavaScript类型判断
查看>>