I am tracking my project on git repo. I've added a python file using the commands below to the git repo:
git init
git add --all
git commit -m "Initial Commit"
git remote add origin
git push -u origin master
Now I want to add a second file type i.e. text file to the repo however, my Updates were rejected because the tip of your current branch is behind. How can I add a second file type to the same repo? Do I need to use branches?