我有这个文件结构:
folderIWantStuffIn/ - old_stuff
现在我想添加一些Git回购中的新内容。我想可以用 git clone 和 git pull 就在目录中,然后得到:
git clone
git pull
folderIWantStuffIn/ - old_stuff - new_stuff
当我使用 Git克隆 我得到这个:
Git克隆
folderIWantStuffIn/ - old_stuff - NewStuffFolder/ - new_stuff
有我能插进去的旗子吗 Git克隆 为了得到这种行为?
尝试 git clone $URL . 这里的魔法是 . _它告诉Git应该克隆回购的目录(在本例中,我们使用的是 . ,aka,当前目录)。见 the docs 更多选项。
git clone $URL .
.