9

典型的な「git clone https://github.com/foo/bar.git」を実行すると、現在のディレクトリにフォルダが作成され、そのディレクトリにあるすべてのファイルが含まれます。

私が探しているのは、その git リポジトリからすべてのファイル (.git 自体を含む) を clone コマンドを発行したディレクトリにドロップできるオプションのコマンド ライン引数です。

それが懸念される場合はbashを使用しています-事前に感謝します!

4

2 に答える 2

21

私はあなたが望むものを参照してください。git リポジトリをホーム ディレクトリに初期化してから、リモート オリジンを追加してプルできます。

cd
git init
git remote add origin https://github.com/foo/bar.git
git pull
于 2013-03-08T00:18:29.313 に答える
0

あなたはドットを探してい.ますか?

git clone https://github.com/foo/bar.git .

git clone man ページから:

git clone [--template=<template_directory>]
          [-l] [-s] [--no-hardlinks] [-q] [-n] [--bare] [--mirror]
          [-o <name>] [-b <name>] [-u <upload-pack>] [--reference <repository>]
          [--separate-git-dir <git dir>]
          [--depth <depth>] [--recursive|--recurse-submodules] [--] <repository>
          [<directory>]

(ターゲット) ディレクトリは最後の引数です。.現在のフォルダーが空であることを確認する必要があることに注意してください

于 2013-03-07T23:35:51.553 に答える