Revision 05ed24dc51700bc3a08d0778b7c5c7c342be8caf authored by Junio C Hamano on 29 July 2019, 19:38:20 UTC, committed by Junio C Hamano on 29 July 2019, 19:38:20 UTC
"git stash show 23" used to work, but no more after getting
rewritten in C; this regression has been corrected.

* tg/stash-ref-by-index-fix:
  stash: fix show referencing stash index
2 parent s 649cae6 + 63b50c8
Raw File
alias.h
#ifndef ALIAS_H
#define ALIAS_H

struct string_list;

char *alias_lookup(const char *alias);
int split_cmdline(char *cmdline, const char ***argv);
/* Takes a negative value returned by split_cmdline */
const char *split_cmdline_strerror(int cmdline_errno);
void list_aliases(struct string_list *list);

#endif
back to top