This respository is specially for newcomers who wants to enhance their knowledge and skills by making small/large projects.Only Css/SAAS/LASS Projects is accepted
If you have a idea of any web projects you want to build just open an appropriate issue regarding this, we will discuss and assign you that issue. In case you are confused and have queries, just ping me, will help you get along and build!
If you want to contribute by creating new templates/animatios then check the type of your project and add it to its respective folder.
Ex: If you develope a game the add it to the Games
folder
Branch naming convention is as following
TYPE-ISSUE_ID-DESCRIPTION
When TYPE
can be:
- feat - is a new project
- doc - documentation only changes
- fix - a bug fix/improving of any project
All PRs must include a commit message with the changes description!
1. Fork the repository by clicking fork symbol at the top right corner.
2. Clone the forked repository.
git clone https://github.com/<your-github-id>/CSS.Effects-Designs.git
3. Navigate to the project directory.
cd CSS.Effects-Designs
4. Create a new branch:
git checkout -b <Add your branch name>
5. Make necessary changes and commit those changes:
Add all the changes to the staging area
git add --a
- Push changes to GitHub
Now commit those changes using the git commit
command:
git commit -m "commit message"
6. Push changes to GitHub:
Push your changes using the command git push
:
git push origin -u <add-your-branch-name>
replacing <add-your-branch-name>
with the name of the branch you created earlier.
7. Submit your changes for review:
If you go to your repository on GitHub, you'll see a Compare & pull request
button. Click on that button.
Now submit the pull request.
Soon I'll be merging all your changes into the master branch of this project. You will get a notification email once the changes have been merged.
Congrats! You just completed the standard fork -> clone -> edit -> pull request workflow that you'll encounter often as a contributor!