Facing issue making the first commit to git

I am new to UiPath and created one simple sequence with just a lgo message in it. I am trying to push this to my newly created git repo but getting the below error while pushing -

23.6.1-beta.13324+Branch.release-v23.6.1.Sha.52787b786620e97cba5555379da6e6bb423b3e6b

Unable to push to configured remote.

Error: LibGit2Sharp.LibGit2SharpException: failed to write chunk footer: The connection with the server was terminated abnormally

   at LibGit2Sharp.Core.Ensure.HandleError(Int32 result)
   at LibGit2Sharp.Core.Proxy.git_remote_push(RemoteHandle remote, IEnumerable`1 refSpecs, GitPushOptions opts)
   at LibGit2Sharp.Network.Push(Remote remote, IEnumerable`1 pushRefSpecs, PushOptions pushOptions)
   at LibGit2Sharp.Network.Push(Remote remote, String pushRefSpec, PushOptions pushOptions)
   at UiPath.Studio.Plugin.Git.Services.PushService.<>c__DisplayClass2_0.<Push>b__0()
   at UiPath.Studio.Plugin.Git.Desktop.Services.UiAuthenticationSession.Execute[T](ExecuteArgs`1 args)
   at UiPath.Studio.Plugin.Git.Services.PushService.Push(IRepository repository, RemoteModel remote, Boolean forcePush)
   at UiPath.Studio.Plugin.Git.Desktop.Services.PushUiService.PushInternal(IRepository repository, RemoteModel remote, Boolean forcePush)
   at UiPath.Studio.Plugin.Git.Desktop.Services.PushUiService.<>c__DisplayClass17_0.<PushAsync>b__3(IRepository r)
   at UiPath.Studio.Plugin.Git.Services.GitSession.ExecuteInternal[TResult](Func`2 action, Func`1 repoFactory)
   at UiPath.Studio.Plugin.Git.Services.GitSession.<>c__DisplayClass18_0`1.<ExecuteAsync>b__1()
   at System.Threading.Tasks.Task`1.InnerInvoke()
   at System.Threading.ExecutionContext.RunFromThreadPoolDispatchLoop(Thread threadPoolThread, ExecutionContext executionContext, ContextCallback callback, Object state)
--- End of stack trace from previous location ---
   at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot, Thread threadPoolThread)
--- End of stack trace from previous location ---
   at UiPath.Studio.Plugin.Git.Services.GitSession.SafeExecuteAsync[TResult](Func`1 action)
   at UiPath.Studio.Plugin.Git.Services.GitSession.ExecuteAsync[TResult](Func`2 action)
   at UiPath.Studio.Plugin.Git.Desktop.Services.PushUiService.PushAsync(IGitSession session), HResult -2146233088

Adding a screenshot of my configured remotes as well. Any suggestions on how to resolve this are appreciated.

@manjiri
Here are a few steps you can try to resolve the issue:

  1. Verify your network connectivity: Ensure that you have a stable internet connection and can access the remote repository. You can try pinging the remote repository server or accessing it through a web browser to confirm connectivity.
  2. Retry the push operation: Sometimes, connection issues can be temporary. Retry the push operation from UiPath Studio and see if the problem persists.
  3. Check repository permissions: Ensure that you have the necessary permissions to push changes to the remote repository. If you are not the owner or have restricted access, contact the repository administrator to verify your permissions.
  4. Verify Git configuration: Double-check your Git configuration in UiPath Studio, including the remote repository URL, authentication credentials, and branch settings. Make sure they are correct and up to date.
  5. Try using Git outside of UiPath Studio: If the issue persists, try performing the push operation using a standalone Git client (such as Git command-line, Git GUI, or another Git client). This can help determine if the problem is specific to UiPath Studio or a more general Git-related issue.