how can two front end developers work on the same project effectivly
I want to work with my friend on the same project and we want to find the way that developers do
3 Replies
Using git and an online repository hosting service like github. Set your main branch to protected, and set up branches for each task. Once you're ready to commit your task changes to the main repository, make a pull request and review it before pushing to main
Unknown User•2y ago
Message Not Public
Sign In & Join Server To View
If you've never used git before i don't know if it's wise to try a multi-branch setup since that can be more difficult to understand. Maybe just push to master for now (Professional teams do this too, it's called trunk based development)