An open API service indexing awesome lists of open source software.

https://github.com/brendanzab/git-workshop-playground

A playground for teaching git
https://github.com/brendanzab/git-workshop-playground

Last synced: 11 days ago
JSON representation

A playground for teaching git

Awesome Lists containing this project

README

          

# git-workshop-playground

Press the fork button:

![fork button screenshot](images/fork-screenshot.png)

Copy the SSH clone url (you'll need to click the SSH link before copying):

![clone url screenshot](images/clone-url-screenshot.png)

In your terminal/command line, run:

```sh
git clone URL # Where `URL` is the link you just copied
cd git-workshop-playground
```

Make a new branch:

```
git checkout -b add-my-page
```

Create your own html file:

```
subl people/USERNAME.html
```

You can see some examples already in [the people directory](https://github.com/bjz/git-workshop-playground/blob/master/people)

Now stage your changes in the working directory, and commit:

```
git add people/USERNAME.html
git commit -m "Add personal page"
```

Push to a new branch on your repository:

```
git push -u origin add-my-page
```

Now make a new pull request to the main repository. There should be a handy link on [bjz/git-workshop-playground](https://github.com/bjz/git-workshop-playground):

![create pull request](images/create-pull-request.png)