关于在 DropBox 中使用 Git 似乎不起作用的文章

发布于 2024-11-01 02:16:58 字数 393 浏览 1 评论 0原文

我找到了关于在 Dropbox 中使用 Git 的这篇文章作为辅助存储库。当我尝试将远程目录添加到我的项目时出现问题,并收到以下消息:

git remote add file:///Users/me/Dropbox/Projects/Social-Linking dropbox
fatal: 'file:///Users/me/Dropbox/Projects/Social-Linking' is not a valid remote name

我在 Mac 上一次一步地执行了这些步骤。

I found this article on using Git in Dropbox as a secondary repository. The problem when when I try to add the remote directory to my project and I get the following message:

git remote add file:///Users/me/Dropbox/Projects/Social-Linking dropbox
fatal: 'file:///Users/me/Dropbox/Projects/Social-Linking' is not a valid remote name

I followed the steps one step at a time and on a Mac.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

月依秋水 2024-11-08 02:16:58

你可能正在做

git remote add file:///Users/me/Dropbox/Projects/Social-Linking remotename

你应该做的事情

git remote add remotename file:///Users/me/Dropbox/Projects/Social-Linking

You are probably doing

git remote add file:///Users/me/Dropbox/Projects/Social-Linking remotename

Where you should be doing

git remote add remotename file:///Users/me/Dropbox/Projects/Social-Linking
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文