skip to Main Content

Here i am attaching my problem. I want my repository to be hairbodyskin-production. But it is not changing

enter image description here

I tried this `

git config remote.origin.url https://x-token-auth:ATCTT3xFfGN02teIasCShaVu_OFcBiXmEGz5eXTLrjSOrRtyaZt-OU3r0II2rUS58_5auPxITl-L7aEVEge-aCHSUOZI4Cl0fgEtHSAzgX9Gg75Zrn2_pC1s7966yjgp4M1n0IshRyjKkleqGl2rxttxe6gbaHbCExkW0gbSDzc2Z4JgZlqlSoM=65CB674A@bitbucket.org/cwdevelop/hairbodyskin-production.git

I also tried this

git config remote.origin.url --global https://x-token-auth:ATCTT3xFfGN02teIasCShaVu_OFcBiXmEGz5eXTLrjSOrRtyaZt-OU3r0II2rUS58_5auPxITl-L7aEVEge-aCHSUOZI4Cl0fgEtHSAzgX9Gg75Zrn2_pC1s7966yjgp4M1n0IshRyjKkleqGl2rxttxe6gbaHbCExkW0gbSDzc2Z4JgZlqlSoM=65CB674A@bitbucket.org/cwdevelop/hairbodyskin-production.git

`I also tried this

git remote set-url origin https://x-token-auth:ATCTT3xFfGN02teIasCShaVu_OFcBiXmEGz5eXTLrjSOrRtyaZt-OU3r0II2rUS58_5auPxITl-L7aEVEge-aCHSUOZI4Cl0fgEtHSAzgX9Gg75Zrn2_pC1s7966yjgp4M1n0IshRyjKkleqGl2rxttxe6gbaHbCExkW0gbSDzc2Z4JgZlqlSoM=65CB674A@bitbucket.org/cwdevelop/hairbodyskin-production.git

Nothing worked for me.

2

Answers


  1. Although this is not a Magento question, and you should definitely remove all the private data from your question – tokens, URLs etc. – , and change them now that they have been public for 30 minutes, this may help:

    git remote remove origin

    git remote add origin <my-new-url>

    Login or Signup to reply.
  2. Try this commands

    git remote set-url --delete origin
    
    git remote set-url origin <URL>
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search