Open lauren-murphy opened 7 years ago
Hi @lauren-murphy could you please remove the .gitignore file? We don't need that in the main repository.
It'll go something like this
$ git rm .gitignore
$ git commit -m "removed .gitignore"
$ git push
(you don't have to type -u origin add-my-info
because when you say -u
the first time you're telling git to always push from this local branch to the remote branch on Github with the same name)
If you need the gitignore in your local copy of the repo, you can just leave it as untracked, or you can commit it to the master
branch locally by doing something like this:
$ git checkout master
$ git add .gitignore
$ git commit -m "adding gitignore"
Done! I think.
updated things