web-dev-qa-db-ja.com

「宛先パス」が表示されるのはなぜですか。 Webfactionサーバーからクローンを作成しようとすると、「すでに存在しています」というエラーが表示されますか?

git cloneを使用して、webfactionサーバーからコードをダウンロードしようとしています

$ cd ../webapps/nameofwebapp/
$ git clone [email protected]:github-username/github-repo.git ./

そして、エラーがあります:

fatal: destination path '.' already exists and is not an empty directory.

私はlsを使用し、nameofwebappの下に何かがあります

auth  git.cgi  gitweb.cgi  repos  static

git cloneの使用場所を尋ねたいのですが、新しいディレクトリを作成する必要がありますか?

13
user2492364

単に:

git clone [email protected]:github-username/github-repo.git

新しいフォルダーが作成されますgithub-repo in ../webapps/nameofwebapp/

あなたの場合:

cd ../webapps/nameofwebapp/
git clone [email protected]:github-username/github-repo.git -b develop ./

すでにクローンを作成した場合:

cd github-repo
git checkout -b develop Origin/develop
5
VonC

現在のパスに同じ名前のgitプロジェクトディレクトリがある場合、git cloneコマンドは新しいディレクトリを作成し、同じ名前のディレクトリがあるとクラッシュします。

1