From 0cbeea95e447b6a6d87081139685e71a7a2b1889 Mon Sep 17 00:00:00 2001 From: GurshehzadSingh <65964948+GurshehzadSingh@users.noreply.github.com> Date: Thu, 1 Oct 2020 23:57:53 +0530 Subject: [PATCH] Updated CONTRIBUTING.md Added comments for add, commit and push git commands, --- CONTRIBUTING.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 723092e..c2884f8 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -14,13 +14,19 @@ Make your changes - Add any new useful links to resources with respect to pentesting and vulnerable testintg environments - Add your name to the CONTRIBUTORS.md file -Commit and push +Commit and push git add . + //It is used to stage the changed file. + git commit -m 'Commit message' + + //It is used to commit the file with a short message. git push origin branch-name + + //It is used to push the file into the local repository. Create a new pull request from your forked repository (Click the New Pull Request button located at the top of your repo)