Hi, Shubham. Welcome to the community! On Wed, Mar 11, 2020 at 3:06 PM Shubham Verma <shubhunic@xxxxxxxxx> wrote: > > Subject: [GSOC] [PATCH] replace test -f with test_path_is_file It's common to prefix the patch title with "area: ", where "area" corresponds to the codebase section which the patch is modifying. This makes it easier to understand the scope of the change. You can check what others have been using for this specific file with `git log --no-merges t/t9801-git-p4-branch.sh`. In this case, I think a better alternative would be: "t9801: replace test -f with test_path_is_file" > Although `test -f` has the same functionality as test_path_is_file(), in the case where test_path_is_file() fails, we get much better > debugging information. > > Replace `test -f` with test_path_is_file() so that future developers will have a better experience debugging these test cases. It's also a good practice to wrap the commit body in 72 columns. This will, for example, help viewing the message in most terminals. And, please, add your Signed-off-by[1] in the footer of the message. [1]: https://github.com/git/git/blob/master/Documentation/SubmittingPatches#L299 > --- > t/t9801-git-p4-branch.sh | 38 +++++++++++++++++++------------------- > 1 file changed, 19 insertions(+), 19 deletions(-) As for the changes, LGTM :)