This repository contains the code of a personal portfolio website created by the core team members of GDSC RTU.
Check this project live here - Portfolio Website
Root
|____/css
|____style.css
|____blogDesign.css
|____404.css
|____/images
|____/Favicon
|____/js
|____index.js
|____index.html
|____manifest.json
|____blog1.html
|____404.html
|____LICENSE.md
|____README.md
- In an empty folder, open your git-bash/terminal/powershell/.
- In the terminal type the following command -
git clone https://github.com/GDSC-RTU/personal-portfolio.git
- You must see a folder called "personal-portfolio" on your machine.
- In the terminal type -
cd personal-portfolio
This command will move your control in the "personal-portfolio" project.
- In your terminal write -
git pull
Though this is not required but this would ensure that you have the latest version of code available in your local folder.
-
Code. Code. Code...
-
After you've added all the parts that you wanted to, it's time to push the code on the repository.
-
Add the files by writing -
git add .
- Commit the files by writing -
git commit -m "I'm a sample message"
Note - Add relevant commit messages. For e.g. if you worked on the dark mode, you should write "added dark mode feature".
- Push the code
git push