NESCent / popgenInfo

Vignettes for Population Genetics in R
http://popgen.nescent.org
MIT License
20 stars 50 forks source link

Update documentation for github drag and drop #177

Open zkamvar opened 8 years ago

zkamvar commented 8 years ago

Back in February, GitHub announced that it is now possible to drag and drop files into the repositories:

Blog here: https://github.com/blog/2105-upload-files-to-your-repositories Help page here: https://help.github.com/articles/adding-a-file-to-a-repository/

This could make things easier for contributors as the steps would be:

  1. Update fork
  2. Create new branch
  3. Drag and drop your files + commit on GitHub
  4. Pull request

A few things that might make this confusing:

Despite these setbacks, I think it would be a good idea to include these links and later do a quick video demonstration (~5 minutes).

hlapp commented 8 years ago

Are you sure this contains the details for eb7c52a10a489ced597f541feee39d4cd65a4dea, or did you mean to reference a different issue?

Actually, I notice that the commit references 176, not this one. I'm confused now why it's showing up here.

zkamvar commented 8 years ago

It's coming up here because I accidentally made a commit comment that referenced this issue and then deleted it.

zkamvar commented 8 years ago

It turns out that updating a branch created on github in git2r is really easy :open_mouth::

fetch(repo, "origin")
checkout(repo, "newbranch")

This would be the process used when the user wants to make changes on his/her computer.