校園交易平臺後臺系統git操作全過程
專案初始化
Shusheng Shi@PC-of-sss MINGW64 /h/mmall $ touch README.md Shusheng Shi@PC-of-sss MINGW64 /h/mmall $ touch .gitignore Shusheng 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 master Initial commit Untracked files: (use "git add <file>..." to include in what will be committed) .gitignore README.md pom.xml src/ 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 master Initial commit Changes to be committed: (use "git rm --cached <file>..." to unstage) new file: .gitignore new file: README.md new file: pom.xml new file: src/main/webapp/WEB-INF/web.xml new file: src/main/webapp/index.jsp Shusheng Shi@PC-of-sss MINGW64 /h/mmall (master) $ git commit -am 'first commit init project'[master (root-commit) 0383eae] first commit init project 5 files changed, 69 insertions(+) create mode 100644 .gitignore create mode 100644 README.md create mode 100644 pom.xml create mode 100644 src/main/webapp/WEB-INF/web.xml create mode 100644 src/main/webapp/index.jsp Shusheng Shi@PC-of-sss MINGW64 /h/mmall (master) $ git remote add origin git@gitee.com:shushengshi/mmall_learning.git Shusheng Shi@PC-of-sss MINGW64 /h/mmall (master) $ git branch * master Shusheng 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 dohint: not have locally. This is usually caused by another repository pushinghint: to the same ref. You may want to first integrate the remote changeshint: (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 pullwarning: no common commitsremote: 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> master Shusheng 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 behindhint: 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 * master Shusheng Shi@PC-of-sss MINGW64 /h/mmall (master) $ git branch -r origin/master Shusheng 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 branch master * v1.0 Shusheng 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.0Your 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.xml modified: src/main/webapp/WEB-INF/web.xml Untracked 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.xml 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/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.0Your branch is up-to-date with 'origin/v1.0'. Changes to be committed: (use "git reset HEAD <file>..." to unstage) modified: pom.xml new file: src/main/java/com/mmall/dao/CartMapper.java new file: src/main/java/com/mmall/dao/CategoryMapper.java new file: src/main/java/com/mmall/dao/OrderItemMapper.java new file: src/main/java/com/mmall/dao/OrderMapper.java new file: src/main/java/com/mmall/dao/PayInfoMapper.java new file: src/main/java/com/mmall/dao/ProductMapper.java new file: src/main/java/com/mmall/dao/ShippingMapper.java new file: src/main/java/com/mmall/dao/UserMapper.java new file: src/main/java/com/mmall/pojo/Cart.java new file: src/main/java/com/mmall/pojo/Category.java new file: src/main/java/com/mmall/pojo/Order.java new file: src/main/java/com/mmall/pojo/OrderItem.java new file: src/main/java/com/mmall/pojo/PayInfo.java new file: src/main/java/com/mmall/pojo/Product.java new file: src/main/java/com/mmall/pojo/Shipping.java new file: src/main/java/com/mmall/pojo/User.java new file: src/main/resources/applicationContext-datasource.xml new file: src/main/resources/applicationContext.xml new file: src/main/resources/datasource.properties new file: src/main/resources/generatorConfig.xml new file: src/main/resources/logback.xml new file: src/main/resources/mappers/CartMapper.xml new file: src/main/resources/mappers/CategoryMapper.xml new file: src/main/resources/mappers/OrderItemMapper.xml new file: src/main/resources/mappers/OrderMapper.xml new file: src/main/resources/mappers/PayInfoMapper.xml new file: src/main/resources/mappers/ProductMapper.xml new file: src/main/resources/mappers/ShippingMapper.xml new file: src/main/resources/mappers/UserMapper.xml new file: src/main/resources/mmall.properties new file: src/main/webapp/WEB-INF/dispatcher-servlet.xml modified: src/main/webapp/WEB-INF/web.xml Shusheng Shi@PC-of-sss MINGW64 /h/mmall (v1.0) $ git commit -am 'project init commit'[v1.0 ff5f0ba] project init commit 33 files changed, 3048 insertions(+), 10 deletions(-) create mode 100644 src/main/java/com/mmall/dao/CartMapper.java create mode 100644 src/main/java/com/mmall/dao/CategoryMapper.java create mode 100644 src/main/java/com/mmall/dao/OrderItemMapper.java create mode 100644 src/main/java/com/mmall/dao/OrderMapper.java create mode 100644 src/main/java/com/mmall/dao/PayInfoMapper.java create mode 100644 src/main/java/com/mmall/dao/ProductMapper.java create mode 100644 src/main/java/com/mmall/dao/ShippingMapper.java create mode 100644 src/main/java/com/mmall/dao/UserMapper.java create mode 100644 src/main/java/com/mmall/pojo/Cart.java create mode 100644 src/main/java/com/mmall/pojo/Category.java create mode 100644 src/main/java/com/mmall/pojo/Order.java create mode 100644 src/main/java/com/mmall/pojo/OrderItem.java create mode 100644 src/main/java/com/mmall/pojo/PayInfo.java create mode 100644 src/main/java/com/mmall/pojo/Product.java create mode 100644 src/main/java/com/mmall/pojo/Shipping.java create mode 100644 src/main/java/com/mmall/pojo/User.java create mode 100644 src/main/resources/applicationContext-datasource.xml create mode 100644 src/main/resources/applicationContext.xml create mode 100644 src/main/resources/datasource.properties create mode 100644 src/main/resources/generatorConfig.xml create mode 100644 src/main/resources/logback.xml create mode 100644 src/main/resources/mappers/CartMapper.xml create mode 100644 src/main/resources/mappers/CategoryMapper.xml create mode 100644 src/main/resources/mappers/OrderItemMapper.xml create mode 100644 src/main/resources/mappers/OrderMapper.xml create mode 100644 src/main/resources/mappers/PayInfoMapper.xml create mode 100644 src/main/resources/mappers/ProductMapper.xml create mode 100644 src/main/resources/mappers/ShippingMapper.xml create mode 100644 src/main/resources/mappers/UserMapper.xml create mode 100644 src/main/resources/mmall.properties create mode 100644 src/main/webapp/WEB-INF/dispatcher-servlet.xml rewrite 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.git 0383eae..ff5f0ba v1.0 -> v1.0
使用者模組完成
Shusheng Shi@PC-of-sss MINGW64 /h/mmall (v1.0) $ git status On branch v1.0Your 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.xml modified: src/main/java/com/mmall/dao/UserMapper.java modified: src/main/resources/logback.xml modified: src/main/resources/mappers/UserMapper.xml modified: src/main/webapp/WEB-INF/dispatcher-servlet.xml modified: src/main/webapp/WEB-INF/web.xml Untracked 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.0Your branch is up-to-date with 'origin/v1.0'. Changes to be committed: (use "git reset HEAD <file>..." to unstage) modified: pom.xml new file: src/main/java/com/mmall/common/Const.java new file: src/main/java/com/mmall/common/ResponseCode.java new file: src/main/java/com/mmall/common/ServerResponse.java new file: src/main/java/com/mmall/common/TokenCache.java new file: src/main/java/com/mmall/controller/backend/UserManageController.java new file: src/main/java/com/mmall/controller/portal/UserController.java modified: src/main/java/com/mmall/dao/UserMapper.java new file: src/main/java/com/mmall/service/IUserService.java new file: src/main/java/com/mmall/service/impl/UserServiceImpl.java new file: src/main/java/com/mmall/util/MD5Util.java new file: src/main/java/com/mmall/util/PropertiesUtil.java modified: src/main/resources/logback.xml modified: src/main/resources/mappers/UserMapper.xml modified: src/main/webapp/WEB-INF/dispatcher-servlet.xml modified: src/main/webapp/WEB-INF/web.xml Shusheng 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.java create mode 100644 src/main/java/com/mmall/common/ResponseCode.java create mode 100644 src/main/java/com/mmall/common/ServerResponse.java create mode 100644 src/main/java/com/mmall/common/TokenCache.java create mode 100644 src/main/java/com/mmall/controller/backend/UserManageController.java create mode 100644 src/main/java/com/mmall/controller/portal/UserController.java create mode 100644 src/main/java/com/mmall/service/IUserService.java create mode 100644 src/main/java/com/mmall/service/impl/UserServiceImpl.java create mode 100644 src/main/java/com/mmall/util/MD5Util.java create mode 100644 src/main/java/com/mmall/util/PropertiesUtil.java Shusheng 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.git ff5f0ba..cf30e25 v1.0 -> v1.0
商品模組完成
Shusheng Shi@PC-of-sss MINGW64 /h/mmall (v1.0) $ git status On branch v1.0Your 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.java modified: src/main/java/com/mmall/dao/ProductMapper.java modified: src/main/java/com/mmall/util/PropertiesUtil.java modified: src/main/resources/mappers/ProductMapper.xml modified: src/main/webapp/index.jsp Untracked files: (use "git add <file>..." to include in what will be committed) src/main/java/com/mmall/controller/backend/ProductManageController.java src/main/java/com/mmall/controller/portal/ProductController.java src/main/java/com/mmall/service/IFileService.java src/main/java/com/mmall/service/IProductService.java src/main/java/com/mmall/service/impl/FileServiceImpl.java src/main/java/com/mmall/service/impl/ProductServiceImpl.java src/main/java/com/mmall/util/DateTimeUtil.java src/main/java/com/mmall/util/FTPUtil.java src/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.0Your 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.java new file: src/main/java/com/mmall/controller/backend/ProductManageController.java new file: src/main/java/com/mmall/controller/portal/ProductController.java modified: src/main/java/com/mmall/dao/ProductMapper.java new file: src/main/java/com/mmall/service/IFileService.java new file: src/main/java/com/mmall/service/IProductService.java new file: src/main/java/com/mmall/service/impl/FileServiceImpl.java new file: src/main/java/com/mmall/service/impl/ProductServiceImpl.java new file: src/main/java/com/mmall/util/DateTimeUtil.java new file: src/main/java/com/mmall/util/FTPUtil.java modified: src/main/java/com/mmall/util/PropertiesUtil.java new file: src/main/java/com/mmall/vo/ProductDetailVo.java new file: src/main/java/com/mmall/vo/ProductListVo.java modified: src/main/resources/mappers/ProductMapper.xml modified: src/main/webapp/index.jsp Shusheng 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.java create mode 100644 src/main/java/com/mmall/controller/portal/ProductController.java create mode 100644 src/main/java/com/mmall/service/IFileService.java create mode 100644 src/main/java/com/mmall/service/IProductService.java create mode 100644 src/main/java/com/mmall/service/impl/FileServiceImpl.java create mode 100644 src/main/java/com/mmall/service/impl/ProductServiceImpl.java create mode 100644 src/main/java/com/mmall/util/DateTimeUtil.java create mode 100644 src/main/java/com/mmall/util/FTPUtil.java create mode 100644 src/main/java/com/mmall/vo/ProductDetailVo.java create mode 100644 src/main/java/com/mmall/vo/ProductListVo.java Shusheng 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.git 6d19e5a..0c8dab1 v1.0 -> v1.0
收貨地址模組完成
Shusheng Shi@PC-of-sss MINGW64 /h/mmall (v1.0) $ git status On branch v1.0Your 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.java modified: src/main/resources/mappers/ShippingMapper.xml Untracked files: (use "git add <file>..." to include in what will be committed) src/main/java/com/mmall/controller/portal/ShippingController.java src/main/java/com/mmall/service/IShippingService.java src/main/java/com/mmall/service/impl/ShippingServiceImpl.java 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/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.0Your 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.java modified: src/main/java/com/mmall/dao/ShippingMapper.java new file: src/main/java/com/mmall/service/IShippingService.java new file: src/main/java/com/mmall/service/impl/ShippingServiceImpl.java modified: src/main/resources/mappers/ShippingMapper.xml Shusheng 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.java create mode 100644 src/main/java/com/mmall/service/IShippingService.java create mode 100644 src/main/java/com/mmall/service/impl/ShippingServiceImpl.java Shusheng 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.git 8c735cb..eb1bb33 v1.0 -> v1.0
作者:芥末無疆sss
連結:
來源:簡書
簡書著作權歸作者所有,任何形式的轉載都請聯絡作者獲得授權並註明出處。
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/430/viewspace-2816225/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 校園二手交易平臺系統問題以及解決方法
- 智慧校園全平臺綜合概述與最佳實踐
- 智慧校園雲平臺電子班牌系統原始碼,智慧校園家校互通小程式原始碼原始碼
- 大宗商品撮合交易平臺系統
- 網校系統開發:網校平臺搭建的課程表現形式
- 如何系統地理解交易平臺
- 安卓平臺Flutter啟動過程全解析安卓Flutter
- Opensae交易平臺系統開發(邏輯及方案)丨Opensae交易平臺原始碼案例原始碼
- 智慧園區綜合管理平臺園區管理系統方案
- 教育平臺原始碼:網校平臺開發過程中,你需要注意的關鍵點原始碼
- 數藏系統上鍊交易平臺系統開發案例
- 【原始碼】中小學智慧校園雲平臺原始碼原始碼
- SaaS智慧校園雲平臺原始碼,前後端分離系統,基於Java+vue+element-ui開發原始碼後端JavaVueUI
- 量化交易系統開發app,量化馬丁策略交易平臺搭建APP
- Mortonn摩頓借貸交易系統開發平臺
- NFT數字藏品交易系統開發平臺搭建
- 工程行業B2B平臺交易系統行業
- 智慧校園大資料管理平臺原始碼,電子班牌人臉識別系統大資料原始碼
- 校園資訊釋出平臺(清遠大學城)
- 合約交易系統開發|智慧合約交易平臺原始碼搭建原始碼
- NFT鑄造交易丨Opensae交易平臺系統開發技術分析
- SSM到Spring Boot 從零開發校園商鋪平臺SSMSpring Boot
- OpenSea藏品交易平臺開發NFT系統搭建技術
- 數字校園系統
- Laravel 後臺系統Laravel
- 後臺管理系統
- 多平臺量化搬磚交易系統開發,對沖系統開發
- 區塊鏈交易平臺開發數字資產撮合交易系統搭建區塊鏈
- 量化策略交易系統開發,自動對沖搬磚交易平臺搭建
- git 多平臺統一換行符Git
- ThinkPHP3.2.3遊戲sdk交易平臺PC+後臺程式分享PHP遊戲
- NFT交易平臺定製開發|NFT交易平臺專案搭建
- 如何搭建線上網校平臺?網校系統開發需要哪幾步?
- 電商後臺系統產品邏輯全解析
- CloudQuery(統一資料操作平臺)Cloud
- RedHat 7.7 平臺安裝19c(19.3) RAC 詳細操作過程Redhat
- 實現後臺管理系統的操作日誌功能
- Opensae去中心化交易平臺系統Solidity語言開發中心化Solid