I'm new to Git and am trying to understand the basic workflow when working with other developers.
We have a remote development branch that the developers push to.
Fresh pull of
developmentremote branch to get new updates...git pull origin developmentDo a bunch of work in my
developmentlocal branchAdd and commit new work that I just did
git add . git commit -m "completed x"Push changes to the
developmentremote branchgit push origin development
I'm wondering if there is a much more optimized and better way of doing this? Note that I'm only working with one or two other developers.