hub
is a package that adds additional functionalities to git
workflow that purtain to GitHub specifically.
You can add hub
to an Ubuntu system (16.04 or later) using a snap:
sudo snap install --classic hub
public class Movie implements Comparable<Movie> { | |
private String title; | |
private int year; | |
private ArrayList<Location> locations; | |
private String director; | |
private String writer; | |
private ArrayList<Actor> actors; | |
public Movie(String title, int year) { |
WAVE - check accessibility of an existing web page
Web accessibility techniques - listing of good practices from Universal Design
The text files for different creative commons licenses are located at the repository: https://github.com/creativecommons/legalcode. Download the file that you are planning to use.
Go to your repository, and click Create New File button. Type the name of the file as LICENSE.txt. (Note that you will be given an option of using a license template. This template does not provide an option of adding a creative commons license.)
Paste the content of your chosen license into the body of the file. Add a commit message and commit.
Once you refresh the repository view, GitHub will correctly recognize the license.
Links to slides, tutorials, etc.:
Short walk through usage examples:
Git is the key tool we use to allow multiple people to work on the same code base. Git takes care of merging everyone's contributions smoothly. Hence, learning how to use Git is critical to contributing to open source.
Exercise 1: Go through the Try Git Guide
Exercise 2: Learn How to file a github issue.