summaryrefslogtreecommitdiffstats
path: root/HACKING
diff options
context:
space:
mode:
Diffstat (limited to 'HACKING')
-rw-r--r--HACKING12
1 files changed, 12 insertions, 0 deletions
diff --git a/HACKING b/HACKING
index 5a1b86bf..24986a9e 100644
--- a/HACKING
+++ b/HACKING
@@ -118,3 +118,15 @@ the <systemtap@sources.redhat.com> mailing list.
Proposed changes to these guidelines should be discussed on the
mailing list.
+
+- git basics
+
+ git clone ssh://sources.redhat.com/git/systemtap.git
+ # build ; hack hack hack; test
+ git commit # to your local repository, add nice commit message
+ git pull # to make sure your copy is up to date & merged
+ # last minute rebuild; retest
+ git rebase origin/master # clean git commit of merge history
+ git diff origin/master # final visual check
+ git push # to the central one
+