【发布时间】:2016-04-21 19:39:02
【问题描述】:
这些是我在服务器上运行的命令:
$ whoami
git
$ ls -l
drwxr-xr-x 3 git git 4096 Jan 16 05:48 git
$ ls -l git/
total 4
drwxrwxr-x 7 git git 4096 Jan 16 05:55 tpro.git
然后在我的本地机器上:
$ git remote add origin git@gitserver:/opt/git/t.git
然后 但是当我想从本地机器推送到服务器时,出现以下错误:
$ git push -u origin master
fatal: '/opt/git/t.git' does not appear to be a git repository
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
【问题讨论】:
标签: git permissions file-permissions user-permissions