Note:-This repo is not included in the Hacktoberfest event, as it is for practice only
🎧 visit the spotify playlist of all the favourite songs of our contributors here
Got any favorite songs you listen to on loop while coding add them to our spotify coding playlist by following the instructions given below.
⭐ What Is Hacktoberfest?
Hosted by DigitalOcean for the 8th year in a row, Hacktoberfest encourages participation in giving back to the open source community by completing pull requests, participating in events, and donating to open source projects.
Repo for you to raise a Pull Request for practice.
Before adding Please check if the song already exists in songs.md
Or here in the spotify playlist
If not Just add your favorite songs to songs.md
file and I will add them to the coding playlist in spotify.
Already got a playlist you made and love to hear while coding add them to playlists.md
file
- Fork this project
- Clone your forked version
git clone git@github.com:<YOUR-USERNAME>/hacktoberfest-practice.git
- Make changes
- Commit your changes (write a short descriptive message of what you have done)
- Push your changes to your forked version
- Go to original project on GitHub & Create a Pull Request
- Fork this repository
- Clone your forked copy of the project.
git clone https://github.com/<your username>/hacktoberfest-practice-add-yourself.git
- Change the working directory
cd hacktoberfest-practice-music-playlists
- Add a reference to the original repository.
git remote add upstream https://github.com/bhargav794/hacktoberfest-practice-music-playlists.git
- Check the remotes for this repository.
git remote -v
- Always take a pull from the upstream repository to your main branch to keep it at par with the main project(updated repository).
git pull upstream main
- Create a new branch.
git checkout -b <your_branch_name>
- Open your favorite code editor and
To add songs use the following syntax
[song name](spotify link of the song) by Artist name
replace song name with name of the song you are adding, spotify link with the spotify link of the song you are adding and Artist name with the name of the artist
To add playlist use the following syntax
[playlist name](spotify link of the playlist)
replace playlist name with name of the playlist you are adding and spotify link with the spotify link of the playlist you are adding
- Track your changes
git add .
- Commit your changes .
git commit -m "Your message"
- Push the committed changes in your feature branch to your remote repo.
git push -u origin <your_branch_name>
-
To create a pull request, click on compare and pull requests. Please ensure you compare your feature branch to the desired branch of the repo you are suppose to make a PR to.
-
Voila 🎉 You have made a PR to the this project. Sit back patiently and relax while the project maintainers review your PR.