Github使用github API提交特定文件的历史记录

时间:2018-11-19 22:15:15

标签: api github github-api

我正在寻找以下github链接的等效api调用:

https://github.com/Neoo1984/WEB-NEW/commits/d2542fce6c9c3ae35ba316636812c9d0d7ad9473/0-index-WEB.html

基本上我想以这种格式查询API:

$tags = get_the_tags();  
if( current_user_can('author') || current_user_can('editor') || current_user_can('administrator') ){  
    if ($tags > 0){  

    foreach ($tags as $tag){  
        $list_tag .= "{$tag->name}, ";  
}
        $tag_edit = '
        <form method="POST">
        <textarea class="textarea_post_tag" name="post_get_tags" id="RRR">
        '.$list_tag.'
        </textarea>
        <input type="submit" value="Upgrade">
        </form>
        ';   
    echo $tag_edit  ;
}}

if ($_POST['post_get_tags']){    
    wp_set_post_tags( $post->ID, $_POST['post_get_tags']  );  
}

而且我希望至少获得与该文件关联的所有sha哈希(在实际调用中提到的sha之前)。我想针对每个版本自动查找内容。

感谢您的帮助。

0 个答案:

没有答案