Symptom

When uploading code to the repository of the Bonobo Git Server, it requires the .git suffix for the repository URL, which will cause upload failure with Add to Source Control from PowerBuilder IDE.

Resolution

On the machine that has the crash problem, do the following:

1. Open the local root directory for your project and find the .git folder. Note that the .git folder is hidden by default. You can adjust your File Explorer option to show it.

2. In the .git folder open the config file with a text editor and change the url to include the .git suffix, for example: 

[remote "origin"]

url = https://github.com/appeonteam/dwfun.git

                fetch = +refs/heads/*:refs/remotes/origin/*

2
1