Data-Science-for-Scientists-ATL / BEST-contacts

Contact information for BEST students interested in data science
MIT License
0 stars 48 forks source link

Add my info #31

Open lauren-murphy opened 7 years ago

lauren-murphy commented 7 years ago

updated things

NickleDave commented 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"
lauren-murphy commented 7 years ago

Done! I think.