• Show log

    Commit

  • Hash : af3088e4
    Author : Patrick Steinhardt
    Date : 2018-06-29T11:45:15

    refspec: rename `git_refspec__free` to `git_refspec__dispose`
    
    Since commit 630a67366 (refspec: add public parsing api, 2018-02-07), we
    now have two functions `git_refspec_free` and `git_refspec__free`. The
    difference is that the first one will free the structure itself, while
    the second one will only free the structure's contents. Use our new
    `dispose` naming pattern for the latter function to help avoid
    confusion.