You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@netbeans.apache.org by jt...@apache.org on 2016/10/22 14:11:51 UTC

incubator-netbeans-temp git commit: Describing how to push your changes

Repository: incubator-netbeans-temp
Updated Branches:
  refs/heads/master aa126470c -> 9fbda90b2


Describing how to push your changes


Project: http://git-wip-us.apache.org/repos/asf/incubator-netbeans-temp/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-netbeans-temp/commit/9fbda90b
Tree: http://git-wip-us.apache.org/repos/asf/incubator-netbeans-temp/tree/9fbda90b
Diff: http://git-wip-us.apache.org/repos/asf/incubator-netbeans-temp/diff/9fbda90b

Branch: refs/heads/master
Commit: 9fbda90b2430a3a7cedbe7f855eb4cb9398e4513
Parents: aa12647
Author: Jaroslav Tulach <jt...@apache.org>
Authored: Sat Oct 22 16:11:44 2016 +0200
Committer: Jaroslav Tulach <jt...@apache.org>
Committed: Sat Oct 22 16:11:44 2016 +0200

----------------------------------------------------------------------
 README.md | 12 +++++++++++-
 1 file changed, 11 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-netbeans-temp/blob/9fbda90b/README.md
----------------------------------------------------------------------
diff --git a/README.md b/README.md
index 5d3d44b..d2bfd5a 100644
--- a/README.md
+++ b/README.md
@@ -9,9 +9,19 @@ https://s.apache.org/netbeans_please_join
 
 ## 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
 ```