mirror of
https://github.com/abapGit/abapGit.git
synced 2025-05-01 12:20:51 +08:00
Rename upload_pack to upload_pack_by_branch (#3818)
* Create pull.yml * Update zcl_abapgit_git_transport.clas.abap * Update zcl_abapgit_git_transport.clas.abap * Update pull.yml * Update pull.yml * Update zcl_abapgit_git_transport.clas.abap * Delete pull.yml * Update zcl_abapgit_git_transport.clas.abap * Rename upload_pack to upload_pack_by_branch * Renamed missed references Co-authored-by: mariusraht1 <mariusraht+1@gmail.com> Co-authored-by: pull[bot] <39814207+pull[bot]@users.noreply.github.com> Co-authored-by: Lars Hvam <larshp@hotmail.com>
This commit is contained in:
parent
4c9a9b0ad9
commit
3a75ade563
|
@ -410,7 +410,7 @@ CLASS ZCL_ABAPGIT_GIT_PORCELAIN IMPLEMENTATION.
|
|||
ls_commit TYPE zcl_abapgit_git_pack=>ty_commit.
|
||||
|
||||
|
||||
zcl_abapgit_git_transport=>upload_pack(
|
||||
zcl_abapgit_git_transport=>upload_pack_by_branch(
|
||||
EXPORTING
|
||||
iv_url = iv_url
|
||||
iv_branch_name = iv_branch_name
|
||||
|
|
|
@ -6,7 +6,7 @@ CLASS zcl_abapgit_git_transport DEFINITION
|
|||
PUBLIC SECTION.
|
||||
|
||||
* remote to local
|
||||
CLASS-METHODS upload_pack
|
||||
CLASS-METHODS upload_pack_by_branch
|
||||
IMPORTING
|
||||
!iv_url TYPE string
|
||||
!iv_branch_name TYPE string
|
||||
|
@ -254,7 +254,7 @@ CLASS zcl_abapgit_git_transport IMPLEMENTATION.
|
|||
ENDMETHOD.
|
||||
|
||||
|
||||
METHOD upload_pack.
|
||||
METHOD upload_pack_by_branch.
|
||||
|
||||
DATA: lo_client TYPE REF TO zcl_abapgit_http_client,
|
||||
lv_buffer TYPE string,
|
||||
|
|
|
@ -357,7 +357,7 @@ CLASS ZCL_ABAPGIT_BRANCH_OVERVIEW IMPLEMENTATION.
|
|||
INSERT ls_tag INTO TABLE mt_tags.
|
||||
ENDLOOP.
|
||||
|
||||
zcl_abapgit_git_transport=>upload_pack(
|
||||
zcl_abapgit_git_transport=>upload_pack_by_branch(
|
||||
EXPORTING
|
||||
iv_url = io_repo->get_url( )
|
||||
iv_branch_name = io_repo->get_branch_name( )
|
||||
|
|
|
@ -279,7 +279,7 @@ CLASS ZCL_ABAPGIT_MERGE IMPLEMENTATION.
|
|||
APPEND ms_merge-source TO lt_upload.
|
||||
APPEND ms_merge-target TO lt_upload.
|
||||
|
||||
zcl_abapgit_git_transport=>upload_pack(
|
||||
zcl_abapgit_git_transport=>upload_pack_by_branch(
|
||||
EXPORTING
|
||||
iv_url = ms_merge-repo->get_url( )
|
||||
iv_branch_name = ms_merge-repo->get_branch_name( )
|
||||
|
|
Loading…
Reference in New Issue
Block a user