2017-12-18 336 views
0

我克隆了一個遠程回購,但是當我輸入git remote它不顯示origin。爲什麼?「git remote」不顯示原點。爲什麼?

[email protected] MINGW64 /d/git (master) 
$ git clone https://github.com/speresunko/speresunko.github.io 
Cloning into 'speresunko.github.io'... 
remote: Counting objects: 6, done. 
remote: Compressing objects: 100% (3/3), done. 
remote: Total 6 (delta 0), reused 0 (delta 0), pack-reused 0 
Unpacking objects: 100% (6/6), done. 

[email protected] MINGW64 /d/git (master) 
$ git remote 

[email protected] MINGW64 /d/git (master) 
$ 
+0

謝謝。我會更細心。 –

回答

2

查看行Cloning into。它說回購被克隆到一個名爲speresunko.github.io的文件夾中。 導航到此文件夾,您的克隆回購將在那裏。 git remote命令將根據需要在此文件夾中工作。

+0

謝謝。有用 –

相關問題