项目初始化


Shusheng Shi@PC-of-sss MINGW64 /h/mmall
$ touch README.mdShusheng Shi@PC-of-sss MINGW64 /h/mmall
$ touch .gitignoreShusheng Shi@PC-of-sss MINGW64 /h/mmall
$ git init
Initialized empty Git repository in H:/mmall/.git/Shusheng Shi@PC-of-sss MINGW64 /h/mmall (master)
$ git status
On branch masterInitial commitUntracked files:(use "git add <file>..." to include in what will be committed).gitignoreREADME.mdpom.xmlsrc/nothing added to commit but untracked files present (use "git add" to track)Shusheng Shi@PC-of-sss MINGW64 /h/mmall (master)
$ git add .
warning: CRLF will be replaced by LF in .gitignore.
The file will have its original line endings in your working directory.
warning: CRLF will be replaced by LF in pom.xml.
The file will have its original line endings in your working directory.
warning: CRLF will be replaced by LF in src/main/webapp/WEB-INF/web.xml.
The file will have its original line endings in your working directory.
warning: CRLF will be replaced by LF in src/main/webapp/index.jsp.
The file will have its original line endings in your working directory.Shusheng Shi@PC-of-sss MINGW64 /h/mmall (master)
$ git status
On branch masterInitial commitChanges to be committed:(use "git rm --cached <file>..." to unstage)new file:   .gitignorenew file:   README.mdnew file:   pom.xmlnew file:   src/main/webapp/WEB-INF/web.xmlnew file:   src/main/webapp/index.jspShusheng Shi@PC-of-sss MINGW64 /h/mmall (master)
$ git commit -am 'first commit init project'
[master (root-commit) 0383eae] first commit init project5 files changed, 69 insertions(+)create mode 100644 .gitignorecreate mode 100644 README.mdcreate mode 100644 pom.xmlcreate mode 100644 src/main/webapp/WEB-INF/web.xmlcreate mode 100644 src/main/webapp/index.jspShusheng Shi@PC-of-sss MINGW64 /h/mmall (master)
$ git remote add origin git@gitee.com:shushengshi/mmall_learning.gitShusheng Shi@PC-of-sss MINGW64 /h/mmall (master)
$ git branch
* masterShusheng Shi@PC-of-sss MINGW64 /h/mmall (master)
$ git push -u origin master
To gitee.com:shushengshi/mmall_learning.git! [rejected]        master -> master (fetch first)
error: failed to push some refs to 'git@gitee.com:shushengshi/mmall_learning.git'
hint: Updates were rejected because the remote contains work that you do
hint: not have locally. This is usually caused by another repository pushing
hint: to the same ref. You may want to first integrate the remote changes
hint: (e.g., 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.Shusheng Shi@PC-of-sss MINGW64 /h/mmall (master)
$ git pull
warning: no common commits
remote: Counting objects: 3, done.
remote: Compressing objects: 100% (2/2), done.
remote: Total 3 (delta 0), reused 0 (delta 0)
Unpacking objects: 100% (3/3), done.
From gitee.com:shushengshi/mmall_learning* [new branch]      master     -> origin/master
There is no tracking information for the current branch.
Please specify which branch you want to merge with.
See git-pull(1) for details.git pull <remote> <branch>If you wish to set tracking information for this branch you can do so with:git branch --set-upstream-to=origin/<branch> masterShusheng Shi@PC-of-sss MINGW64 /h/mmall (master)
$ git push -u origin master
To gitee.com:shushengshi/mmall_learning.git! [rejected]        master -> master (non-fast-forward)
error: failed to push some refs to 'git@gitee.com:shushengshi/mmall_learning.git'
hint: Updates were rejected because the tip of your current branch is behind
hint: its remote counterpart. Integrate the remote changes (e.g.
hint: 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.Shusheng Shi@PC-of-sss MINGW64 /h/mmall (master)
$ git push -u -f origin master
Counting objects: 11, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (7/7), done.
Writing objects: 100% (11/11), 1.22 KiB | 0 bytes/s, done.
Total 11 (delta 0), reused 0 (delta 0)
To gitee.com:shushengshi/mmall_learning.git+ 1e43320...0383eae master -> master (forced update)
Branch master set up to track remote branch master from origin.Shusheng Shi@PC-of-sss MINGW64 /h/mmall (master)
$ git branch
* masterShusheng Shi@PC-of-sss MINGW64 /h/mmall (master)
$ git branch -rorigin/masterShusheng Shi@PC-of-sss MINGW64 /h/mmall (master)
$ git checkout -b v1.0 origin/master
Switched to a new branch 'v1.0'
Branch v1.0 set up to track remote branch master from origin.Shusheng Shi@PC-of-sss MINGW64 /h/mmall (v1.0)
$ git branchmaster
* v1.0Shusheng Shi@PC-of-sss MINGW64 /h/mmall (v1.0)
$ git push origin HEAD -u
Total 0 (delta 0), reused 0 (delta 0)
To gitee.com:shushengshi/mmall_learning.git* [new branch]      HEAD -> v1.0
Branch v1.0 set up to track remote branch v1.0 from origin.

配置文件完成


Shusheng Shi@PC-of-sss MINGW64 /h/mmall (v1.0)
$ git status
On branch v1.0
Your branch is up-to-date with 'origin/v1.0'.
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:   pom.xmlmodified:   src/main/webapp/WEB-INF/web.xmlUntracked files:(use "git add <file>..." to include in what will be committed)src/main/java/src/main/resources/src/main/webapp/WEB-INF/dispatcher-servlet.xmlno changes added to commit (use "git add" and/or "git commit -a")Shusheng Shi@PC-of-sss MINGW64 /h/mmall (v1.0)
$ git add .
warning: CRLF will be replaced by LF in pom.xml.
The file will have its original line endings in your working directory.
warning: CRLF will be replaced by LF in src/main/webapp/WEB-INF/web.xml.
The file will have its original line endings in your working directory.
warning: CRLF will be replaced by LF in src/main/java/com/mmall/dao/CartMapper.java.
The file will have its original line endings in your working directory.
warning: CRLF will be replaced by LF in src/main/java/com/mmall/dao/CategoryMapper.java.
The file will have its original line endings in your working directory.
warning: CRLF will be replaced by LF in src/main/java/com/mmall/dao/OrderItemMapper.java.
The file will have its original line endings in your working directory.
warning: CRLF will be replaced by LF in src/main/java/com/mmall/dao/OrderMapper.java.
The file will have its original line endings in your working directory.
warning: CRLF will be replaced by LF in src/main/java/com/mmall/dao/PayInfoMapper.java.
The file will have its original line endings in your working directory.
warning: CRLF will be replaced by LF in src/main/java/com/mmall/dao/ProductMapper.java.
The file will have its original line endings in your working directory.
warning: CRLF will be replaced by LF in src/main/java/com/mmall/dao/ShippingMapper.java.
The file will have its original line endings in your working directory.
warning: CRLF will be replaced by LF in src/main/java/com/mmall/dao/UserMapper.java.
The file will have its original line endings in your working directory.
warning: CRLF will be replaced by LF in src/main/java/com/mmall/pojo/Cart.java.
The file will have its original line endings in your working directory.
warning: CRLF will be replaced by LF in src/main/java/com/mmall/pojo/Category.java.
The file will have its original line endings in your working directory.
warning: CRLF will be replaced by LF in src/main/java/com/mmall/pojo/Order.java.
The file will have its original line endings in your working directory.
warning: CRLF will be replaced by LF in src/main/java/com/mmall/pojo/OrderItem.java.
The file will have its original line endings in your working directory.
warning: CRLF will be replaced by LF in src/main/java/com/mmall/pojo/PayInfo.java.
The file will have its original line endings in your working directory.
warning: CRLF will be replaced by LF in src/main/java/com/mmall/pojo/Product.java.
The file will have its original line endings in your working directory.
warning: CRLF will be replaced by LF in src/main/java/com/mmall/pojo/Shipping.java.
The file will have its original line endings in your working directory.
warning: CRLF will be replaced by LF in src/main/java/com/mmall/pojo/User.java.
The file will have its original line endings in your working directory.
warning: CRLF will be replaced by LF in src/main/resources/applicationContext-datasource.xml.
The file will have its original line endings in your working directory.
warning: CRLF will be replaced by LF in src/main/resources/applicationContext.xml.
The file will have its original line endings in your working directory.
warning: CRLF will be replaced by LF in src/main/resources/generatorConfig.xml.
The file will have its original line endings in your working directory.
warning: CRLF will be replaced by LF in src/main/resources/mappers/CartMapper.xml.
The file will have its original line endings in your working directory.
warning: CRLF will be replaced by LF in src/main/resources/mappers/CategoryMapper.xml.
The file will have its original line endings in your working directory.
warning: CRLF will be replaced by LF in src/main/resources/mappers/OrderItemMapper.xml.
The file will have its original line endings in your working directory.
warning: CRLF will be replaced by LF in src/main/resources/mappers/OrderMapper.xml.
The file will have its original line endings in your working directory.
warning: CRLF will be replaced by LF in src/main/resources/mappers/PayInfoMapper.xml.
The file will have its original line endings in your working directory.
warning: CRLF will be replaced by LF in src/main/resources/mappers/ProductMapper.xml.
The file will have its original line endings in your working directory.
warning: CRLF will be replaced by LF in src/main/resources/mappers/ShippingMapper.xml.
The file will have its original line endings in your working directory.
warning: CRLF will be replaced by LF in src/main/resources/mappers/UserMapper.xml.
The file will have its original line endings in your working directory.Shusheng Shi@PC-of-sss MINGW64 /h/mmall (v1.0)
$ git status
On branch v1.0
Your branch is up-to-date with 'origin/v1.0'.
Changes to be committed:(use "git reset HEAD <file>..." to unstage)modified:   pom.xmlnew file:   src/main/java/com/mmall/dao/CartMapper.javanew file:   src/main/java/com/mmall/dao/CategoryMapper.javanew file:   src/main/java/com/mmall/dao/OrderItemMapper.javanew file:   src/main/java/com/mmall/dao/OrderMapper.javanew file:   src/main/java/com/mmall/dao/PayInfoMapper.javanew file:   src/main/java/com/mmall/dao/ProductMapper.javanew file:   src/main/java/com/mmall/dao/ShippingMapper.javanew file:   src/main/java/com/mmall/dao/UserMapper.javanew file:   src/main/java/com/mmall/pojo/Cart.javanew file:   src/main/java/com/mmall/pojo/Category.javanew file:   src/main/java/com/mmall/pojo/Order.javanew file:   src/main/java/com/mmall/pojo/OrderItem.javanew file:   src/main/java/com/mmall/pojo/PayInfo.javanew file:   src/main/java/com/mmall/pojo/Product.javanew file:   src/main/java/com/mmall/pojo/Shipping.javanew file:   src/main/java/com/mmall/pojo/User.javanew file:   src/main/resources/applicationContext-datasource.xmlnew file:   src/main/resources/applicationContext.xmlnew file:   src/main/resources/datasource.propertiesnew file:   src/main/resources/generatorConfig.xmlnew file:   src/main/resources/logback.xmlnew file:   src/main/resources/mappers/CartMapper.xmlnew file:   src/main/resources/mappers/CategoryMapper.xmlnew file:   src/main/resources/mappers/OrderItemMapper.xmlnew file:   src/main/resources/mappers/OrderMapper.xmlnew file:   src/main/resources/mappers/PayInfoMapper.xmlnew file:   src/main/resources/mappers/ProductMapper.xmlnew file:   src/main/resources/mappers/ShippingMapper.xmlnew file:   src/main/resources/mappers/UserMapper.xmlnew file:   src/main/resources/mmall.propertiesnew file:   src/main/webapp/WEB-INF/dispatcher-servlet.xmlmodified:   src/main/webapp/WEB-INF/web.xmlShusheng Shi@PC-of-sss MINGW64 /h/mmall (v1.0)
$ git commit -am 'project init commit'
[v1.0 ff5f0ba] project init commit33 files changed, 3048 insertions(+), 10 deletions(-)create mode 100644 src/main/java/com/mmall/dao/CartMapper.javacreate mode 100644 src/main/java/com/mmall/dao/CategoryMapper.javacreate mode 100644 src/main/java/com/mmall/dao/OrderItemMapper.javacreate mode 100644 src/main/java/com/mmall/dao/OrderMapper.javacreate mode 100644 src/main/java/com/mmall/dao/PayInfoMapper.javacreate mode 100644 src/main/java/com/mmall/dao/ProductMapper.javacreate mode 100644 src/main/java/com/mmall/dao/ShippingMapper.javacreate mode 100644 src/main/java/com/mmall/dao/UserMapper.javacreate mode 100644 src/main/java/com/mmall/pojo/Cart.javacreate mode 100644 src/main/java/com/mmall/pojo/Category.javacreate mode 100644 src/main/java/com/mmall/pojo/Order.javacreate mode 100644 src/main/java/com/mmall/pojo/OrderItem.javacreate mode 100644 src/main/java/com/mmall/pojo/PayInfo.javacreate mode 100644 src/main/java/com/mmall/pojo/Product.javacreate mode 100644 src/main/java/com/mmall/pojo/Shipping.javacreate mode 100644 src/main/java/com/mmall/pojo/User.javacreate mode 100644 src/main/resources/applicationContext-datasource.xmlcreate mode 100644 src/main/resources/applicationContext.xmlcreate mode 100644 src/main/resources/datasource.propertiescreate mode 100644 src/main/resources/generatorConfig.xmlcreate mode 100644 src/main/resources/logback.xmlcreate mode 100644 src/main/resources/mappers/CartMapper.xmlcreate mode 100644 src/main/resources/mappers/CategoryMapper.xmlcreate mode 100644 src/main/resources/mappers/OrderItemMapper.xmlcreate mode 100644 src/main/resources/mappers/OrderMapper.xmlcreate mode 100644 src/main/resources/mappers/PayInfoMapper.xmlcreate mode 100644 src/main/resources/mappers/ProductMapper.xmlcreate mode 100644 src/main/resources/mappers/ShippingMapper.xmlcreate mode 100644 src/main/resources/mappers/UserMapper.xmlcreate mode 100644 src/main/resources/mmall.propertiescreate mode 100644 src/main/webapp/WEB-INF/dispatcher-servlet.xmlrewrite src/main/webapp/WEB-INF/web.xml (93%)Shusheng Shi@PC-of-sss MINGW64 /h/mmall (v1.0)
$ git push
Counting objects: 46, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (43/43), done.
Writing objects: 100% (46/46), 19.54 KiB | 0 bytes/s, done.
Total 46 (delta 17), reused 0 (delta 0)
To gitee.com:shushengshi/mmall_learning.git0383eae..ff5f0ba  v1.0 -> v1.0

用户模块完成


Shusheng Shi@PC-of-sss MINGW64 /h/mmall (v1.0)
$ git status
On branch v1.0
Your branch is up-to-date with 'origin/v1.0'.
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:   pom.xmlmodified:   src/main/java/com/mmall/dao/UserMapper.javamodified:   src/main/resources/logback.xmlmodified:   src/main/resources/mappers/UserMapper.xmlmodified:   src/main/webapp/WEB-INF/dispatcher-servlet.xmlmodified:   src/main/webapp/WEB-INF/web.xmlUntracked files:(use "git add <file>..." to include in what will be committed)src/main/java/com/mmall/common/src/main/java/com/mmall/controller/src/main/java/com/mmall/service/src/main/java/com/mmall/util/no changes added to commit (use "git add" and/or "git commit -a")Shusheng Shi@PC-of-sss MINGW64 /h/mmall (v1.0)
$ git add .
warning: CRLF will be replaced by LF in pom.xml.
The file will have its original line endings in your working directory.
warning: CRLF will be replaced by LF in src/main/java/com/mmall/dao/UserMapper.java.
The file will have its original line endings in your working directory.
warning: CRLF will be replaced by LF in src/main/resources/mappers/UserMapper.xml.
The file will have its original line endings in your working directory.
warning: CRLF will be replaced by LF in src/main/webapp/WEB-INF/web.xml.
The file will have its original line endings in your working directory.
warning: CRLF will be replaced by LF in src/main/java/com/mmall/common/Const.java.
The file will have its original line endings in your working directory.
warning: CRLF will be replaced by LF in src/main/java/com/mmall/common/ResponseCode.java.
The file will have its original line endings in your working directory.
warning: CRLF will be replaced by LF in src/main/java/com/mmall/common/ServerResponse.java.
The file will have its original line endings in your working directory.
warning: CRLF will be replaced by LF in src/main/java/com/mmall/common/TokenCache.java.
The file will have its original line endings in your working directory.
warning: CRLF will be replaced by LF in src/main/java/com/mmall/controller/backend/UserManageController.java.
The file will have its original line endings in your working directory.
warning: CRLF will be replaced by LF in src/main/java/com/mmall/controller/portal/UserController.java.
The file will have its original line endings in your working directory.
warning: CRLF will be replaced by LF in src/main/java/com/mmall/service/IUserService.java.
The file will have its original line endings in your working directory.
warning: CRLF will be replaced by LF in src/main/java/com/mmall/service/impl/UserServiceImpl.java.
The file will have its original line endings in your working directory.
warning: CRLF will be replaced by LF in src/main/java/com/mmall/util/MD5Util.java.
The file will have its original line endings in your working directory.
warning: CRLF will be replaced by LF in src/main/java/com/mmall/util/PropertiesUtil.java.
The file will have its original line endings in your working directory.Shusheng Shi@PC-of-sss MINGW64 /h/mmall (v1.0)
$ git status
On branch v1.0
Your branch is up-to-date with 'origin/v1.0'.
Changes to be committed:(use "git reset HEAD <file>..." to unstage)modified:   pom.xmlnew file:   src/main/java/com/mmall/common/Const.javanew file:   src/main/java/com/mmall/common/ResponseCode.javanew file:   src/main/java/com/mmall/common/ServerResponse.javanew file:   src/main/java/com/mmall/common/TokenCache.javanew file:   src/main/java/com/mmall/controller/backend/UserManageController.javanew file:   src/main/java/com/mmall/controller/portal/UserController.javamodified:   src/main/java/com/mmall/dao/UserMapper.javanew file:   src/main/java/com/mmall/service/IUserService.javanew file:   src/main/java/com/mmall/service/impl/UserServiceImpl.javanew file:   src/main/java/com/mmall/util/MD5Util.javanew file:   src/main/java/com/mmall/util/PropertiesUtil.javamodified:   src/main/resources/logback.xmlmodified:   src/main/resources/mappers/UserMapper.xmlmodified:   src/main/webapp/WEB-INF/dispatcher-servlet.xmlmodified:   src/main/webapp/WEB-INF/web.xmlShusheng Shi@PC-of-sss MINGW64 /h/mmall (v1.0)
$ git commit -am '用户模块'
[v1.0 cf30e25] 用户模块16 files changed, 828 insertions(+), 35 deletions(-)create mode 100644 src/main/java/com/mmall/common/Const.javacreate mode 100644 src/main/java/com/mmall/common/ResponseCode.javacreate mode 100644 src/main/java/com/mmall/common/ServerResponse.javacreate mode 100644 src/main/java/com/mmall/common/TokenCache.javacreate mode 100644 src/main/java/com/mmall/controller/backend/UserManageController.javacreate mode 100644 src/main/java/com/mmall/controller/portal/UserController.javacreate mode 100644 src/main/java/com/mmall/service/IUserService.javacreate mode 100644 src/main/java/com/mmall/service/impl/UserServiceImpl.javacreate mode 100644 src/main/java/com/mmall/util/MD5Util.javacreate mode 100644 src/main/java/com/mmall/util/PropertiesUtil.javaShusheng Shi@PC-of-sss MINGW64 /h/mmall (v1.0)
$ git push
Counting objects: 35, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (30/30), done.
Writing objects: 100% (35/35), 9.47 KiB | 0 bytes/s, done.
Total 35 (delta 10), reused 0 (delta 0)
To gitee.com:shushengshi/mmall_learning.gitff5f0ba..cf30e25  v1.0 -> v1.0

商品模块完成


Shusheng Shi@PC-of-sss MINGW64 /h/mmall (v1.0)
$ git status
On branch v1.0
Your branch is up-to-date with 'origin/v1.0'.
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:   src/main/java/com/mmall/common/Const.javamodified:   src/main/java/com/mmall/dao/ProductMapper.javamodified:   src/main/java/com/mmall/util/PropertiesUtil.javamodified:   src/main/resources/mappers/ProductMapper.xmlmodified:   src/main/webapp/index.jspUntracked files:(use "git add <file>..." to include in what will be committed)src/main/java/com/mmall/controller/backend/ProductManageController.javasrc/main/java/com/mmall/controller/portal/ProductController.javasrc/main/java/com/mmall/service/IFileService.javasrc/main/java/com/mmall/service/IProductService.javasrc/main/java/com/mmall/service/impl/FileServiceImpl.javasrc/main/java/com/mmall/service/impl/ProductServiceImpl.javasrc/main/java/com/mmall/util/DateTimeUtil.javasrc/main/java/com/mmall/util/FTPUtil.javasrc/main/java/com/mmall/vo/no changes added to commit (use "git add" and/or "git commit -a")Shusheng Shi@PC-of-sss MINGW64 /h/mmall (v1.0)
$ git add .
warning: CRLF will be replaced by LF in src/main/java/com/mmall/common/Const.java.
The file will have its original line endings in your working directory.
warning: CRLF will be replaced by LF in src/main/java/com/mmall/dao/ProductMapper.java.
The file will have its original line endings in your working directory.
warning: CRLF will be replaced by LF in src/main/java/com/mmall/util/PropertiesUtil.java.
The file will have its original line endings in your working directory.
warning: CRLF will be replaced by LF in src/main/resources/mappers/ProductMapper.xml.
The file will have its original line endings in your working directory.
warning: CRLF will be replaced by LF in src/main/webapp/index.jsp.
The file will have its original line endings in your working directory.
warning: CRLF will be replaced by LF in src/main/java/com/mmall/controller/backend/ProductManageController.java.
The file will have its original line endings in your working directory.
warning: CRLF will be replaced by LF in src/main/java/com/mmall/controller/portal/ProductController.java.
The file will have its original line endings in your working directory.
warning: CRLF will be replaced by LF in src/main/java/com/mmall/service/IFileService.java.
The file will have its original line endings in your working directory.
warning: CRLF will be replaced by LF in src/main/java/com/mmall/service/IProductService.java.
The file will have its original line endings in your working directory.
warning: CRLF will be replaced by LF in src/main/java/com/mmall/service/impl/FileServiceImpl.java.
The file will have its original line endings in your working directory.
warning: CRLF will be replaced by LF in src/main/java/com/mmall/service/impl/ProductServiceImpl.java.
The file will have its original line endings in your working directory.
warning: CRLF will be replaced by LF in src/main/java/com/mmall/util/DateTimeUtil.java.
The file will have its original line endings in your working directory.
warning: CRLF will be replaced by LF in src/main/java/com/mmall/util/FTPUtil.java.
The file will have its original line endings in your working directory.
warning: CRLF will be replaced by LF in src/main/java/com/mmall/vo/ProductDetailVo.java.
The file will have its original line endings in your working directory.
warning: CRLF will be replaced by LF in src/main/java/com/mmall/vo/ProductListVo.java.
The file will have its original line endings in your working directory.Shusheng Shi@PC-of-sss MINGW64 /h/mmall (v1.0)
$ git status
On branch v1.0
Your branch is up-to-date with 'origin/v1.0'.
Changes to be committed:(use "git reset HEAD <file>..." to unstage)modified:   src/main/java/com/mmall/common/Const.javanew file:   src/main/java/com/mmall/controller/backend/ProductManageController.javanew file:   src/main/java/com/mmall/controller/portal/ProductController.javamodified:   src/main/java/com/mmall/dao/ProductMapper.javanew file:   src/main/java/com/mmall/service/IFileService.javanew file:   src/main/java/com/mmall/service/IProductService.javanew file:   src/main/java/com/mmall/service/impl/FileServiceImpl.javanew file:   src/main/java/com/mmall/service/impl/ProductServiceImpl.javanew file:   src/main/java/com/mmall/util/DateTimeUtil.javanew file:   src/main/java/com/mmall/util/FTPUtil.javamodified:   src/main/java/com/mmall/util/PropertiesUtil.javanew file:   src/main/java/com/mmall/vo/ProductDetailVo.javanew file:   src/main/java/com/mmall/vo/ProductListVo.javamodified:   src/main/resources/mappers/ProductMapper.xmlmodified:   src/main/webapp/index.jspShusheng Shi@PC-of-sss MINGW64 /h/mmall (v1.0)
$ git commit -am '商品模块'
[v1.0 0c8dab1] 商品模块15 files changed, 1055 insertions(+), 16 deletions(-)create mode 100644 src/main/java/com/mmall/controller/backend/ProductManageController.javacreate mode 100644 src/main/java/com/mmall/controller/portal/ProductController.javacreate mode 100644 src/main/java/com/mmall/service/IFileService.javacreate mode 100644 src/main/java/com/mmall/service/IProductService.javacreate mode 100644 src/main/java/com/mmall/service/impl/FileServiceImpl.javacreate mode 100644 src/main/java/com/mmall/service/impl/ProductServiceImpl.javacreate mode 100644 src/main/java/com/mmall/util/DateTimeUtil.javacreate mode 100644 src/main/java/com/mmall/util/FTPUtil.javacreate mode 100644 src/main/java/com/mmall/vo/ProductDetailVo.javacreate mode 100644 src/main/java/com/mmall/vo/ProductListVo.javaShusheng Shi@PC-of-sss MINGW64 /h/mmall (v1.0)
$ git push
Counting objects: 34, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (31/31), done.
Writing objects: 100% (34/34), 10.86 KiB | 0 bytes/s, done.
Total 34 (delta 11), reused 0 (delta 0)
To gitee.com:shushengshi/mmall_learning.git6d19e5a..0c8dab1  v1.0 -> v1.0

收货地址模块完成


Shusheng Shi@PC-of-sss MINGW64 /h/mmall (v1.0)
$ git status
On branch v1.0
Your branch is up-to-date with 'origin/v1.0'.
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:   src/main/java/com/mmall/dao/ShippingMapper.javamodified:   src/main/resources/mappers/ShippingMapper.xmlUntracked files:(use "git add <file>..." to include in what will be committed)src/main/java/com/mmall/controller/portal/ShippingController.javasrc/main/java/com/mmall/service/IShippingService.javasrc/main/java/com/mmall/service/impl/ShippingServiceImpl.javano changes added to commit (use "git add" and/or "git commit -a")Shusheng Shi@PC-of-sss MINGW64 /h/mmall (v1.0)
$ git add .
warning: CRLF will be replaced by LF in src/main/java/com/mmall/dao/ShippingMapper.java.
The file will have its original line endings in your working directory.
warning: CRLF will be replaced by LF in src/main/resources/mappers/ShippingMapper.xml.
The file will have its original line endings in your working directory.
warning: CRLF will be replaced by LF in src/main/java/com/mmall/controller/portal/ShippingController.java.
The file will have its original line endings in your working directory.
warning: CRLF will be replaced by LF in src/main/java/com/mmall/service/IShippingService.java.
The file will have its original line endings in your working directory.
warning: CRLF will be replaced by LF in src/main/java/com/mmall/service/impl/ShippingServiceImpl.java.
The file will have its original line endings in your working directory.Shusheng Shi@PC-of-sss MINGW64 /h/mmall (v1.0)
$ git status
On branch v1.0
Your branch is up-to-date with 'origin/v1.0'.
Changes to be committed:(use "git reset HEAD <file>..." to unstage)new file:   src/main/java/com/mmall/controller/portal/ShippingController.javamodified:   src/main/java/com/mmall/dao/ShippingMapper.javanew file:   src/main/java/com/mmall/service/IShippingService.javanew file:   src/main/java/com/mmall/service/impl/ShippingServiceImpl.javamodified:   src/main/resources/mappers/ShippingMapper.xmlShusheng Shi@PC-of-sss MINGW64 /h/mmall (v1.0)
$ git commit -am '收货地址模块'
[v1.0 eb1bb33] 收货地址模块5 files changed, 295 insertions(+), 25 deletions(-)create mode 100644 src/main/java/com/mmall/controller/portal/ShippingController.javacreate mode 100644 src/main/java/com/mmall/service/IShippingService.javacreate mode 100644 src/main/java/com/mmall/service/impl/ShippingServiceImpl.javaShusheng Shi@PC-of-sss MINGW64 /h/mmall (v1.0)
$ git push
Counting objects: 19, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (16/16), done.
Writing objects: 100% (19/19), 3.45 KiB | 0 bytes/s, done.
Total 19 (delta 9), reused 0 (delta 0)
To gitee.com:shushengshi/mmall_learning.git8c735cb..eb1bb33  v1.0 -> v1.0

校园交易平台后台系统git操作全过程相关推荐

  1. 利用SpringMVC的AOP来实现后台系统的操作日志记录

    最近在项目中要求把后台的一些关键操作记录下来,想了好半天能想到的也就那两三种方式,要么就是写一个拦截器,然后再web.xml里面进行配置,要么就是就是在每个需要记录操作日志的代码里面进行拦截,最后我选 ...

  2. [附源码]计算机毕业设计springboot校园服装租赁系统

    项目运行 环境配置: Jdk1.8 + Tomcat7.0 + Mysql + HBuilderX(Webstorm也行)+ Eclispe(IntelliJ IDEA,Eclispe,MyEclis ...

  3. 【计算机毕业设计】147校园失物招领系统

    一.系统截图(需要演示视频可以私聊) 目 录 目 录 摘  要 ABSTRACT 1 绪论 1.1 课题背景 1.2 研究现状 1.3 研究内容 2 系统开发环境 2.1 vue技术 2.2 JAVA ...

  4. 织梦php重新安装教程,织梦CMS系统后台重装的操作教程

    原标题:织梦CMS系统后台重装的操作教程 网站在线运行,不可能一点问题都不存在,或者当初的网站设计.架构.功能已经不能满足现在用户的需求,所以我们会对网站做出相应的改动.网站除了前端的改版,还会有后台 ...

  5. 基于PHP的校园留言板系统(带后台管理)

    前言 项目可包部署 Q 1115487855 交流群:758350964 一 项目介绍 基于PHP的校园留言板系统(带后台管理) 系统分为前后台,系统用户分为普通用户和管理员 技术栈 php+mysq ...

  6. 基于springboot校园二手网站系统 毕业设计-附源码221414

    目 录 摘要 1 1 绪论 1 1.1 研究背景 1 1.2国内外研究现状 1 1.3论文结构与章节安排 1 2 校园二手网站系统系统分析 3 2.1 可行性分析 3 2.2 系统流程分析 3 2.2 ...

  7. spring boot校园二手网站系统毕业设计源码221414

    目  录 摘要 1 1 绪论 1 1.1 研究背景 1 1.2国内外研究现状 1 1.3论文结构与章节安排 1 2校园二手网站系统 系统分析 3 2.1 可行性分析 3 2.2 系统流程分析 3 2. ...

  8. (附源码)spring boot校园二手网站系统 毕业设计 221414

    目  录 摘要 1 绪论 1.1 研究背景 1.2国内外研究现状 1.3论文结构与章节安排 2校园二手网站系统 系统分析 2.1 可行性分析 2.2 系统流程分析 2.2.1 数据流程 3.3.2 业 ...

  9. 基于SSM校园二手商城系统的设计与实现【毕业设计项目】

    今天和大家聊一聊的是一个ssm框架的校园二手商城系统.校园二手交易平台.项目的话页面简洁,易操作.比较适合初学者学习.毕业设计.课程设计.大作业等等.小编的观点就是要想把技术学好,我们应该从基础的小项 ...

最新文章

  1. OKR和KPI有什么区别?
  2. 【2018.4.7】模拟赛之五-ssl2386 序列【dp】
  3. 【线段树】【LCT】【LCA】树点涂色(luogu 3703)
  4. ETL异构数据源Datax_datax-web简述_09
  5. BugkuCTF-MISC题convert
  6. java开发框架_Java-程序员感悟-开发人员喜欢的框架之Spring
  7. 30秒Python轻松入门-目录
  8. Helm 3 完整教程(八):Helm 函数讲解(2)字符串函数
  9. linux下配置tomcat(详细)
  10. Java全国计算机等级考试二级笔记---操作题部分
  11. 关于长江的题目_高中关于长江的作文题目加优秀范文
  12. scala的linearization
  13. 单片机c语言中断意义,51单片机中断系统的重要性
  14. nrf51822+rfx2401c系统板(开源原理图、PCB)
  15. 倍福PLC的C++ ADS通讯定义数据类型时注意事项
  16. IC卡、ID卡、M1卡、射频卡的区别是什么(射频卡是种通信技术)
  17. 联想笔记本-野兽模式设置
  18. 【中小学科技竞赛】哪些比赛较有含金量值得参加?如何获取赛事信息?
  19. asp.net酒店餐饮管理系统
  20. 一款使用C# .NET开发的SIP网络电话客户端完整源码

热门文章

  1. 白话Elasticsearch01- 结构化搜索之使用term query来搜索数据
  2. 学习笔记Flink(二)—— Flink数据流模型、时间窗口和核心概念
  3. Android Q适配
  4. 鸿蒙系统今日发布 中国人自己的操作系统,鸿蒙系统今日发布,中国人自己的操作系统...
  5. 2021-10-27 PTA 数据结构 链表 两个有序链表序列的合并
  6. 【vue.js开发】如何在vue里面优雅的解决跨域,路由冲突问题
  7. uni-app 请求封装
  8. 微信小程序(购物车)--在wxml中设置保留小数位数
  9. 统计学cv值是什么意思_电源的回馈控制回路有什么作用?
  10. html 禁止缩放 ios10,完美解决ios10及以上Safari无法禁止缩放的问题