Create master
Let us create a repo with initial content in the master and commit the same
git init
echo "some content" >> code.txt
git add .
git commit -m "initial"
Last updated 1 year ago