41 std::unique_lock<std::mutex> lock(
GetCommon()->m_gitActionMutex, std::try_to_lock );
45 wxLogTrace(
traceGit,
"GIT_PUSH_HANDLER::PerformPush: Could not lock mutex");
46 return PushResult::Error;
52 git_remote* remote =
nullptr;
54 if(git_remote_lookup(&remote,
GetRepo(),
"origin") != 0)
57 return PushResult::Error;
62 git_remote_callbacks remoteCallbacks;
63 git_remote_init_callbacks(&remoteCallbacks, GIT_REMOTE_CALLBACKS_VERSION);
69 remoteCallbacks.payload =
this;
74 if( git_remote_connect( remote, GIT_DIRECTION_PUSH, &remoteCallbacks,
nullptr,
nullptr ) )
76 AddErrorString( wxString::Format(
_(
"Could not connect to remote: %s" ),
78 return PushResult::Error;
81 git_push_options pushOptions;
82 git_push_init_options( &pushOptions, GIT_PUSH_OPTIONS_VERSION );
83 pushOptions.callbacks = remoteCallbacks;
86 git_reference* head =
nullptr;
88 if( git_repository_head( &head,
GetRepo() ) != 0 )
90 git_remote_disconnect( remote );
92 return PushResult::Error;
99 refs[0] = git_reference_name( head );
100 const git_strarray refspecs = { (
char**) refs, 1 };
102 if( git_remote_push( remote, &refspecs, &pushOptions ) )
106 git_remote_disconnect( remote );
107 return PushResult::Error;
110 git_remote_disconnect( remote );
GIT_PUSH_HANDLER(KIGIT_COMMON *aCommon)
virtual void ReportProgress(int aCurrent, int aTotal, const wxString &aMessage)
void UpdateProgress(int aCurrent, int aTotal, const wxString &aMessage) override
static wxString GetLastGitError()
void AddErrorString(const wxString aErrorString)
git_repository * GetRepo() const
Get a pointer to the git repository.
unsigned & TestedTypes()
Return the connection types that have been tested for authentication.
KIGIT_COMMON * GetCommon() const
Get the common object.
void ResetNextKey()
Reset the next public key to test.
const wxChar *const traceGit
Flag to enable Git debugging output.
int progress_cb(const char *str, int len, void *aPayload)
int update_cb(const char *aRefname, const git_oid *aFirst, const git_oid *aSecond, void *aPayload)
int transfer_progress_cb(const git_transfer_progress *aStats, void *aPayload)
int credentials_cb(git_cred **aOut, const char *aUrl, const char *aUsername, unsigned int aAllowedTypes, void *aPayload)
int push_transfer_progress_cb(unsigned int aCurrent, unsigned int aTotal, size_t aBytes, void *aPayload)
std::unique_ptr< git_reference, decltype([](git_reference *aRef) { git_reference_free(aRef) GitReferencePtr
A unique pointer for git_reference objects with automatic cleanup.
std::unique_ptr< git_remote, decltype([](git_remote *aRemote) { git_remote_free(aRemote) GitRemotePtr
A unique pointer for git_remote objects with automatic cleanup.
wxLogTrace helper definitions.