Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Take a Stroll in the Bazaar

Take a Stroll in the Bazaar

How to Turn a Pile of Python Files Into an Open Source Project.

You have written some Python code, you think it would be useful to the world, and you would like to give back to the open source world. But where do you start? This talk will give you some guidance on how you can release your project.

Myles Braithwaite

November 08, 2015
Tweet

More Decks by Myles Braithwaite

Other Decks in Programming

Transcript

  1. Take a Stroll in the Bazaar How to Turn a

    Pile of Python Files Into an Open Source Project.
  2. 1

  3. Reattach Your Head 1. Create a temporary branch: git branch

    temp. 2. Switch to the temporary branch: git checkout temp. 3. Force the master branch to the temporary branch: git branch -f master temp. 4. Now delete the temporary branch: git branch -d temp. 5. Push your changes to the remote repository: git
  4. 2

  5. 3

  6. 4

  7. 5

  8. 6

  9. 7

  10. 8

  11. 9

  12. 10