Skip to content

Latest commit

 

History

History
60 lines (36 loc) · 1.19 KB

CONTRIBUTING.md

File metadata and controls

60 lines (36 loc) · 1.19 KB

Contributing Guidelines📝

You are welcome to contribute in this project.

To start contributing, follow the below guidelines:

1. Fork this repository. you can also star it additionally

2. Clone your forked copy of the project.

git clone https://github.com/<your_user_name>/Creative-CSS-Effects.git

3. Set remote to the forked repo.

git remote set-url add https://github.com/<your_user_name>/Creative-CSS-Effects.git

4. Check the remotes for this repository.

git remote -v

5. Always pull from the upstream repository to your master branch.

git pull upstream main

6. Create a new branch.

git checkout -b <your_branch_name>

7. Perfom your desired changes to the code base.

8. Commit your changes .

git commit -m "Relevant message"

9. Push the committed changes in your feature branch of your remote repo.

git push -u origin <your_branch_name>

10. Click on Create Pull Request. It would be better to provide a little description or SCREENSHOT of your work.

Wait for your submission to be accepted and your PR to be merged.