示例#1
0
文件: Git.php 项目: sq3hll/github_Api
 public static function forkRepository($fork_url, $token)
 {
     $headers[] = sprintf('Authorization: token %s', $token);
     CurlComunication::simplePost($fork_url, $headers);
     return true;
 }