zoukankan      html  css  js  c++  java
  • 【git】切换分支获取代码

    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)
    $

  • 相关阅读:
    一个小笔记(5):A*算法
    一个小笔记(4):递归下降分析法
    1.3 初步了解信号和槽
    一个小笔记(3):约瑟夫环
    1.2 第一个程序
    requestAnimationFrame
    javascript reg 不加入分组
    正则表达式匹配除单词外的任何字符
    自動化ツール(コード生成、パターン抽出)
    windows常用DLL及作用
  • 原文地址:https://www.cnblogs.com/viewcozy/p/4760492.html
Copyright © 2011-2022 走看看