Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is push repository URL?

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://[email protected]/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

like image 439
Sasa Jovanovic Avatar asked May 26 '26 14:05

Sasa Jovanovic


2 Answers

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

[email protected]:username/repositoryname.git

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

like image 110
Vishnu Atrai Avatar answered May 30 '26 05:05

Vishnu Atrai


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.

like image 35
Abhijeet Kamble Avatar answered May 30 '26 04:05

Abhijeet Kamble