diff --git a/workshop/01-creating-a-repository/README.md b/workshop/01-creating-a-repository/README.md new file mode 100644 index 0000000..4e34df0 --- /dev/null +++ b/workshop/01-creating-a-repository/README.md @@ -0,0 +1,20 @@ +# Creating a repository (one person) + +3. Pick a teammate in your group to create a repository in Github. Make sure it has: + + - an appropriate name + - a description + - public access + - a .gitignore (pretend this will be a Python project and choose Python) + - a README + - a LICENSE (MIT is good for now) + +![Create a repo](images/create_repo.jpg) + +![Choose repo properties](images/repo_properties.jpg) + +![Choose a license](images/license.jpg) + +4. Now the new repository owner should add the rest of your teammates as collaborators on the repository. Go to the repository settings and add them by Github username. This will email everyone an invitation to collaborate - accept it. + +![Add collaborators](images/collaborators.jpg) diff --git a/screenshots/collaborators.jpg b/workshop/01-creating-a-repository/images/collaborators.jpg similarity index 100% rename from screenshots/collaborators.jpg rename to workshop/01-creating-a-repository/images/collaborators.jpg diff --git a/screenshots/create_repo.jpg b/workshop/01-creating-a-repository/images/create_repo.jpg similarity index 100% rename from screenshots/create_repo.jpg rename to workshop/01-creating-a-repository/images/create_repo.jpg diff --git a/screenshots/license.jpg b/workshop/01-creating-a-repository/images/license.jpg similarity index 100% rename from screenshots/license.jpg rename to workshop/01-creating-a-repository/images/license.jpg diff --git a/screenshots/repo_properties.jpg b/workshop/01-creating-a-repository/images/repo_properties.jpg similarity index 100% rename from screenshots/repo_properties.jpg rename to workshop/01-creating-a-repository/images/repo_properties.jpg