Re: [PATCH 3/6] Add 'resolve_gitlink_ref()' helper function From: Alex Riesen <hidden> Date: 2016-06-15 22:43:03 On 4/10/07, Linus Torvalds [off-list ref] wrote:+int resolve_gitlink_ref(const char *path, const char *refname, unsigned char *result) +{ + int len = strlen(path), retval; + char *gitdir; + + while (len && path[len-1] == '/') + len--; + if (!len) + return -1; + gitdir = xmalloc(len + MAXREFLEN + 8); + memcpy(gitdir, path, len); + memcpy(gitdir + len, "/.git/", 7); Can't a subproject be bare?
Keyboard shortcuts hback out one level jnext message in thread kprevious message in thread ldrill in Escclose help / fold thread tree ?toggle this help