question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

clone from private repository

See original GitHub issue

i use private gitlab, the vue-cli version is 2.8.2

if i clone with project-name like this

vue init -c gitlab.com:username/my-vue-template test

it show err:

vue-cli · Failed to download repo vuejs-templates/test: 'git clone' failed with status 128

it seems that the order of argument is wrong

use this cammnd is work fine

vue init -c test gitlab.com:username/my-vue-template 

and this

vue-init  gitlab.com:username/my-vue-template test

Issue Analytics

  • State:closed
  • Created 6 years ago
  • Comments:18 (4 by maintainers)

github_iconTop GitHub Comments

5reactions
JustZzzxfcommented, Nov 15, 2017

@bajras I got the same problem! After format the git repo url, it works. Vue-init get template from remote repo with download-git-repo which check your url format. So, just run: vue-init -c <host>:<userName>/<repo> <projectName> Do not add ‘ssh://git@’ prefix and ‘.git’ suffix. In your case: vue-init -c bitbucket.moo.com:7999/mac/vue-moo-webpack-boilerplate yay Try it.

2reactions
giulianodbcommented, Mar 29, 2019

Same error: ‘git clone’ failed with status 128

Read more comments on GitHub >

github_iconTop Results From Across the Web

git - Clone A Private Repository (Github) - Stack Overflow
To clone a private repository from your account or organization, you need to generate a PAT(Personal Access Token) on your Github account, and ......
Read more >
How to Clone a Private Repository in GitHub - Nira
Using HTTPS is the easiest way to clone a private GitHub repository. However, it involves putting your username and password in the URL....
Read more >
How to Clone a Private GitHub Repository using SSH - YouTube
Courses: https://www.aosnote.com/storeWebsite: https://www.aosnote.com/This tutorial will teach you how to clone a private GitHub repository ...
Read more >
Cloning a repository - GitHub Docs
On GitHub.com, navigate to the main page of the repository. · Above the list of files, click Code. · Copy the URL for...
Read more >
How to get Clone a private Github repo!? - DEV Community ‍ ‍
Windows/macOS users who are looking for a really easy solution can just use the GitHub Desktop client to clone private GitHub repositories (you ......
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found