-
Bug
-
Resolution: Fixed
-
Low
Summary
Repository's Wiki page were unable to clone using HTTPS connection.
However, it works using an SSH connection.
Steps to Reproduce:
- Go to your repository >> Wiki
- Click "Clone wiki" button on the right side >> Choose "HTTPS"
HTTPS:
#!GIT $ git clone https://username@bitbucket.org/username/repo_name.git/wiki Cloning into 'wiki'... remote: Repository not found fatal: repository 'https://username@bitbucket.org/username/repo_name.git/wiki/' not found
SSH:
#!GIT $ git clone git@bitbucket.org:username/repo_name.git/wiki Cloning into 'wiki'... remote: Counting objects: 6, done. remote: Compressing objects: 100% (4/4), done. remote: Total 6 (delta 0), reused 0 (delta 0) Receiving objects: 100% (6/6), done.
Expected Result
Clone repository's Wiki via HTTPS connection
Actual Result
Cannot clone repository's Wiki via HTTPS connection
Workaround
Use SSH connection for now
#!GIT git clone git@bitbucket.org:username/repo_name.git/wiki