Feature Branch Workflow
Description
The standard workflow for developing a new feature is to create a dedicated branch. This keeps the 'main' branch clean and allows for code reviews before merging.
Your Task
Create a new branch 'feature/login' from 'main'. On this new branch, add a 'login.js' file and commit it. Finally, switch back to 'main' and merge the feature branch.
Initial Files
# Project
Requirements
- ▹Create the 'feature/login' branch
- ▹Commit a new file on the 'feature/login' branch
- ▹Merge the 'feature/login' branch into 'main'