博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【git】切换分支获取代码
阅读量:4330 次
发布时间:2019-06-06

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

Welcome to Git (version 1.9.5-preview20150319)

Run 'git help git' to display the help index.
Run 'git help <command>' to display help for specific commands.

robin@robin-PC2 /D/JavaWorkSpace/payment/payment-facade (master)

$ git status
On branch master
Your branch is up-to-date with 'origin/master'.

nothing to commit, working directory clean

robin@robin-PC2 /D/JavaWorkSpace/payment/payment-facade (master)

$ git status
On branch master
Your branch is up-to-date with 'origin/master'.

nothing to commit, working directory clean

robin@robin-PC2 /D/JavaWorkSpace/payment/payment-facade (master)

$ git che
checkout cherry cherry-pick

robin@robin-PC2 /D/JavaWorkSpace/payment/payment-facade (master)

$ git checkout develop
Branch develop set up to track remote branch develop from origin.
Switched to a new branch 'develop'

robin@robin-PC2 /D/JavaWorkSpace/payment/payment-facade (develop)

$ git pull origin develop
remote: Counting objects: 110, done.
remote: Compressing objects: 100% (86/86), done.
emote: Total 110 (delta 46), reused 0 (delta 0)Receiving objects: 25% (28/110)

Receiving objects: 100% (110/110), 15.48 KiB | 0 bytes/s, done.

Resolving deltas: 100% (46/46), completed with 13 local objects.
From gitlab.y**t**.org:payment/payment-facade
* branch develop -> FETCH_HEAD
643536c..d7e66fc develop -> origin/develop
Updating 643536c..d7e66fc
Fast-forward
build.gradle | 1 +
.../y**t**/payment/SerialServiceSettings.groovy | 2 -
.../payment/common/PaymentServiceFactory.groovy | 58 +++++++++++
.../com/y**t**/payment/common/SerialService.groovy | 3 +-
.../y**t**/payment/converter/PayConverter.groovy | 5 +-
.../exception/GatewayNotFoundException.groovy | 4 +
.../com/y**t**/payment/pay/PayFacadeService.groovy | 81 +++++++--------
.../groovy/com/y**t**/payment/pay/Payment.groovy | 51 +++++-----
.../payment/refund/RefundFacadeService.groovy | 109 ++++++++-------------
.../groovy/com/y**t**/payment/tenant/Token.groovy | 16 +--
src/main/resources/application.yml | 8 +-
11 files changed, 179 insertions(+), 159 deletions(-)
create mode 100644 src/main/groovy/com/y**t**/payment/common/PaymentServiceFact
ory.groovy

robin@robin-PC2 /D/JavaWorkSpace/payment/payment-facade (develop)

$ git status
On branch develop
Your branch is up-to-date with 'origin/develop'.

nothing to commit, working directory clean

robin@robin-PC2 /D/JavaWorkSpace/payment/payment-facade (develop)

$

转载于:https://www.cnblogs.com/viewcozy/p/4760492.html

你可能感兴趣的文章
在mvc3中使用ffmpeg对上传视频进行截图和转换格式
查看>>
python的字符串内建函数
查看>>
Spring - DI
查看>>
微软自己的官网介绍 SSL 参数相关
查看>>
Composite UI Application Block (CAB) 概念和术语
查看>>
ajax跨域,携带cookie
查看>>
阶段3 2.Spring_01.Spring框架简介_03.spring概述
查看>>
阶段3 2.Spring_02.程序间耦合_1 编写jdbc的工程代码用于分析程序的耦合
查看>>
阶段3 2.Spring_01.Spring框架简介_04.spring发展历程
查看>>
阶段3 2.Spring_02.程序间耦合_3 程序的耦合和解耦的思路分析1
查看>>
阶段3 2.Spring_02.程序间耦合_5 编写工厂类和配置文件
查看>>
阶段3 2.Spring_01.Spring框架简介_05.spring的优势
查看>>
阶段3 2.Spring_02.程序间耦合_7 分析工厂模式中的问题并改造
查看>>
阶段3 2.Spring_02.程序间耦合_4 曾经代码中的问题分析
查看>>
阶段3 2.Spring_03.Spring的 IOC 和 DI_2 spring中的Ioc前期准备
查看>>
阶段3 2.Spring_03.Spring的 IOC 和 DI_4 ApplicationContext的三个实现类
查看>>
阶段3 2.Spring_02.程序间耦合_8 工厂模式解耦的升级版
查看>>
阶段3 2.Spring_03.Spring的 IOC 和 DI_6 spring中bean的细节之三种创建Bean对象的方式
查看>>
阶段3 2.Spring_04.Spring的常用注解_3 用于创建的Component注解
查看>>
阶段3 2.Spring_04.Spring的常用注解_2 常用IOC注解按照作用分类
查看>>