how to create a sub branch to avoid working from the master branch

hello OPENMRS…i am trying to work on my ticket and i realize that i have to create a sub branch to avoid working on the master branch…i tried to create one but here i got confused don’t know what to do next. i kindly seek for your assistance.

@janie you are on the right track only that the branch should read TRUNK-324 and not trank-324 besides, I would discourage you from using git add . because it will add all modified and new (untracked) files in the current directory and all subdirectories to the staging area which may included the changes you didn’t make hence conflicting with the ticket requirement.kindly, instead use git add <file>

@jwnasambu thanks so much…point noted…