3

I try configure Weblate for automatic pushing tranlate changes and need explanation and example: what is push repository url?

By example if is my repostory https://bitbucket.org/username/repo/ https url is https://username@bitbucket.org/username/repo.git

but this does not work in weblate.

Excerpt from Weblate documentation "Repository push URL Repository URL used for pushing, this is completely optional and push support will be disabled when this is empty."

https://docs.weblate.org/en/latest/admin/projects.html#component

Sasa Jovanovic
  • 324
  • 2
  • 14

2 Answers2

5

HTTPS url requires password while push. Try git url like -

git@bitbucket.org:username/repositoryname.git

It will work. You will have to add public key also.

Vishnu Atrai
  • 2,370
  • 22
  • 24
1

For checking you git push URL, You can run the below command.

git remote -v 

From here you will get the fetch and push url. Also if the repository is present on bitbucket you have to provide access permissions so that the changes gets pushed to weblate server.

Please check the settings at bitbucket for key based access permission.

Abhijeet Kamble
  • 3,131
  • 2
  • 30
  • 36