Read in other languages:
- You can use the templates for both personal and commercial use.
- You can not claim the templates. (Applicable to the use)
- Make sure that you own the full code & design yourself.
- By contributing, you are going to give others the permission to use 100% of your code.
To keep the project organized and make it easier to navigate the templates, please don't forget to create a folder within the template with the example image and add the project link and the example link to the template table.
-
Fork this repository.
-
Clone your forked copy of the project.
git clone https://github.com/<your_user_name>/Website-Template.git
-
Navigate to project directory.
cd Website-Template
-
Add reference to original repository (remote).
git remote add upstream https://github.com/Diptenusarkar/Website-Template.git
-
Before making any changes in the repository, always fetch and pull from the upstream repository to keep your branch updated with the parent repository.
git pull upstream main
-
Create a new branch.
git checkout -b <your_branch_name>
-
Create Your template folder, Work on it.
Ex. "School Website"
-
Move your changes to the git staging area.
git add .
-
Commit your changes in staging area.
git commit -m "<relevant message>"
-
Push the committed changes in your local branch to your remote repo's branch.
git push -u origin <your_branch_name>
-
Make a pull request (PR). π