eddatasci / unrollment_proj

The Unrollment Project: Exploring algorithmic bias in predicting bachelor's degree completion.
5 stars 0 forks source link

Merge init_changes branch into master #3

Closed btskinner closed 4 years ago

btskinner commented 4 years ago

First pull request.

Mostly just changes to .gitignore and various README files.

Rather than everyone working on the master branch, I propose that we should work on different branches and merge using pull requests. The master branch should be "production" and only used at the end. This also allows us to assign each other as reviewers.

ozanj commented 4 years ago

um, how do I work on a branch?

ozanj commented 4 years ago

am I supposed to do anything with this pull request?

wdoyle42 commented 4 years ago

@ozanj : to create a branch, from the terminal anywhere in the repo directory on your computer:

git branch <your_branch_name>

Then you can check it out via:

git checkout <your_branch_name>

Go ahead and work on that, then when you're ready for review:

First, switch back to master:

git checkout master

git fetch

git pull

Then you're ready for a pull request:

git request-pull master https://github.com/wdoyle42/

Other team members will then review and approve

I think that's everything, two tutorials:

https://www.atlassian.com/git/tutorials/making-a-pull-request

https://www.atlassian.com/git/tutorials/using-branches