diff options
author | Frank Ch. Eigler <fche@elastic.org> | 2009-09-08 10:07:09 -0400 |
---|---|---|
committer | Frank Ch. Eigler <fche@elastic.org> | 2009-09-08 10:07:09 -0400 |
commit | ca4c620d0df97673c38244daeecac38f8f39eb53 (patch) | |
tree | a2a266a1dad86c4e30695edba3134bdf3593d67f | |
parent | 2f9d2c3bc2ee9e3cead769fa445b224484b28bac (diff) | |
download | systemtap-steved-ca4c620d0df97673c38244daeecac38f8f39eb53.tar.gz systemtap-steved-ca4c620d0df97673c38244daeecac38f8f39eb53.tar.xz systemtap-steved-ca4c620d0df97673c38244daeecac38f8f39eb53.zip |
HACKING: add brief git usage blurb
-rw-r--r-- | HACKING | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -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 + |