[GSoC] Choosing a Project Proposal

2014-03-19 Thread Brian Bourn
Hi all, I'm Currently trying to decide on a project to work on in for Google Summer of Code, I'm stuck choosing between three which I find really interesting and I was wondering if any of them are particularly more pressing then the others. I would also love some comments on each of these three

Re: git 1.9.1 tarball

2014-03-19 Thread Jason St. John
On Wed, Mar 19, 2014 at 8:09 PM, 乙酸鋰 ch3co...@gmail.com wrote: Hi, Where to find git 1.9.1 tarball? It is not uploaded to google code. -- You can download a tarball for 1.9.1 from GitHub: https://github.com/git/git/archive/v1.9.1.tar.gz Jason -- To unsubscribe from this list: send the line

[PATCH v3 2/2] log: add --show-linear-break to help see non-linear history

2014-03-19 Thread Nguyễn Thái Ngọc Duy
Option explanation is in rev-list-options.txt. The interaction with -z is left undecided. Signed-off-by: Nguyễn Thái Ngọc Duy pclo...@gmail.com --- * Revert back to the old option name --show-linear-break * Get rid of saved_linear, use another flag in struct object instead * Fix not showing

[PATCH v3 1/2] object.h: centralize object flag allocation

2014-03-19 Thread Nguyễn Thái Ngọc Duy
While the field flags is mainly used by the revision walker, it is also used in many other places. Centralize the whole flag allocation to one place for a better overview (and easier to move flags if we have too). Signed-off-by: Nguyễn Thái Ngọc Duy pclo...@gmail.com --- The next step could be

[PATCH] Rewritten fsck.c:fsck_commit() through using starts_with() instead of memcmp()

2014-03-19 Thread blacksimit
Hi, I've done a microproject, number 15, Rewrite fsck.c:fsck_commit() to use starts_with() and/or skip_prefix(). I used only starts_with(). memcmp() returns 0 when both are equal, therefore when replacing with starts_with() , I used ! or deleted where appropriate. I plan to apply for the GSoC

<    1   2