we have frontend and backend folder in our master branch in github , i need to get latest changes from only backend folder and rebase with my feature branch, what to do?
git checkout master
git pull origin master
git checkout new-section
git rebase master
git pull --rebase origin new-section
if any push you need to do means, do , or resolve merge conflicts
this is what i’m doing in my daily routine,
when i rebase , all commits from master will apply to my branch front end too, so what to do?
New contributor
Pavithra selvam is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.