Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
update contributing guide #198
update contributing guide #198
Changes from 53 commits
265b4cc
be6e379
e63ad21
a5d36bf
12fa0b6
a00536b
e68ccfc
5ecc8cc
a0e873b
9672994
f33b559
8cbe550
ad4d5e7
3c127b5
0344360
fb35931
849d55a
df263d9
05ba9bf
680027e
8004c0a
33372fd
26dd16b
b762094
55f6218
b9fd3f0
393b882
ddfed69
15008f4
7753105
07c3494
da1ba91
f29c8e1
1fb8f46
fc27bb4
91611d9
d748877
2ee3fde
ec9b078
48c33e8
5da9ab1
b94951a
de71113
fe98584
14b6a1e
058a738
0109eb5
7e2be08
a6d5a4b
17d1a24
d3e11fe
ce30a41
7d47df5
47bed51
7430340
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what's your opinion of using:
git add -u .
for adding any updated file?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
My only thought is that sometimes there are files that we don't want people to commit. For example, I often test things in a juypter notebook but I would never want to commit that. I think it is better to have people do
git status
and then selectively choose the correct files.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
are the notebook are part of the repo?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I agree it's a bad idea to tell people to use
git add .
(though I wasn't aware of-u
, that's a handy flag, and avoids many of the potential problems). but I agree with Caitlin that we want people to be selective in what they add