summaryrefslogtreecommitdiffstats
path: root/HACKING
diff options
context:
space:
mode:
authorFrank Ch. Eigler <fche@elastic.org>2009-09-08 10:07:09 -0400
committerFrank Ch. Eigler <fche@elastic.org>2009-09-08 10:07:09 -0400
commitca4c620d0df97673c38244daeecac38f8f39eb53 (patch)
treea2a266a1dad86c4e30695edba3134bdf3593d67f /HACKING
parent2f9d2c3bc2ee9e3cead769fa445b224484b28bac (diff)
downloadsystemtap-steved-ca4c620d0df97673c38244daeecac38f8f39eb53.tar.gz
systemtap-steved-ca4c620d0df97673c38244daeecac38f8f39eb53.tar.xz
systemtap-steved-ca4c620d0df97673c38244daeecac38f8f39eb53.zip
HACKING: add brief git usage blurb
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
+