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

Save data to MySQL database using ExtJS and PHP [closed]2019 Community Moderator ElectionHow can I prevent SQL injection in PHP?Which MySQL data type to use for storing boolean valuesPHP: Delete an element from an arrayHow do I connect to a MySQL Database in Python?Should I use the datetime or timestamp data type in MySQL?How to get a list of MySQL user accountsHow Do You Parse and Process HTML/XML in PHP?Reference — What does this symbol mean in PHP?How does PHP 'foreach' actually work?Why shouldn't I use mysql_* functions in PHP?

Compiling GNU Global with universal-ctags support Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Data science time! April 2019 and salary with experience The Ask Question Wizard is Live!Tags for Emacs: Relationship between etags, ebrowse, cscope, GNU Global and exuberant ctagsVim and Ctags tips and trickscscope or ctags why choose one over the other?scons and ctagsctags cannot open option file “.ctags”Adding tag scopes in universal-ctagsShould I use Universal-ctags?Universal ctags on WindowsHow do I install GNU Global with universal ctags support using Homebrew?Universal ctags with emacsHow to highlight ctags generated by Universal Ctags in Vim?

Add ONERROR event to image from jsp tldHow to add an image to a JPanel?Saving image from PHP URLHTML img scalingCheck if an image is loaded (no errors) with jQueryHow to force an <img> to take up width, even if the image is not loadedHow do I populate hidden form field with a value set in Spring ControllerStyling Raw elements Generated from JSP tagds with Jquery MobileLimit resizing of images with explicitly set width and height attributeserror TLD use in a jsp fileJsp tld files cannot be resolved