是否有人从SAMBA网络共享成功地将GIT存储库克隆到Ubuntu?
我可以访问文件管理器和命令行上的can s,但不能克隆。
另外,在git cola、qgit和gitg中,我看不到挂载的SAMBA网络共享。
发布于 2015-02-02 11:42:38
使用此手册(“使用CIFS连接”部分)装入远程存储库:https://help.ubuntu.com/community/Samba/SambaClientGuide
sudo mount -t cifs //IP_ADDRESS/git/repo.git ~/git/mnt/repo.git -o username=samba_user,noexec然后,
git clone ~/git/mnt/repo.git/发布于 2016-05-04 14:31:02
另一种方法是克隆gvfs用户挂载。
git clone /run/user/<username>/gvfs/path_to_repo/repo.git这避免了安装问题。
https://askubuntu.com/questions/264336
复制相似问题