所以我刚开始使用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.
所以一定是错的......
答案 0 :(得分: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
创建您的回购。
答案 1 :(得分:1)
正如@mipadi所说,您可以在进行克隆时修改结帐位置:
git clone git://some.path/goes/here some/local/path/here
但我觉得你想要一个更持久的解决方案。
--git-dir
选项设置存储库的路径,我将其视为与(本地)存储库的位置相关的每个命令,而不是某些全局设置。你可以在config file中做些什么,但我什么都不知道。
答案 2 :(得分:1)
在linux中输入pwd
(打印工作目录)。这将显示git clone
将文件下载到的目录。
默认情况下,命令提示符将位于~
目录中,即主目录。
您可以cd /home/barackObama/websites/whitehouse; git clone......
克隆到白宫文件夹。
答案 3 :(得分:-1)
我找到了一种简单的方法here:
在快捷键Git Bash上按鼠标右键,然后更改字段中的开始:输入所需的启动目录。确认。完成!