我刚用ubuntu 14.04 x64创建了一个数字海洋服务器。
创建时,我设置了ssh访问权限,并下载了dokku(需要运行两次命令,但这是一个常见问题)
命令:
wget -qO- https://raw.github.com/progrium/dokku/v0.2.3/bootstrap.sh | sudo DOKKU_TAG=v0.2.3 bash
然后,在本地我尝试连接我的本地仓库并将我的代码推送到我的新服务器:
$ git remote set-url amsterdam git@**.**.**.**
$ git push amsterdam master
fatal: '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 remote set-url amsterdam dokku@**.**.**.**
但是得到了同样的错误,这就是为什么我尝试使用git@...
编辑2:
我发现了一些奇怪的东西。
当我在root中执行ls时,我会得到一个名为dokku
的文件夹,但我执行此操作:
cd ..
ls /home
我再次获得dokku
,但它们的内容不同。
在/ home / dokku我有这个:
drwxr-xr-x 3 dokku root 4096 May 23 10:34 .
drwxr-xr-x 3 root root 4096 May 23 10:31 ..
-rw-r--r-- 1 root root 8 May 23 10:33 HOSTNAME
drwxr-xr-x 2 dokku root 4096 May 23 10:31 .ssh
-rw-r--r-- 1 dokku root 21 May 23 10:31 .sshcommand
-rw-r--r-- 1 root root 7 May 23 10:34 VERSION
但在/ root / dokku中我有这个:
drwxr-xr-x 7 root root 4096 May 23 10:31 .
drwx------ 5 root root 4096 May 23 10:31 ..
-rw-r--r-- 1 root root 767 May 23 10:31 AUTHORS
-rw-r--r-- 1 root root 823 May 23 10:31 bootstrap.sh
drwxr-xr-x 2 root root 4096 May 23 10:31 contrib
drwxr-xr-x 2 root root 4096 May 23 10:31 docs
-rwxr-xr-x 1 root root 3218 May 23 10:31 dokku
-rw-r--r-- 1 root root 1224 May 23 10:31 dokku.1
drwxr-xr-x 8 root root 4096 May 23 10:31 .git
-rw-r--r-- 1 root root 29 May 23 10:31 .gitignore
-rw-r--r-- 1 root root 813 May 23 10:31 HISTORY.md
-rw-r--r-- 1 root root 1056 May 23 10:31 LICENSE
-rw-r--r-- 1 root root 2330 May 23 10:31 Makefile
drwxr-xr-x 7 root root 4096 May 23 10:31 plugins
-rw-r--r-- 1 root root 9092 May 23 10:31 README.md
-rw-r--r-- 1 root root 1087 May 23 10:31 .s3cfg
drwxr-xr-x 4 root root 4096 May 23 10:31 tests
-rw-r--r-- 1 root root 486 May 23 10:31 .travis.yml
-rw-r - r-- 1 root root 1377 May 23 10:31 Vagrantfile
答案 0 :(得分:1)
如果您正在尝试创建新遥控器,则应该使用:
git remote add amsterdam git@...
代替git remote set-url amsterdam git@...
其中,amsterdam
(名称无关紧要)只是git@...
的别名(您提供的网址)。
set-url
用于更新现有远程位置的URL。
还有几点需要注意:
如果您尚未初始化git存储库,请在项目目录中键入:git init .
。
下一步是添加对本地git索引的更改。为此,请键入:
git add .
然后,记录对本地git存储库的更改。为此,请键入:
git commit -m 'some-commit-message'
最后,将更改推送到远程服务器。为此,请键入:
git push amsterdam master
,其中master
是您的分支的名称,默认为master
。