在本地服务器中找不到存储库

时间:2015-07-27 12:32:46

标签: git bash

我用git学习基本操作并遇到这个问题。我有我的apache服务器localhost:8080。我有存储库:

  1. 'C:\阿帕奇\本地主机\ WWW \ Machine2.git'。
  2. 'C:\程序\ GitRepositories \视频2'。
  3. 我在浏览器中写了“http://localhost:8080/Machine2.git/”,浏览器让我对文件目录做了很好的回答。 在'Machine2.git'的Git Bash中,我写道:

    # Rustam@RUSTAM_PC /C/apache/localhost/www/Machine2.git
    $ git --bare init
    # Initialized empty Git repository in c://apache/localhost/www/Machine2.git
    
    # Rustam@RUSTAM_PC /C/Programs/GitRepositories/Video2
    $ git init
    $ git add .
    $ git commit -m "Initial"
    # [master (root-commit) ed08a791 Initial
    # 1 file changed, 1 insertion(+)
    # create mode 100644 Readme
    $ git remote add origin http://localhost:8080/Machine2.git/
    $ git push origin master 
    # fatal: repository 'http://localhost:8080/Machine2.git/' not found
    

    我不知道。请帮助!

1 个答案:

答案 0 :(得分:1)

答案。我打开Machine2的属性并设置对所有的公共访问。将链接复制到此目录。

1.delete Video2文件夹; 2.再次在该路径上创建Video2文件夹 3.打开Bash并再次编写代码。

$ git init    
$ git add .
$ git commit -m "Initial"
$ git remote add origin //RUSTAM_PC/Machine2
$ git push origin master 
# Counting objects: 3, done.
# Writing objects: 100% (3/3), 223 bytes | 0 bytes/s. done.
# Total 3 (delta 0), reused 0 (delta 0)
# To //RUSTAM_PC/Machine2
# * [new branch] master -> master

感谢所有人!