Show More
@@ -0,0 +1,22 b'' | |||||
|
1 | IPython Development Workflow | |||
|
2 | ||||
|
3 | # Get a read only copy of the "master" | |||
|
4 | git clone git://github.com/ipython/nbconvert.git | |||
|
5 | ||||
|
6 | # Add a copy of the master to your github account | |||
|
7 | git remote add ocefpaf git@github.com:ocefpaf/nbconvert.git | |||
|
8 | ||||
|
9 | # Start a new branch to work on | |||
|
10 | git checkout -b your_new_branch | |||
|
11 | ||||
|
12 | # Push updates to your local branch to your github branch | |||
|
13 | git push --set-upstream ocefpaf math_test:math_test | |||
|
14 | ||||
|
15 | ( merging your updated github branch into the master is done via pull-request on the website) | |||
|
16 | ||||
|
17 | # Delete local branch | |||
|
18 | git branch -d math_test | |||
|
19 | ||||
|
20 | # Delete remote branch | |||
|
21 | git push ocefpaf :math_test | |||
|
22 |
General Comments 0
You need to be logged in to leave comments.
Login now