A friendly introduction to GitHub as part of @OpenDataManchester's Pick N Mix series.
At the heart of GitHub is collaboration. The GitHub flow was developed for collaboration on projects. To make it work for teams regardless of their size or technical expertise, GitHub made sure each step in their workflow can be completed within the web-based interface.
There are two main types of collaborative development models:
Below we’ll cover:
You can invite users to become collaborators to your personal repository, which grants them read/write access to the project (shared repository model).
Issues and pull requests facilitate discussions on GitHub. Issues are useful for discussing specific details of a project such as bug reports and planned improvements. Pull requests allow you to comment directly on proposed changes.
GitHub has created a Community Profile checklist to help make sure your project meets the recommended community standards to help people use and contribute to your project. You can read more About community profiles for public repositories, Starting an Open Source Project and Building Welcoming Communities. You can also take the Community starter kit course in the GitHub Learning Lab to learn about the informal standards the community has adopted to make it easier to find and contribute to projects.
You can find the Community Profile checklist via the Insights
tab and then select Community
in the left sidebar. It checks to see if a project includes recommended community health files, such as
I have listed definitions and resources below to help you get started on these files:
Code
tab.Project boards on GitHub help you organize and prioritize your work. They are made up of issues, pull requests, and notes that are categorized as cards in columns of your choosing. You can create project boards for specific feature work, comprehensive roadmaps, or even release checklists. With project boards, you have the flexibility to create customized workflows that suit your needs.
Every GitHub repository comes equipped with a section for hosting documentation, called a wiki. You can use your repository’s wiki to share long-form content about your project, such as how to use it, how you designed it, or its core principles. A README file quickly tells what your project can do, while you can use a wiki to provide additional documentation.
Previous: Using GitHub Demonstration
Next: More Resources