mirror of
https://github.com/abapGit/abapGit.git
synced 2025-05-01 12:20:51 +08:00
Allow staging for empty repositories (#6981)
Some checks failed
main-build / build-merged (push) Has been cancelled
main-build / auto-tag (push) Has been cancelled
main-build / coverage (push) Has been cancelled
main-build / auto-tag-artifact (push) Has been cancelled
ajson mirror / pr_ajson_changes (push) Has been cancelled
Some checks failed
main-build / build-merged (push) Has been cancelled
main-build / auto-tag (push) Has been cancelled
main-build / coverage (push) Has been cancelled
main-build / auto-tag-artifact (push) Has been cancelled
ajson mirror / pr_ajson_changes (push) Has been cancelled
This commit is contained in:
parent
faac8542e4
commit
872ed2758f
|
@ -37,6 +37,8 @@ CLASS zcl_abapgit_repo_online DEFINITION
|
||||||
REDEFINITION .
|
REDEFINITION .
|
||||||
METHODS zif_abapgit_repo~get_name
|
METHODS zif_abapgit_repo~get_name
|
||||||
REDEFINITION .
|
REDEFINITION .
|
||||||
|
METHODS zif_abapgit_repo~has_remote_source
|
||||||
|
REDEFINITION .
|
||||||
|
|
||||||
PROTECTED SECTION.
|
PROTECTED SECTION.
|
||||||
PRIVATE SECTION.
|
PRIVATE SECTION.
|
||||||
|
@ -386,4 +388,9 @@ CLASS zcl_abapgit_repo_online IMPLEMENTATION.
|
||||||
ENDTRY.
|
ENDTRY.
|
||||||
ENDIF.
|
ENDIF.
|
||||||
ENDMETHOD.
|
ENDMETHOD.
|
||||||
|
|
||||||
|
|
||||||
|
METHOD zif_abapgit_repo~has_remote_source.
|
||||||
|
rv_yes = abap_true.
|
||||||
|
ENDMETHOD.
|
||||||
ENDCLASS.
|
ENDCLASS.
|
||||||
|
|
Loading…
Reference in New Issue
Block a user