
“Yeah, I am at the new branch of the work tree,” I confirmed to myself. to confirm that I am working on the new branch To make sure that I am not in the development branch anymore, I hit again. switches branches of work tree, creates a new working tree branch, and is the new branch name. “Let’s go with fix/this-feature” I decided.

“Something verbose, straight to the point,” pointed out a thought with the voice of my team lead. “What will be the name of the new branch?” started my thoughts again. That requires me to change my HEAD work tree from development to the newly created work tree branch. This time, I need to fix a bug, so I need to create a new branch and perform those changes on that new branch. After Git Commands Routineįrom this point forwards, my git commands vary from what I need to do in the day. Development refers to the name of the work tree branch that the systems looks up to make updates. Origin refers to repository of origin, in this case, the remote repository. The command refers to the branch that the system will look up to make the update.

The command fetches the development branch content on the remote repository and merges the remote branch content with local branch content.

Command updates content from remote development branch to local development branch
