Create a branch
Create a parallel branch
git checkout -b featureReplace the contents and commit
echo "some content from feature" > code.txtNotice single > operator A >> would have added this new content to the next line, which would not result in any conflict later!
cat code.txtgit commit -am "modification in feature"Last updated