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
- Host: GitHub
- URL: https://github.com/brendanzab/git-workshop-playground
- Owner: brendanzab
- Created: 2015-07-25T05:50:40.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-09-09T10:11:15.000Z (over 10 years ago)
- Last Synced: 2025-01-20T00:55:43.167Z (12 months ago)
- Language: HTML
- Homepage:
- Size: 828 KB
- Stars: 0
- Watchers: 3
- Forks: 6
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# git-workshop-playground
Press the fork button:

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

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):
