【转】直接在 url 中携带就好,与 ssh 远程登录形似。

git clone http[s]://username:password@git.coding.net/git/repo.git

tip:⚠️ url 中的用户不能为邮箱地址(因为邮箱地址中带有 @ 特殊符号)。当然作为程序员,没有什么不可能,可以将邮箱地址进行url转码后再提交。

<?php
$userame='jasonli@seasidecrab.com';
echo urlencode($userame);
?>