我有一个不寻常的想法,使用 git 作为备份系统。假设我有一个目录。备份/myfiles,我想使用 git 对其进行备份。为了保持干净,我不想有一个。Git 目录,所以我想我可以创建。备份/git _ repos/myfiles。通过查看 Git 文档,我试着这样做:
$ cd backup/myfiles
$ mkdir ../git_repos/myfiles
$ git --git-dir=../git_repos/myfiles init
Initialized empty Git repository in backup/git_repos/myfiles/
$ git --git-dir="../git_repos/myfiles/" add foo
fatal: pathspec 'foo' did not match any files
您可以看到我得到的错误消息。我做错了什么?