有没有办法将用户名和密码添加到 bzr checkout 命令中?
Is there a way of adding username and password into the bzr checkout command?
我正在尝试使用 bash 自动执行安装过程,以下 Bazaar 命令是其中的一部分:
bzr export /home/path bzr+https://adress
bzr checkout bzr+https://address/ /home/path
在 运行 手动执行这些命令后,系统提示我输入用户名和密码。
有没有办法直接在命令中添加用户名和密码以避免提示?
查看了 Bazaar 文档,但找不到解决方案。
HTTP URL 的标准格式可用于传递 username/password 组合:
$ bzr checkout bzr+https://username:password@host/path /local/path
另一种选择是将您的凭据添加到 ~/.config/bazaar/authentication.conf
。有关详细信息,请参阅此页面:http://doc.bazaar.canonical.com/beta/en/user-reference/authentication-help.html
我正在尝试使用 bash 自动执行安装过程,以下 Bazaar 命令是其中的一部分:
bzr export /home/path bzr+https://adress
bzr checkout bzr+https://address/ /home/path
在 运行 手动执行这些命令后,系统提示我输入用户名和密码。 有没有办法直接在命令中添加用户名和密码以避免提示?
查看了 Bazaar 文档,但找不到解决方案。
HTTP URL 的标准格式可用于传递 username/password 组合:
$ bzr checkout bzr+https://username:password@host/path /local/path
另一种选择是将您的凭据添加到 ~/.config/bazaar/authentication.conf
。有关详细信息,请参阅此页面:http://doc.bazaar.canonical.com/beta/en/user-reference/authentication-help.html