Hey everyone, I am Prathamesh Chavan, an undergraduate student from the department of Computer Science and Engineering, at Indian Institue of Technology, Kharagpur. I applied for Google Summer of Code 2017 and my project "Incremental rewrite of git-submodules" has been selected. This project will be done under the guidance of the mentors: Stefan Beller and Christian Couder. Brief introduction of the Project: Git submodule subcommands are currently implemented by using shell script 'git-submodule.sh'. There are several reasons why we'll prefer not to use the shell script. My project intends to convert the subcommands into C code, thus making them builtins. This will increase Git's portability and hence the efficiency of working with the git-submodule commands. Link to the complete proposal: [1] Before I discuss my future plan, first I would like to thank everyone who was involved in helping me apply to GSoC and reviewing my patches. I would especially like to thank Stefan Beller, Christian Couder and Junio C Hamano for reviewing my patches and helping me get my first patch(microproject) merged. Current status of my patches: 1. t2027: avoid using pipes: This patch has been merged to the master branch and also has been included in the Git v2.13.0 2. Disallow git commands from within unpopulated submodules: This patch was reviewed by Stefan Bellar and since to disallow the git commands in unpopulated submodules required git commands to identify whether the user has entered the command in an unpopulated or uninitialized submodule individually at low level than catching them for a complete group of builtin commands. I found the review useful and understood what needs to be done. Also, I wish to work on it, but currently I would like to work on my project first. I have included this issue in my wishlist and will work on this after completing my project. 3. submodule: port subcommand foreach from shell to C I have started implementing the suggestion in the previous reviews and currently I'm adding more test-cases which my patch still fails. Also, still this patch is failing tests 6, 7, 8 and 9 from t7407-submodule-foreach and test 64 from t3600-rm. Link to the patch: [2] Plan for this week: According to my proposal, time till 15th May is allocated as community bonding period and hence I have resumed taking a brief overview of the files: 1. strbuf.h 2. Various API files from Documentation/technical since some functions from these may be used in every future porting. I'm also aiming to read carefully: 1. submodule.h and submodule.c 2. git-submodule.sh 3. builtin/submodule--helper.c since in every submodule subcommand's porting I'll be using the functions from these files and it will also help me avoid code duplication in future. Along with this, I'm also working on porting of the subcommand foreach and wish to complete it before the end of the community bonding period. I'll officially start coding from 16th May, as per my proposed schedule and will be pushing my work on GitHub [3] regularly so that the mentors can monitor the progress of the project. Also, I'll be posting a weekly update on changes made throughout the week and my plan for the next week. Thanks, Prathamesh Chavan [1]: https://public-inbox.org/git/CAME+mvXBuLbbRJu1DAA8o-u6DeZATKypH=W=hPEks3KL5WMX+Q@xxxxxxxxxxxxxx/ [2]: https://public-inbox.org/git/20170422195804.18477-1-pc44800@xxxxxxxxx/T/#u [3]: https://github.com/pratham-pc/git/