我希望能够在 Windows 环境中备份我的项目,而无需手动复制和粘贴我的整个文件夹。不幸的是,我不允许为这个项目使用远程 git 服务器,所以我想知道是否可以使用 git 在已安装的硬盘驱动器上备份我的项目。
我试过这个解决方案:
git remote add Y file:///path/to/Y
但是,当我尝试推送时,我收到此错误:
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
我试图在我安装的设备和本地目录上初始化一个裸存储库,但我遇到了同样的错误。
总而言之,我希望能够在 Windows 环境中自动备份我的项目,或者使用 git commit 和 git push 等少数命令。有任何想法吗?