Create a branch

Create a parallel branch

git checkout -b feature

Replace the contents and commit

echo "some content from feature" > code.txt
cat code.txt
git commit -am "modification in feature"

Last updated