Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/scmorrison/shin-html5
Example projects for Shin who is learning HTML5
https://github.com/scmorrison/shin-html5
Last synced: 4 days ago
JSON representation
Example projects for Shin who is learning HTML5
- Host: GitHub
- URL: https://github.com/scmorrison/shin-html5
- Owner: scmorrison
- Created: 2015-02-12T08:25:00.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-03-12T00:16:31.000Z (almost 10 years ago)
- Last Synced: 2024-11-05T22:03:16.592Z (about 2 months ago)
- Language: HTML
- Size: 539 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Hi Shin (@jonasuke),
I have added all of your sample HTML files to this repository and added you as a collaborator. You can begin by cloning this repo. I think you already have git installed on your laptop, but if not then you can install it using the following command:
```bash
$ sudo apt-get install git
```
Once you have installed ```git``` or confirmed that it is already installed, then configure it because every git commit uses this information and it identifies you as the person creating the commits.
```bash
$ git config --global user.name "Shinsuke Miyamoto"
$ git config --global user.email [email protected]
``````bash
$ git clone https://github.com/scmorrison/shin-html5.git
```This will copy the code to your computer into a directory named ```shin-html5```. You can add all of your new sample HTML files to that directory and then commit / push them to this repository using the following commands:
Add new files to repository
-------------------------------------
```bash
$ git add name-of-file.html
```Commit new files or changes to files
----------------------------------------------------
```bash
$ git commit -a -m"Describe your modifications here"
```Push all of your modifications to github so that we can share the code
---------------------------------------------------------------------------------------------------
```bash
$ git push origin master
```Let me know if you have any questions. Also, you might be interested in this to help you better understand why git (version control) is all about: http://git-scm.com/book/ja/v1