Learn and celebrate your skills with Tinktober CSS for this Hacktoberfest2021
The Purpose of this repo is to let beginners get familiarised with git, github and the concept of commits and pull requests (via the incentive of hacktoberfest). Learn how CSS combines with HTML in website, and get quick code snippets to build your special sites!
Hurry up and learn how to contribute with quality by watching out for rules and guideline at Hacktoberfest-resources. Read through contributors.md to get your changed merged with us. Feel free to suggest and commit amazing ideas. Make sure you register at Hacktoberfest to count your contributions to the fest!
Why wait? Lets get hacking! Learn why and how to use git at its official documentation
Download and install git on your machine to get started
Fork this repository by clicking on the fork button on the top right corner of this page. This will create a copy of this repository in your account.
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.
Open a terminal and run the following git command:
git clone "url you just copied"
where "url you just copied" (without the quotation marks) is the url to this repository (your fork of this project). See the previous steps to obtain the url.
For example:
https://github.com/this-is-you/css-components.git
where this-is-you
is your GitHub username. Here you're copying the contents of this repository on GitHub to your computer.
Branches provide better Version control and software management to maintain stability while isolated changes are made to code.
Create and checkout to your branch using the git checkout
command:
git checkout -b <your-new-branch-name>
Its time to keep track your changes. Stage all modified files and commit/version them by the following commands:
git add *
git commit -m "<commit message>"
Change the <commit message>
to show what you have done.
At times repository at GitHub might get updated while you work. Always get the latest works by pulling the repo using the command
git pull
Lets publish our changes to GitHub by using git push
command
git push
Now its time to make your contributions
For contributing view contributors.md