From: Nguyễn Thái Ngọc Duy Date: Fri, 6 Aug 2010 02:40:35 +0000 (-0500) Subject: git wrapper: introduce startup_info struct X-Git-Tag: v1.7.3-rc0~33^2~13 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/e37c1329fa86683c828f04b51bad8bae03939ced?hp=e37c1329fa86683c828f04b51bad8bae03939ced git wrapper: introduce startup_info struct The startup_info struct will collect information managed by the git setup code, such as the prefix for relative paths passed on the command line (i.e., path to the starting cwd from the toplevel of the work tree) and whether a git repository has been found. In other words, startup_info is intended to be a collection of global variables with results that were previously returned from setup functions. This state is global anyway (since the cwd is), even if it is not currently tracked that way. Letting these values persist means there is more flexibility in deciding when to run setup. For now, the struct is empty. Signed-off-by: Nguyễn Thái Ngọc Duy Signed-off-by: Junio C Hamano Signed-off-by: Jonathan Nieder Signed-off-by: Junio C Hamano ---