OHSU ODG GitHub Tutorial

Introduction to GitHub for Creative Collaboration

Welcome to Lesson 1

Getting started

GitHub itself isn’t much more than a social network like Facebook or Instagram. You build a profile, upload projects to share and connect with other users by “following” their accounts. And while many users store programs and code projects, there’s nothing preventing you from keeping text documents or other file types in your project folders to show off. It is capable of storing any file type from text, to structured data, to software. And more features are being added by the day. The real power of Git, however, is less about individuals publishing content (many places can do that, including google docs etc). It is more about that content being easily shared, built upon, and credited in a way that is robust to the realities of distributed collaboration. While the power of GitHub is daunting, you don’t actually have to be a blackbelt to gain a lot of benefit from using it. You don’t even have to know how to code or use the command line.

Privacy reminder

This tutorial is scoped for public data and communications only. If you have any questions about the suitability of these technologies for your particular project, please contact the information technology group. https://o2.ohsu.edu/information-technology-group/contact-us.cfm

Organization

Git supports the following types of primary entities:

The relationships between any combination of these entities is many-to-many, with the nuanced exception of repositories. For our purposes today we will oversimplify by saying that a repositoy belongs either to a single organization or to a single individual.

Markdown

Raw markup syntax As rendered
Emphasis, aka italics, with *asterisks* or _underscores_. Emphasis, aka italics, with asterisks or underscores.
Strong emphasis, aka bold, with **asterisks** or __underscores__. Strong emphasis, aka bold, with asterisks or underscores.
Combined emphasis with **asterisks and _underscores_**. Combined emphasis with asterisks and underscores.
Strikethrough uses two tildes. ~~Scratch this.~~ Strikethrough uses two tildes. Scratch this.

Content

GitHub can store any kind of content, provided it isn’t too big. (And now even this is possible). However, it is more capable for some filetypes than it is for others. Certain filetypes can be viewed ‘natively’ within the GitHub interface. These are:

Issues

The GitHub issue tracker is easy to use, fairly lightweight and capable for a lot of the basic project management one would want to do. This guide is a nice overview: https://guides.github.com/features/issues/

Other more nuanced queries are also possible, but here we will stick to the basics.

Features of an effective ticket:

Tasks

Back to Home