-
This project was a part of Codedamn hacktoberfest 2021
-
Simple Landing page UI clone
Contributions and Ideas are always welcome!
-
Fork the Repository(If you like it then you can also star the Repository as it helps to grow)
-
You should be having git installed and your Github username and email setup on your system.
-
Clone the forked Repository.
git clone <Forked_Repository_Link>
-
Go to the local Repository folder and open git bash or terminal.
-
Add upstream url to the local repository.
git remote add upstream <Actual_Repository_Link>
-
Create a new branch (Recommended to name the branch same as your name)
git checkout -b <Your_Branch_Name>
-
Now make the changes which you are assigned or which you think are important and efficient in the Project folder.
-
Check your changes.
git status
-
Add and commit the changes.
git add .
git commit -m <Relevant_Commit_Message>
-
Push changes to the forked remote repository.
git push origin <Your_Branch_Name>
-
Go to Github and then Create pull request to the Actual Repository. Make sure the pull request is made to the main branch of the Actual Repository.
-
ALL DONE!! Now wait for the PR to be reviewed.