3-way Merge
git switch -C feature/change-password
echo hello > change-password.txt
git add .
git commit -m "Build change password form"
git log --oneline --all --graph
git switch master
code objectives.txt
git add .
git commit -m "Updated objectives.txt"
git merge feature/change-password
git log --oneline --all --graph