Thank you for collaborating to our coders playlist.
- Don't
pushto master onlypullfrom git - Branch names:
name-of-your-feature - Commit messages: Short description describing your action. Ex:
Adds new song to playlist
IMPORTANT: Please pull before you push
NOTE: If you decide to add a song to the playlist. All you need is edit the App.js file by copying the div that contains the YouTube component. videoId is the set of letters after the YouTube url. Don't forget to add your name.
After pulling down this repository you will land on the master branch
- PULL to make sure you have the most fresh copy. Use
git pull - Create a new branch
git checkout -b name_of_your_branch - Code some cool stuff or simply add a song π
git add .git commit -m "Adds cool song to playlist"git push origin name_of_your_branch- Create a PR (pull request) in GitHub and tag an organizer for code review
- Teammate/organizer will review and merge your code
- Your branch will be deleted once successfully merged into GitHub master
git statusgit loggit branchgit branch -agit checkout -b branch_namegit checkout branch_name
git add .git commit -m "Cool message in present tense"
git pullgit push origin branch_name