1

我在 NAS Synology 上安装了 Git 服务器并按照此处所述进行设置。

我将 Putty 连接到 NAS 并在 Git 上执行以下操作:

$ cd /volume1/Repository/

$ mkdir moonlightbox.git

$ cd moonlightbox.git

$ git --bare init

$ cd ..

$ chown -R git:users moonlightbox.git

$ exit

之后,我按照手册在 Android Studio 中设置 Git。

  • 我在 Android Studio 中安装了适用于 Windows 的 Git 和设置路径 - 设置
  • 我为 Git 启用了 VCS

但是如何将 Android Studio 中的当前项目与在 NAS 上创建的准备好的空存储库连接起来?

4

1 回答 1

1

据我所知,您无法在 android studio 中连接本地存储库。您必须直接使用 git(例如来自 git bash)

 git remote add --track master origin ssh://user@server/volume1/Repository/moonlightbox.git

 # you need to specify the remote and branch the first time, not sure why
 # you also need to have some commits to push
 git push origin master

然后,您可以使用/菜单中的PushouPull对话框VCSGit

于 2015-10-14T12:29:36.230 回答