13

所以我刚开始使用 Git 和 GitHub。这仍然是一个陡峭的攀登,但我开始享受它。当我克隆存储库时,我注意到的一件事是它总是下载到我的主文件夹/users/username。有没有办法改变这个?

我搜索了 Git 手册,并认为我可以使用--git-dir=GIT_DIR,但我知道我使用不正确,因为当我尝试这个时,终端中的返回值是

       git --git-dir=New/Directory/Path/
usage: git [--version] [--exec-path[=GIT_EXEC_PATH]] [--html-path]
           [-p|--paginate|--no-pager] [--no-replace-objects]
           [--bare] [--git-dir=GIT_DIR] [--work-tree=GIT_WORK_TREE]
           [--help] COMMAND [ARGS]

The most commonly used git commands are:
   add        Add file contents to the index
   bisect     Find by binary search the change that introduced a bug
   branch     List, create, or delete branches
   checkout   Checkout a branch or paths to the working tree
   clone      Clone a repository into a new directory
   commit     Record changes to the repository
   diff       Show changes between commits, commit and working tree, etc
   fetch      Download objects and refs from another repository
   grep       Print lines matching a pattern
   init       Create an empty git repository or reinitialize an existing one
   log        Show commit logs
   merge      Join two or more development histories together
   mv         Move or rename a file, a directory, or a symlink
   pull       Fetch from and merge with another repository or a local branch
   push       Update remote refs along with associated objects
   rebase     Forward-port local commits to the updated upstream head
   reset      Reset current HEAD to the specified state
   rm         Remove files from the working tree and from the index
   show       Show various types of objects
   status     Show the working tree status
   tag        Create, list, delete or verify a tag object signed with GPG

See 'git help COMMAND' for more information on a specific command.

所以一定是错的...

4

4 回答 4

16

git clone除非您另外指定,否则会将文件复制到您当前的目录。因此,如果您当前的工作目录是~,那么

$ git clone me@host:/path/to/repo.git

将文件复制到~/repo.

您可以通过以下两种方式之一进行更改:

cd首先到所需的目录:

$ cd /path/to/my/files
$ git clone me@host:/path/to/repo.git

将在/path/to/my/files/repo.

或者,git clone可以采用指定位置的参数:

$ git clone me@host:/path/to/repo.git /other/path/to/repo

将在/other/path/to/repo.

于 2010-03-12T18:37:22.317 回答
1

正如@mipadi 所说,您可以在克隆时修改结帐位置:

git clone git://some.path/goes/here some/local/path/here

但我觉得你想要一个更永久的解决方案。

--git-dir选项设置存储库的路径,我将其读取为与(本地)存储库的位置相关的每个命令,而不是一些全局设置。您可能可以在配置文件中执行某些操作,但我什么都不知道。

于 2010-03-12T18:40:18.387 回答
1

在 linux 中输入pwd(打印工作目录)。这将向您显示git clone将文件下载到的目录。

默认情况下,命令提示符将在~目录中,即主目录。

您可以cd /home/barackObama/websites/whitehouse; git clone......克隆到 whitehouse 文件夹中。

于 2013-06-30T15:17:13.453 回答
-1

我在这里找到了一种简单的方法:

在快捷方式 Git Bash 上按鼠标右键,然后更改起始字段:输入所需的启动目录。确认。完毕!

于 2014-08-23T19:16:23.650 回答