作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 Ubuntu 16.04 上,并与带有 GIT 存储库的 Windows 网络建立了 VPN 连接。我可以通过访问存储库
smb://192.168.1.71/users/Git/myrepo.git
The following syntaxes may be used with them:
ssh://[user@]host.xz[:port]/path/to/repo.git/
git://host.xz[:port]/path/to/repo.git/
http[s]://host.xz[:port]/path/to/repo.git/
ftp[s]://host.xz[:port]/path/to/repo.git/
rsync://host.xz/path/to/repo.git/
[user@]host.xz:path/to/repo.git/
git remote set-url origin smb://192.168.1.71/users/Git/myrepo.git
最佳答案
通过挂载存储库
mkdir /mnt/windowsgit
sudo apt-get install cifs-utils
sudo mount -t cifs //192.168.1.71/users/Git /mnt/windowsgit -o user=USERNAME
cifs-utils
需要挂载 smb 位置和
USERNAME
是 windows 网络所需的用户名。您将被要求输入密码。
git remote set-url origin file://mnt/windowsgit/myrepo.git
sudo git pull
sudo git push
/mnt/
需要 sudo 权限。
fatal: '\192.168.1.71\Users\Git\myrepo.git' does not appear to be a git repository fatal: Could not read from remote repository.
Please make sure you have the correct access rights and the repository exists.
关于git - 如何从 Ubuntu16.04 连接到 Windows GIT 存储库?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48137594/
我是一名优秀的程序员,十分优秀!