Is it possible to use https access to bitbucket rep with envoy in Laravel 5.7 app? Unicorn Meta Zoo #1: Why another podcast? Announcing the arrival of Valued Associate #679: Cesar Manara Data science time! April 2019 and salary with experience The Ask Question Wizard is Live!Git for beginners: The definitive practical guideSSL certificate rejected trying to access GitHub over HTTPS behind firewallGit error: “Host Key Verification Failed” when connecting to remote repositoryCreate new repo on Bitbucket from Git Bash terminal?What determines default branch after “git clone”?SSH Key - Still asking for password and passphraseHow do I create a master branch in a bare Git repository?There is no tracking information for the current branchGit clone / pull continually freezing at “Store key in cache?”Cloning bit-bucket repo with https using dockerfile.How to pass a password?

Is there any hidden 'W' sound after 'comment' in : Comment est-elle?

Married in secret, can marital status in passport be changed at a later date?

How long after the last departure shall the airport stay open for an emergency return?

std::is_constructible on incomplete types

Is Bran literally the world's memory?

How would I use different systems of magic when they are capable of the same effects?

What ability score does a Hexblade's Pact Weapon use for attack and damage when wielded by another character?

Raising a bilingual kid. When should we introduce the majority language?

Is Diceware more secure than a long passphrase?

Is Electric Central Heating worth it if using Solar Panels?

Multiple fireplaces in an apartment building?

Expansion//Explosion and Siren Stormtamer

Could moose/elk survive in the Amazon forest?

Split coins into combinations of different denominations

A Paper Record is What I Hamper

What is the best way to deal with NPC-NPC combat?

Align column where each cell has two decimals with siunitx

Is accepting an invalid credit card number a security issue?

Map material from china not allowed to leave the country

Second order approximation of the loss function (Deep learning book, 7.33)

What do you call the part of a novel that is not dialog?

Retract an already submitted recommendation letter (written for an undergrad student)

What is this word supposed to be?

Will I lose my paid in full property



Is it possible to use https access to bitbucket rep with envoy in Laravel 5.7 app?



Unicorn Meta Zoo #1: Why another podcast?
Announcing the arrival of Valued Associate #679: Cesar Manara
Data science time! April 2019 and salary with experience
The Ask Question Wizard is Live!Git for beginners: The definitive practical guideSSL certificate rejected trying to access GitHub over HTTPS behind firewallGit error: “Host Key Verification Failed” when connecting to remote repositoryCreate new repo on Bitbucket from Git Bash terminal?What determines default branch after “git clone”?SSH Key - Still asking for password and passphraseHow do I create a master branch in a bare Git repository?There is no tracking information for the current branchGit clone / pull continually freezing at “Store key in cache?”Cloning bit-bucket repo with https using dockerfile.How to pass a password?



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








1















Is it possible to use https access to bitbucket rep with envoy in Laravel 5.7 app?
Running envoy command I got error:



$ envoy run deploy
deployeruser@138.68.107.4's password:
[deployeruser@138.68.107.4]: Cloning into '20190309072721'...
[deployeruser@138.68.107.4]: remote: Repository client/project_name.git not found
[deployeruser@138.68.107.4]: fatal: repository 'https://myaccount@bitbucket.org/client/project_name.git /var/www/html/project_name/release/20190309072721/' not found
[✗] This task did not complete successfully on one of your servers.


where https://myaccount@bitbucket.org is my account and client/project_name.git is the project I want to clone



I did not find such option at https://laravel.com/docs/5.7/envoy



If I run command in console :



git clone https://myaccount@bitbucket.org/client/project_name.git


on the target server(ubuntu 18 ubder Digital Ocean) it is cloned ok.



Modified:
In my envoy file I have structure like:



@setup
$server_login_user= 'deployer_user';
...
# $repo= 'git clone git@bitbucket.org:myaccount/votes.git';
$repo= 'git clone https://myaccount@bitbucket.org/myaccount/votes.git';

$branch= '';


@endsetup

@servers(['production' => $server_login_user.'@NNN.NN.NN.NN'])


@task( 'clone', ['on'=>$on] )

git clone $branch " $repo $release_number "
@endtask


But running envoy in console I got error:



$ envoy run Deploy
deployer_user@NNN.NN.NN.N's password:
[deployer_user@NNN.NN.NN.N]: Cloning into 'dest_directory'...
[deployer_user@NNN.NN.NN.N]: fatal: I don't handle protocol 'git clone https'
[✗] This task did not complete successfully on one of your servers.


The thing is that I ghave problems with ssh on my server and I would prefer to use http here, if that is possible...



Thanks!










share|improve this question



















  • 2





    Where do you specify https://myaccount@bitbucket.org/client/project_name.git for the envoy command?

    – battlmonstr
    Mar 9 at 10:25












  • Please look at Modified

    – Petro Gromovo
    Mar 21 at 6:25

















1















Is it possible to use https access to bitbucket rep with envoy in Laravel 5.7 app?
Running envoy command I got error:



$ envoy run deploy
deployeruser@138.68.107.4's password:
[deployeruser@138.68.107.4]: Cloning into '20190309072721'...
[deployeruser@138.68.107.4]: remote: Repository client/project_name.git not found
[deployeruser@138.68.107.4]: fatal: repository 'https://myaccount@bitbucket.org/client/project_name.git /var/www/html/project_name/release/20190309072721/' not found
[✗] This task did not complete successfully on one of your servers.


where https://myaccount@bitbucket.org is my account and client/project_name.git is the project I want to clone



I did not find such option at https://laravel.com/docs/5.7/envoy



If I run command in console :



git clone https://myaccount@bitbucket.org/client/project_name.git


on the target server(ubuntu 18 ubder Digital Ocean) it is cloned ok.



Modified:
In my envoy file I have structure like:



@setup
$server_login_user= 'deployer_user';
...
# $repo= 'git clone git@bitbucket.org:myaccount/votes.git';
$repo= 'git clone https://myaccount@bitbucket.org/myaccount/votes.git';

$branch= '';


@endsetup

@servers(['production' => $server_login_user.'@NNN.NN.NN.NN'])


@task( 'clone', ['on'=>$on] )

git clone $branch " $repo $release_number "
@endtask


But running envoy in console I got error:



$ envoy run Deploy
deployer_user@NNN.NN.NN.N's password:
[deployer_user@NNN.NN.NN.N]: Cloning into 'dest_directory'...
[deployer_user@NNN.NN.NN.N]: fatal: I don't handle protocol 'git clone https'
[✗] This task did not complete successfully on one of your servers.


The thing is that I ghave problems with ssh on my server and I would prefer to use http here, if that is possible...



Thanks!










share|improve this question



















  • 2





    Where do you specify https://myaccount@bitbucket.org/client/project_name.git for the envoy command?

    – battlmonstr
    Mar 9 at 10:25












  • Please look at Modified

    – Petro Gromovo
    Mar 21 at 6:25













1












1








1








Is it possible to use https access to bitbucket rep with envoy in Laravel 5.7 app?
Running envoy command I got error:



$ envoy run deploy
deployeruser@138.68.107.4's password:
[deployeruser@138.68.107.4]: Cloning into '20190309072721'...
[deployeruser@138.68.107.4]: remote: Repository client/project_name.git not found
[deployeruser@138.68.107.4]: fatal: repository 'https://myaccount@bitbucket.org/client/project_name.git /var/www/html/project_name/release/20190309072721/' not found
[✗] This task did not complete successfully on one of your servers.


where https://myaccount@bitbucket.org is my account and client/project_name.git is the project I want to clone



I did not find such option at https://laravel.com/docs/5.7/envoy



If I run command in console :



git clone https://myaccount@bitbucket.org/client/project_name.git


on the target server(ubuntu 18 ubder Digital Ocean) it is cloned ok.



Modified:
In my envoy file I have structure like:



@setup
$server_login_user= 'deployer_user';
...
# $repo= 'git clone git@bitbucket.org:myaccount/votes.git';
$repo= 'git clone https://myaccount@bitbucket.org/myaccount/votes.git';

$branch= '';


@endsetup

@servers(['production' => $server_login_user.'@NNN.NN.NN.NN'])


@task( 'clone', ['on'=>$on] )

git clone $branch " $repo $release_number "
@endtask


But running envoy in console I got error:



$ envoy run Deploy
deployer_user@NNN.NN.NN.N's password:
[deployer_user@NNN.NN.NN.N]: Cloning into 'dest_directory'...
[deployer_user@NNN.NN.NN.N]: fatal: I don't handle protocol 'git clone https'
[✗] This task did not complete successfully on one of your servers.


The thing is that I ghave problems with ssh on my server and I would prefer to use http here, if that is possible...



Thanks!










share|improve this question
















Is it possible to use https access to bitbucket rep with envoy in Laravel 5.7 app?
Running envoy command I got error:



$ envoy run deploy
deployeruser@138.68.107.4's password:
[deployeruser@138.68.107.4]: Cloning into '20190309072721'...
[deployeruser@138.68.107.4]: remote: Repository client/project_name.git not found
[deployeruser@138.68.107.4]: fatal: repository 'https://myaccount@bitbucket.org/client/project_name.git /var/www/html/project_name/release/20190309072721/' not found
[✗] This task did not complete successfully on one of your servers.


where https://myaccount@bitbucket.org is my account and client/project_name.git is the project I want to clone



I did not find such option at https://laravel.com/docs/5.7/envoy



If I run command in console :



git clone https://myaccount@bitbucket.org/client/project_name.git


on the target server(ubuntu 18 ubder Digital Ocean) it is cloned ok.



Modified:
In my envoy file I have structure like:



@setup
$server_login_user= 'deployer_user';
...
# $repo= 'git clone git@bitbucket.org:myaccount/votes.git';
$repo= 'git clone https://myaccount@bitbucket.org/myaccount/votes.git';

$branch= '';


@endsetup

@servers(['production' => $server_login_user.'@NNN.NN.NN.NN'])


@task( 'clone', ['on'=>$on] )

git clone $branch " $repo $release_number "
@endtask


But running envoy in console I got error:



$ envoy run Deploy
deployer_user@NNN.NN.NN.N's password:
[deployer_user@NNN.NN.NN.N]: Cloning into 'dest_directory'...
[deployer_user@NNN.NN.NN.N]: fatal: I don't handle protocol 'git clone https'
[✗] This task did not complete successfully on one of your servers.


The thing is that I ghave problems with ssh on my server and I would prefer to use http here, if that is possible...



Thanks!







git laravel-envoy






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 21 at 6:23







Petro Gromovo

















asked Mar 9 at 5:40









Petro GromovoPetro Gromovo

12618




12618







  • 2





    Where do you specify https://myaccount@bitbucket.org/client/project_name.git for the envoy command?

    – battlmonstr
    Mar 9 at 10:25












  • Please look at Modified

    – Petro Gromovo
    Mar 21 at 6:25












  • 2





    Where do you specify https://myaccount@bitbucket.org/client/project_name.git for the envoy command?

    – battlmonstr
    Mar 9 at 10:25












  • Please look at Modified

    – Petro Gromovo
    Mar 21 at 6:25







2




2





Where do you specify https://myaccount@bitbucket.org/client/project_name.git for the envoy command?

– battlmonstr
Mar 9 at 10:25






Where do you specify https://myaccount@bitbucket.org/client/project_name.git for the envoy command?

– battlmonstr
Mar 9 at 10:25














Please look at Modified

– Petro Gromovo
Mar 21 at 6:25





Please look at Modified

– Petro Gromovo
Mar 21 at 6:25












0






active

oldest

votes












Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55074370%2fis-it-possible-to-use-https-access-to-bitbucket-rep-with-envoy-in-laravel-5-7-ap%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55074370%2fis-it-possible-to-use-https-access-to-bitbucket-rep-with-envoy-in-laravel-5-7-ap%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

AWS Lex not identifying response if by a variable The 2019 Stack Overflow Developer Survey Results Are In Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) The Ask Question Wizard is Live! Data science time! April 2019 and salary with experienceEnforcing custom enumeration in AWS LEX for slot valuesHow to give response based on user response in Amazon Lex?Intercepting AWS Lambda Response to a AWS Lex QueryLex chat bot error: Reached second execution of fulfillment lambda on the same utteranceamazon lex showing invalid responseLambda response send back to Lex slot?Response card in Amazon lexAmazon Lex - Lambda response return HTML to botHow can I solve 424 (Failed Dependency) (python) obtained from Amazon lex?

Алба-Юлія

Захаров Федір Захарович