|
1013 | 1013 | "type": "int"
|
1014 | 1014 | },
|
1015 | 1015 | "group": "status_list"
|
| 1016 | + }, |
| 1017 | + "git_stash_save_options_init": { |
| 1018 | + "file": "git2/stash.h", |
| 1019 | + "args": [ |
| 1020 | + { |
| 1021 | + "name": "opts", |
| 1022 | + "type": "git_stash_save_options *" |
| 1023 | + }, |
| 1024 | + { |
| 1025 | + "name": "version", |
| 1026 | + "type": "unsigned int" |
| 1027 | + } |
| 1028 | + ], |
| 1029 | + "return": { |
| 1030 | + "type": "int" |
| 1031 | + }, |
| 1032 | + "group": "stash" |
| 1033 | + }, |
| 1034 | + "git_stash_save_with_opts": { |
| 1035 | + "file": "git2/stash.h", |
| 1036 | + "args": [ |
| 1037 | + { |
| 1038 | + "name": "out", |
| 1039 | + "type": "git_oid *" |
| 1040 | + }, |
| 1041 | + { |
| 1042 | + "name": "repo", |
| 1043 | + "type": "git_repository *" |
| 1044 | + }, |
| 1045 | + { |
| 1046 | + "name": "opts", |
| 1047 | + "type": "git_stash_save_options *" |
| 1048 | + } |
| 1049 | + ], |
| 1050 | + "return": { |
| 1051 | + "type": "int" |
| 1052 | + }, |
| 1053 | + "group": "stash" |
| 1054 | + }, |
| 1055 | + "git_tree_get_all_filepaths": { |
| 1056 | + "args": [ |
| 1057 | + { |
| 1058 | + "name": "tree", |
| 1059 | + "type": "git_tree *" |
| 1060 | + }, |
| 1061 | + { |
| 1062 | + "name": "repo", |
| 1063 | + "type": "git_repository *" |
| 1064 | + }, |
| 1065 | + { |
| 1066 | + "name": "out", |
| 1067 | + "type": "std::vector<std::string> *" |
| 1068 | + } |
| 1069 | + ], |
| 1070 | + "type": "function", |
| 1071 | + "isManual": true, |
| 1072 | + "cFile": "generate/templates/manual/tree/get_all_filepaths.cc", |
| 1073 | + "isAsync": true, |
| 1074 | + "isPrototypeMethod": true, |
| 1075 | + "group": "tree", |
| 1076 | + "return": { |
| 1077 | + "type": "int", |
| 1078 | + "isErrorCode": true |
| 1079 | + } |
1016 | 1080 | }
|
1017 | 1081 | },
|
1018 | 1082 | "groups": [
|
|
1214 | 1278 | "git_revwalk_file_history_walk"
|
1215 | 1279 | ]
|
1216 | 1280 | ],
|
| 1281 | + [ |
| 1282 | + "stash", |
| 1283 | + [ |
| 1284 | + "git_stash_save_options_init", |
| 1285 | + "git_stash_save_with_opts" |
| 1286 | + ] |
| 1287 | + ], |
1217 | 1288 | [
|
1218 | 1289 | "status_list",
|
1219 | 1290 | [
|
|
1223 | 1294 | "git_status_list_new"
|
1224 | 1295 | ]
|
1225 | 1296 | ],
|
| 1297 | + [ |
| 1298 | + "tree", |
| 1299 | + [ |
| 1300 | + "git_tree_get_all_filepaths" |
| 1301 | + ] |
| 1302 | + ], |
1226 | 1303 | [
|
1227 | 1304 | "tree_entry",
|
1228 | 1305 | [
|
|
1822 | 1899 | }
|
1823 | 1900 | }
|
1824 | 1901 | ],
|
| 1902 | + [ |
| 1903 | + "git_stash_flags", |
| 1904 | + { |
| 1905 | + "type": "enum", |
| 1906 | + "fields": [ |
| 1907 | + { |
| 1908 | + "type": "unsigned int", |
| 1909 | + "name": "GIT_STASH_DEFAULT", |
| 1910 | + "value": 0 |
| 1911 | + }, |
| 1912 | + { |
| 1913 | + "type": "unsigned int", |
| 1914 | + "name": "GIT_STASH_KEEP_INDEX", |
| 1915 | + "value": 1 |
| 1916 | + }, |
| 1917 | + { |
| 1918 | + "type": "unsigned int", |
| 1919 | + "name": "GIT_STASH_INCLUDE_UNTRACKED", |
| 1920 | + "value": 2 |
| 1921 | + }, |
| 1922 | + { |
| 1923 | + "type": "unsigned int", |
| 1924 | + "name": "GIT_STASH_INCLUDE_IGNORED", |
| 1925 | + "value": 4 |
| 1926 | + }, |
| 1927 | + { |
| 1928 | + "type": "unsigned int", |
| 1929 | + "name": "GIT_STASH_KEEP_ALL", |
| 1930 | + "value": 8 |
| 1931 | + } |
| 1932 | + ] |
| 1933 | + } |
| 1934 | + ], |
| 1935 | + [ |
| 1936 | + "git_stash_save_options", |
| 1937 | + { |
| 1938 | + "type": "struct", |
| 1939 | + "fields": [ |
| 1940 | + { |
| 1941 | + "type": "unsigned int", |
| 1942 | + "name": "version" |
| 1943 | + }, |
| 1944 | + { |
| 1945 | + "type": "const git_signature *", |
| 1946 | + "name": "stasher" |
| 1947 | + }, |
| 1948 | + { |
| 1949 | + "type": "const char *", |
| 1950 | + "name": "message" |
| 1951 | + }, |
| 1952 | + { |
| 1953 | + "type": "uint32_t", |
| 1954 | + "name": "flags" |
| 1955 | + }, |
| 1956 | + { |
| 1957 | + "type": "git_strarray", |
| 1958 | + "name": "paths" |
| 1959 | + } |
| 1960 | + ], |
| 1961 | + "used": { |
| 1962 | + "needs": [ |
| 1963 | + "git_stash_save_with_opts", |
| 1964 | + "git_stash_save_options_init" |
| 1965 | + ] |
| 1966 | + } |
| 1967 | + } |
| 1968 | + ], |
1825 | 1969 | [
|
1826 | 1970 | "git_status_options",
|
1827 | 1971 | {
|
|
0 commit comments