fatal: does not appear to be a git repository

前端 未结 8 1407
无人及你
无人及你 2020-12-02 10:58

Why am I getting this error when my git repository url is correct?

jitendra@JITENDRA-PC /c/mySite (master)
$ git push beanstalk master
fatal: \'git@skarp.bea         


        
相关标签:
8条回答
  • 2020-12-02 11:28

    You've got the syntax for the scp-style way of specifying a repository slightly wrong - it has to be:

    [user@]host.xz:path/to/repo.git/
    

    ... as you can see in the git clone documentation. You should use instead the URL:

    git@skarp.beanstalkapp.com:/gittest.git
    

    i.e. in the URL you're using, you missed out the : (colon)

    To update the URL for origin you could do:

    git remote set-url origin git@skarp.beanstalkapp.com:/gittest.git
    
    0 讨论(0)
  • 2020-12-02 11:29

    my local and remote machines are both OS X. I was having trouble until I checked the file structure of the git repo that xCode Server provides me. Essentially everything is chmod 777 * in that repo so to setup a separate non xCode repo on the same machine in my remote account there I did this:

    REMOTE MACHINE

    1. Login to your account
    2. Create a master dir for all projects 'mkdir git'
    3. chmod 775 git then cd into it
    4. make a project folder 'mkdir project1'
    5. chmod 777 project1 then cd into it
    6. run command 'git init' to make the repo
    7. this creates a .git dir. do command 'chmod 777 .git' then cd into it
    8. run command 'chmod 777 *' to make all files in .git 777 mod
    9. cd back out to myproject1 (cd ..)
    10. setup a test file in the new repo w/command 'touch test.php'
    11. add it to the repo staging area with command 'git add test.php'
    12. run command "git commit -m 'new file'" to add file to repo
    13. run command 'git status' and you should get "working dir clean" msg
    14. cd back to master dir with 'cd ..'
    15. in the master dir make a symlink 'ln -s project1 project1.git'
    16. run command 'pwd' to get full path
    17. in my case the full path was "/Users/myname/git/project1.git'
    18. write down the full path for later use in URL
    19. exit from the REMOTE MACHINE

    LOCAL MACHINE

    1. create a project folder somewhere 'newproj1' with 'mkdir newproj1'
    2. cd into it
    3. run command 'git init'
    4. make an alias to the REMOTE MACHINE
    5. the alias command format is 'git remote add your_alias_here URL'
    6. make sure your URL is correct. This caused me headaches initially
    7. URL = 'ssh://user@www.somemachine.com/Users/myname/git/project1.git'
    8. after you do 'git remote add alias URL' do 'git remote -v'
    9. the command should respond with a fetch and push line
    10. run cmd 'git pull your_alias master' to get test.php from REMOTE repo
    11. after the command in #10 you should see a nice message.
    12. run command 'git push --set-upstream your_alias master'
    13. after command in 12 you should see nice message
    14. command in #12 sets up REMOTE as the project master (root)

    For me, i learned getting a clean start with a git repo on a LOCAL and REMOTE requires all initial work in a shell first. Then, after the above i was able to easily setup the LOCAL and REMOTE git repos in my IDE and do all the basic git commands using the GUI of the IDE.

    I had difficulty until I started at the remote first, then did the local, and until i opened up all the permissions on remote. In addition, having the exact full path in the URL to the symlink was critical to succeed.

    Again, this all worked on OS X, local and remote machines.

    0 讨论(0)
  • 2020-12-02 11:30

    I had a similar problem when using TFS 2017. I was not able to push or pull GIT repositories. Eventually I reinstalled TFS 2017, making sure that I installed TFS 2017 with an SSH Port different from 22 (in my case, I chose 8022). After that, push and pull became possible against TFS using SSH.

    0 讨论(0)
  • 2020-12-02 11:33

    It is most likely that you got your repo's SSH URL wrong.

    To confirm, go to your repository on Github and click the clone or download button. Then click the use SSH link.

    Now copy your official repo's SSH link. Mine looked like this - git@github.com:borenho/que-ay.git

    You can now do git remote add origin git@github.com:borenho/que-ay.git if you didn't have origin yet.

    If you had set origin before, change it by using git remote set-url origin git@github.com:borenho/que-ay.git

    Now push with git push -u origin master

    0 讨论(0)
  • 2020-12-02 11:33

    I have a similar problem, but now I know the reason.

    After we use git init, we should add a remote repository using

    git remote add name url
    

    Pay attention to the word name, if we change it to origin, then this problem will not happen.

    Of course, if we change it to py, then using git pull py branch and git push py branch every time you pull and push something will also be OK.

    0 讨论(0)
  • 2020-12-02 11:33

    I was facing same issue with my one of my feature branch. I tried above mentioned solution nothing worked. I resolved this issue by doing following things.

    • git pull origin feature-branch-name
    • git push
    0 讨论(0)
提交回复
热议问题