2013-10-08 70 views
1

我嘗試註冊我對鮑爾項目之一,但它不能正常工作,在第一,我將我的項目在Github上用標籤和下面的命令:註冊一個鮑爾組件

  1. 「混帳日誌」
  2. 「混帳標籤0.0.0 kj8jkh8df43 ......」

我用了「涼亭初始化」命令創建「的manifest.json」文件,但是當我嘗試註冊的包,我得到一個問題...

我的問題:

bower Forest-Administrator#* resolve git://github.com:tonymx227/Forest-Administrator.git#* 
bower Forest-Administrator#* ECMDERR Failed to execute "git ls-remote --tags --heads git://github.com:tonymx227/Forest-Administrator.git", exit code of #128 

Additional error details: 
fatal: Unable to look up github.com (port tonymx227) (nodename nor servname provided, or not known) 

我的manifest.json文件:

{ 
    "name": "Forest-Administrator", 
    "version": "0.0.0", 
    "homepage": "https://github.com/tonymx227/Forest-Administrator", 
    "dependencies": [ 
    "git://github.com/tonymx227/Forest-Administrator.git": "*" 
    ], 
    "authors": [ 
    "tonymx227 <[email protected]>" 
    ], 
    "description": "Forest Administrator is an HTML5/CSS3 framework which is used to organize your administration panel.", 
    "keywords": [ 
    "forest", 
    "administrator", 
    "css3", 
    "html5", 
    "compass", 
    "framework", 
    "admin", 
    "panel" 
    ], 
    "license": "MIT", 
    "ignore": [ 
    "**/.*", 
    "node_modules", 
    "bower_components", 
    "test", 
    "tests", 
    ".gitignore" 
    ] 
} 

安東尼

回答

2

應該git://github.com/tonymx227/Forest-Administrator.git
/,而不是:

+0

謝謝你,它的工作原理。 – tonymx227