From ca4c620d0df97673c38244daeecac38f8f39eb53 Mon Sep 17 00:00:00 2001 From: "Frank Ch. Eigler" Date: Tue, 8 Sep 2009 10:07:09 -0400 Subject: HACKING: add brief git usage blurb --- HACKING | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/HACKING b/HACKING index 5a1b86bf..24986a9e 100644 --- a/HACKING +++ b/HACKING @@ -118,3 +118,15 @@ the 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 + -- cgit