separate repo from DELETE_BRANCH

This commit is contained in:
larshp 2018-08-05 10:05:46 +00:00 committed by Lars Hvam
parent 71b7f9d788
commit 748a32f57c
2 changed files with 4 additions and 4 deletions

View File

@ -40,7 +40,7 @@ CLASS zcl_abapgit_git_porcelain DEFINITION
zcx_abapgit_exception . zcx_abapgit_exception .
CLASS-METHODS delete_branch CLASS-METHODS delete_branch
IMPORTING IMPORTING
!io_repo TYPE REF TO zcl_abapgit_repo_online !iv_url TYPE string
!is_branch TYPE zif_abapgit_definitions=>ty_git_branch !is_branch TYPE zif_abapgit_definitions=>ty_git_branch
RAISING RAISING
zcx_abapgit_exception . zcx_abapgit_exception .
@ -292,7 +292,7 @@ CLASS ZCL_ABAPGIT_GIT_PORCELAIN IMPLEMENTATION.
lv_pack = zcl_abapgit_git_pack=>encode( lt_objects ). lv_pack = zcl_abapgit_git_pack=>encode( lt_objects ).
zcl_abapgit_git_transport=>receive_pack( zcl_abapgit_git_transport=>receive_pack(
iv_url = io_repo->get_url( ) iv_url = iv_url
iv_old = is_branch-sha1 iv_old = is_branch-sha1
iv_new = c_zero iv_new = c_zero
iv_branch_name = is_branch-name iv_branch_name = is_branch-name

View File

@ -178,12 +178,12 @@ CLASS ZCL_ABAPGIT_SERVICES_GIT IMPLEMENTATION.
ENDIF. ENDIF.
zcl_abapgit_git_porcelain=>delete_branch( zcl_abapgit_git_porcelain=>delete_branch(
io_repo = lo_repo iv_url = lo_repo->get_url( )
is_branch = ls_branch ). is_branch = ls_branch ).
MESSAGE 'Branch deleted' TYPE 'S'. MESSAGE 'Branch deleted' TYPE 'S'.
ENDMETHOD. "delete_branch ENDMETHOD.
METHOD delete_tag. METHOD delete_tag.