Describing how to push your changes
diff --git a/README.md b/README.md index 5d3d44b..d2bfd5a 100644 --- a/README.md +++ b/README.md
@@ -9,9 +9,19 @@ ## To make a commit -First of all one needs to clone the repository: ``` +# First of all one needs to clone the repository: $ git clone https://git-wip-us.apache.org/repos/asf/incubator-netbeans-temp.git +$ cd incubator-netbeans-temp + +# set your name and email up +$ git config user.name "Joe Hacker" +$ git config user.email "hacker@apache.org" + +# make changes, commit and push +$ git commit -m "Making it better" +$ git push +# user your Apache account name and password ```