Git clone on an ovh host serverSetting up two SSH keys for two git repos from Windows 7How to commit a change...

Did arcade monitors have same pixel aspect ratio as TV sets?

System.QueryException unexpected token

Redundant comparison & "if" before assignment

How do you respond to a colleague from another team when they're wrongly expecting that you'll help them?

Why is short-wave infrared portion of electromagnetic spectrum so sensitive to fire?

How can I write humor as character trait?

On a tidally locked planet, would time be quantized?

Mimic lecturing on blackboard, facing audience

Temporarily disable WLAN internet access for children, but allow it for adults

Non-trope happy ending?

What is the evidence for the "tyranny of the majority problem" in a direct democracy context?

Strong empirical falsification of quantum mechanics based on vacuum energy density

Why "had" in "[something] we would have made had we used [something]"?

putting logo on same line but after title, latex

Add big quotation marks inside my colorbox

What exact color does ozone gas have?

Why does AES have exactly 10 rounds for a 128-bit key, 12 for 192 bits and 14 for a 256-bit key size?

How to say when an application is taking the half of your screen on a computer

What is going on with 'gets(stdin)' on the site coderbyte?

Lowest total scrabble score

What if you are holding an Iron Flask with a demon inside and walk into Antimagic Field?

Do the primes contain an infinite almost arithmetic progression?

When were female captains banned from Starfleet?

What are some good ways to treat frozen vegetables such that they behave like fresh vegetables when stir frying them?



Git clone on an ovh host server


Setting up two SSH keys for two git repos from Windows 7How to commit a change to a homebrew formula?Git permission denied (public key) errorUnable to git pull while using puttyGithub local cached ip address is different then expected remote ip addressGit Permission Denied (Public Key)way to automate git repositories cloningGithub push, clone, and fetch functions in produce “TaskCanceledException” and “UriFormatException” errorsGit, can't clone new working copyGit clone from private network to remote through vpn ssh













0















I want to do a git-clone from an SSH connection, on an ovh host-server, but it does not work. I'm using a terminal from my Mac.



Here's the command I entered:



git clone ssh://me@example.com/www/


(and all variations /.Git /www/.git, /www/.git/ ... )



This is the message that I invariably get:



fatal: '/www': unable to chdir or not a git archive fatal: The remote end hung up unexpectedly


Moreover, the command



git clone "ssh://git@ftp.example.com/ ~/forumdesthinktanks.git"


Responded with:



Permission denied, please try again.
git@ftp.example.com's password:


While the FTP password is correct.



Finally, the commands:



git clone ssh://forumdesy@forumdesthinktanks.fr/.Git


And this:



git clone ssh://git@forumdesthinktanks.fr/ ~/forumdesthinktanks.git


Do not work (until the terminal's time out).










share|improve this question





























    0















    I want to do a git-clone from an SSH connection, on an ovh host-server, but it does not work. I'm using a terminal from my Mac.



    Here's the command I entered:



    git clone ssh://me@example.com/www/


    (and all variations /.Git /www/.git, /www/.git/ ... )



    This is the message that I invariably get:



    fatal: '/www': unable to chdir or not a git archive fatal: The remote end hung up unexpectedly


    Moreover, the command



    git clone "ssh://git@ftp.example.com/ ~/forumdesthinktanks.git"


    Responded with:



    Permission denied, please try again.
    git@ftp.example.com's password:


    While the FTP password is correct.



    Finally, the commands:



    git clone ssh://forumdesy@forumdesthinktanks.fr/.Git


    And this:



    git clone ssh://git@forumdesthinktanks.fr/ ~/forumdesthinktanks.git


    Do not work (until the terminal's time out).










    share|improve this question



























      0












      0








      0








      I want to do a git-clone from an SSH connection, on an ovh host-server, but it does not work. I'm using a terminal from my Mac.



      Here's the command I entered:



      git clone ssh://me@example.com/www/


      (and all variations /.Git /www/.git, /www/.git/ ... )



      This is the message that I invariably get:



      fatal: '/www': unable to chdir or not a git archive fatal: The remote end hung up unexpectedly


      Moreover, the command



      git clone "ssh://git@ftp.example.com/ ~/forumdesthinktanks.git"


      Responded with:



      Permission denied, please try again.
      git@ftp.example.com's password:


      While the FTP password is correct.



      Finally, the commands:



      git clone ssh://forumdesy@forumdesthinktanks.fr/.Git


      And this:



      git clone ssh://git@forumdesthinktanks.fr/ ~/forumdesthinktanks.git


      Do not work (until the terminal's time out).










      share|improve this question
















      I want to do a git-clone from an SSH connection, on an ovh host-server, but it does not work. I'm using a terminal from my Mac.



      Here's the command I entered:



      git clone ssh://me@example.com/www/


      (and all variations /.Git /www/.git, /www/.git/ ... )



      This is the message that I invariably get:



      fatal: '/www': unable to chdir or not a git archive fatal: The remote end hung up unexpectedly


      Moreover, the command



      git clone "ssh://git@ftp.example.com/ ~/forumdesthinktanks.git"


      Responded with:



      Permission denied, please try again.
      git@ftp.example.com's password:


      While the FTP password is correct.



      Finally, the commands:



      git clone ssh://forumdesy@forumdesthinktanks.fr/.Git


      And this:



      git clone ssh://git@forumdesthinktanks.fr/ ~/forumdesthinktanks.git


      Do not work (until the terminal's time out).







      ssh git clone






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited 9 mins ago









      JakeGould

      32.1k1098141




      32.1k1098141










      asked Mar 30 '12 at 22:13









      epsilonesepsilones

      1207




      1207






















          1 Answer
          1






          active

          oldest

          votes


















          0














          It's kind of hard for me to see what you're doing with the way you formatted it, but here's some things to remember when cloning:




          1. It's CaSE SenSiTivE.

          2. You want to use git clone ssh://username@host.org/path/to/repository/.git assuming default configurations. (it could also be that the directory with the repository ends in .git, so then you wouldn't have the /.git at the end)

          3. Make sure you have at least read permissions to the repository.


          You might be doing this so that it doesn't become a link in your post, but you shouldn't have spaces before or after the /s. (really no spaces at all except in certain conditions)






          share|improve this answer
























          • Thank you for your response? It seems I don't have the right permission. Best, Newben

            – epsilones
            Apr 2 '12 at 12:40













          • @Newben You can check if you have proper permissions by sshing into the server normally, going to the enclosing directory and using ls -l

            – Cole
            Apr 2 '12 at 22:12











          • Hello Everybody, you're absolutely right ! I went to an ssh connectoin, made a 'pwd', and I had the right path. I put in my git-clone command : 'git clone ssh :/ / forumdesy@forumdesthinktanks.fr /'Path' and it worked. Thanks a lot, Newben

            – epsilones
            Apr 3 '12 at 16:25











          Your Answer








          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "3"
          };
          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%2fsuperuser.com%2fquestions%2f406845%2fgit-clone-on-an-ovh-host-server%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          0














          It's kind of hard for me to see what you're doing with the way you formatted it, but here's some things to remember when cloning:




          1. It's CaSE SenSiTivE.

          2. You want to use git clone ssh://username@host.org/path/to/repository/.git assuming default configurations. (it could also be that the directory with the repository ends in .git, so then you wouldn't have the /.git at the end)

          3. Make sure you have at least read permissions to the repository.


          You might be doing this so that it doesn't become a link in your post, but you shouldn't have spaces before or after the /s. (really no spaces at all except in certain conditions)






          share|improve this answer
























          • Thank you for your response? It seems I don't have the right permission. Best, Newben

            – epsilones
            Apr 2 '12 at 12:40













          • @Newben You can check if you have proper permissions by sshing into the server normally, going to the enclosing directory and using ls -l

            – Cole
            Apr 2 '12 at 22:12











          • Hello Everybody, you're absolutely right ! I went to an ssh connectoin, made a 'pwd', and I had the right path. I put in my git-clone command : 'git clone ssh :/ / forumdesy@forumdesthinktanks.fr /'Path' and it worked. Thanks a lot, Newben

            – epsilones
            Apr 3 '12 at 16:25
















          0














          It's kind of hard for me to see what you're doing with the way you formatted it, but here's some things to remember when cloning:




          1. It's CaSE SenSiTivE.

          2. You want to use git clone ssh://username@host.org/path/to/repository/.git assuming default configurations. (it could also be that the directory with the repository ends in .git, so then you wouldn't have the /.git at the end)

          3. Make sure you have at least read permissions to the repository.


          You might be doing this so that it doesn't become a link in your post, but you shouldn't have spaces before or after the /s. (really no spaces at all except in certain conditions)






          share|improve this answer
























          • Thank you for your response? It seems I don't have the right permission. Best, Newben

            – epsilones
            Apr 2 '12 at 12:40













          • @Newben You can check if you have proper permissions by sshing into the server normally, going to the enclosing directory and using ls -l

            – Cole
            Apr 2 '12 at 22:12











          • Hello Everybody, you're absolutely right ! I went to an ssh connectoin, made a 'pwd', and I had the right path. I put in my git-clone command : 'git clone ssh :/ / forumdesy@forumdesthinktanks.fr /'Path' and it worked. Thanks a lot, Newben

            – epsilones
            Apr 3 '12 at 16:25














          0












          0








          0







          It's kind of hard for me to see what you're doing with the way you formatted it, but here's some things to remember when cloning:




          1. It's CaSE SenSiTivE.

          2. You want to use git clone ssh://username@host.org/path/to/repository/.git assuming default configurations. (it could also be that the directory with the repository ends in .git, so then you wouldn't have the /.git at the end)

          3. Make sure you have at least read permissions to the repository.


          You might be doing this so that it doesn't become a link in your post, but you shouldn't have spaces before or after the /s. (really no spaces at all except in certain conditions)






          share|improve this answer













          It's kind of hard for me to see what you're doing with the way you formatted it, but here's some things to remember when cloning:




          1. It's CaSE SenSiTivE.

          2. You want to use git clone ssh://username@host.org/path/to/repository/.git assuming default configurations. (it could also be that the directory with the repository ends in .git, so then you wouldn't have the /.git at the end)

          3. Make sure you have at least read permissions to the repository.


          You might be doing this so that it doesn't become a link in your post, but you shouldn't have spaces before or after the /s. (really no spaces at all except in certain conditions)







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Mar 30 '12 at 22:25









          ColeCole

          1145




          1145













          • Thank you for your response? It seems I don't have the right permission. Best, Newben

            – epsilones
            Apr 2 '12 at 12:40













          • @Newben You can check if you have proper permissions by sshing into the server normally, going to the enclosing directory and using ls -l

            – Cole
            Apr 2 '12 at 22:12











          • Hello Everybody, you're absolutely right ! I went to an ssh connectoin, made a 'pwd', and I had the right path. I put in my git-clone command : 'git clone ssh :/ / forumdesy@forumdesthinktanks.fr /'Path' and it worked. Thanks a lot, Newben

            – epsilones
            Apr 3 '12 at 16:25



















          • Thank you for your response? It seems I don't have the right permission. Best, Newben

            – epsilones
            Apr 2 '12 at 12:40













          • @Newben You can check if you have proper permissions by sshing into the server normally, going to the enclosing directory and using ls -l

            – Cole
            Apr 2 '12 at 22:12











          • Hello Everybody, you're absolutely right ! I went to an ssh connectoin, made a 'pwd', and I had the right path. I put in my git-clone command : 'git clone ssh :/ / forumdesy@forumdesthinktanks.fr /'Path' and it worked. Thanks a lot, Newben

            – epsilones
            Apr 3 '12 at 16:25

















          Thank you for your response? It seems I don't have the right permission. Best, Newben

          – epsilones
          Apr 2 '12 at 12:40







          Thank you for your response? It seems I don't have the right permission. Best, Newben

          – epsilones
          Apr 2 '12 at 12:40















          @Newben You can check if you have proper permissions by sshing into the server normally, going to the enclosing directory and using ls -l

          – Cole
          Apr 2 '12 at 22:12





          @Newben You can check if you have proper permissions by sshing into the server normally, going to the enclosing directory and using ls -l

          – Cole
          Apr 2 '12 at 22:12













          Hello Everybody, you're absolutely right ! I went to an ssh connectoin, made a 'pwd', and I had the right path. I put in my git-clone command : 'git clone ssh :/ / forumdesy@forumdesthinktanks.fr /'Path' and it worked. Thanks a lot, Newben

          – epsilones
          Apr 3 '12 at 16:25





          Hello Everybody, you're absolutely right ! I went to an ssh connectoin, made a 'pwd', and I had the right path. I put in my git-clone command : 'git clone ssh :/ / forumdesy@forumdesthinktanks.fr /'Path' and it worked. Thanks a lot, Newben

          – epsilones
          Apr 3 '12 at 16:25


















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Super User!


          • 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%2fsuperuser.com%2fquestions%2f406845%2fgit-clone-on-an-ovh-host-server%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

          Cannot install PyQt5 The Next CEO of Stack OverflowCannot install tcpreplay 3.4.4cannot...

          Kapp-Putsch Acontecimentos | Outros artigos | Menu de navegação

          Why did early computer designers eschew integers? The Next CEO of Stack OverflowWhat register...