From 81978dd78b5c85ba06f2ab52c8b6d6546dd08273 2012-03-12 23:25:56 From: smithj1 Date: 2012-03-12 23:25:56 Subject: [PATCH] Added "work_flow.txt" which has a summary of how to interact with IPython github code. --- diff --git a/work_flow.txt b/work_flow.txt new file mode 100644 index 0000000..44a24d9 --- /dev/null +++ b/work_flow.txt @@ -0,0 +1,22 @@ +IPython Development Workflow + +# Get a read only copy of the "master" +git clone git://github.com/ipython/nbconvert.git + +# Add a copy of the master to your github account +git remote add ocefpaf git@github.com:ocefpaf/nbconvert.git + +# Start a new branch to work on +git checkout -b your_new_branch + +# Push updates to your local branch to your github branch +git push --set-upstream ocefpaf math_test:math_test + +( merging your updated github branch into the master is done via pull-request on the website) + +# Delete local branch +git branch -d math_test + +# Delete remote branch +git push ocefpaf :math_test +