This a beginner/intermediate level project for frontend developers. It is also a good place to start if you want to go into Open Source Project.
If you don't have git on your local machine, install it.
Fork this repository by clicking on the fork button on the top 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 <copied-url>
where (without the lesser than and greater than signs <>) is the url to this repository (your fork of this project). See the previous steps to obtain the url.
Change to the forked repository directory on your computer by using:
cd movie-quote-generator
Now create a branch using the git branch
command:
git branch <branch-name>
Then switch to the created branch using the git branch
command:
git checkout <branch-name>
- You can check out issues you want to resolve
- You can also create issue(s) you want to resolve
Add those changes to the branch you just created using the git add
command:
git add <file-name>
Now commit those changes using the git commit
command:
git commit -m "Commit Message"
replacing Commit Message
with your proper commit message.
Push your changes using the command git push
:
git push -u origin <branch-name>
replacing with the name of the branch you created earlier.
To initiate a pull request on GitHub, navigate to your repository and locate the Compare & pull
request button. Simply click on this button to proceed with the pull request process.
Now submit the pull request.
An email will be send to let you know if your request was accepted or rejected.
Thank you for your contributions.