https://github.com/ruun/portfolio
This is my personal portfolio. You can get access to it through isruan.com
https://github.com/ruun/portfolio
css3 html-css-javascript html5 javascript portfolio portfolio-project portfolio-website portfolios web webdeveloper website
Last synced: 6 months ago
JSON representation
This is my personal portfolio. You can get access to it through isruan.com
- Host: GitHub
- URL: https://github.com/ruun/portfolio
- Owner: Ruun
- Created: 2022-04-02T17:21:19.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-06-09T19:04:31.000Z (11 months ago)
- Last Synced: 2024-06-09T20:47:25.846Z (11 months ago)
- Topics: css3, html-css-javascript, html5, javascript, portfolio, portfolio-project, portfolio-website, portfolios, web, webdeveloper, website
- Language: HTML
- Homepage: http://isruan.com/
- Size: 2.44 MB
- Stars: 4
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Portfolio Website - v2.0
RuanFork repo
--
Fork this repository by clicking on the fork button on the top of this page. This will create a copy of this repository in your account.Clone the repository
--
Now clone the forked repository to your machine. Go to your GitHub account, open the forked repository, click on the code button and then click the copy to clipboard icon.
```bash
git clone "url you just copied"
```
Create a branch
--
Now create a branch using the `git switch` command:```bash
git switch -c your-new-branch-name
```
Make your changes.
--
Add those changes to the branch you just created using the `git add` command:```bash
git add "file changed"
```Now commit those changes using the `git commit` command:
```bash
git commit -m "I modified this..."
```Push your changes to GitHub
--Push your changes using the command `git push`:
```bash
git push -u origin your-branch-name
```thanks...