@@ -815,8 +815,11 @@ pub fn fetch(
815
815
}
816
816
817
817
GitReference :: Rev ( rev) => {
818
+ let is_github = || Url :: parse ( url) . map_or ( false , |url| is_github ( & url) ) ;
818
819
if rev. starts_with ( "refs/" ) {
819
820
refspecs. push ( format ! ( "+{0}:{0}" , rev) ) ;
821
+ } else if is_github ( ) && is_long_hash ( rev) {
822
+ refspecs. push ( format ! ( "+{0}:refs/commit/{0}" , rev) ) ;
820
823
} else {
821
824
// We don't know what the rev will point to. To handle this
822
825
// situation we fetch all branches and tags, and then we pray
@@ -1036,7 +1039,7 @@ fn github_up_to_date(
1036
1039
config : & Config ,
1037
1040
) -> CargoResult < bool > {
1038
1041
let url = Url :: parse ( url) ?;
1039
- if url . host_str ( ) != Some ( "github.com" ) {
1042
+ if ! is_github ( & url ) {
1040
1043
return Ok ( false ) ;
1041
1044
}
1042
1045
@@ -1047,6 +1050,8 @@ fn github_up_to_date(
1047
1050
GitReference :: Rev ( rev) => {
1048
1051
if rev. starts_with ( "refs/" ) {
1049
1052
rev
1053
+ } else if is_long_hash ( rev) {
1054
+ return Ok ( reference. resolve ( repo) . is_ok ( ) ) ;
1050
1055
} else {
1051
1056
debug ! ( "can't use github fast path with `rev = \" {}\" `" , rev) ;
1052
1057
return Ok ( false ) ;
@@ -1089,3 +1094,11 @@ fn github_up_to_date(
1089
1094
handle. perform ( ) ?;
1090
1095
Ok ( handle. response_code ( ) ? == 304 )
1091
1096
}
1097
+
1098
+ fn is_github ( url : & Url ) -> bool {
1099
+ url. host_str ( ) == Some ( "github.com" )
1100
+ }
1101
+
1102
+ fn is_long_hash ( rev : & str ) -> bool {
1103
+ rev. len ( ) == 40 && rev. chars ( ) . all ( |ch| ch. is_ascii_hexdigit ( ) )
1104
+ }
0 commit comments