about summary refs log tree commit diff
path: root/CONTRIBUTING.md
AgeCommit message (Collapse)AuthorLines
2020-04-02Address reviewsOliver Scherer-7/+8
2020-04-02Address review commentsOliver Scherer-6/+12
2020-04-01Triple backticksOliver Scherer-2/+8
2020-04-01Explain that you have to specify path and repository during subrepo ↵Oliver Scherer-8/+16
synchronizations
2020-04-01Git subtree is upstream, no need to installOliver Scherer-5/+1
2020-04-01s/subrepo/subtree/Oliver Scherer-16/+16
2020-04-01Explain how to work with subreposOliver Scherer-2/+47
2020-03-12Rollup merge of #69747 - spastorino:rename-rustc-guide, r=pietroalbiniMazdak Farrokhzad-10/+10
Rename rustc guide This is in preparation for https://github.com/rust-lang/rustc-guide/issues/470 Needs to be merged after we actually rename the guide. Have used this to rename: `git grep -l 'rustc_guide' | xargs sed -i 's/rustc_guide/rustc_dev_guide/g'` `git grep -l 'rustc-guide' | xargs sed -i 's/rustc-guide/rustc-dev-guide/g'` `git grep -l 'rustc guide' | xargs sed -i 's/rustc guide/rustc dev guide/g'`
2020-03-10rust-lang.github.io/rustc-dev-guide -> rustc-dev-guide.rust-lang.orgSantiago Pastorino-5/+5
2020-03-10Rename rustc guide to rustc dev guideSantiago Pastorino-2/+2
2020-03-10Rename rustc-guide to rustc-dev-guideSantiago Pastorino-9/+9
2020-03-09update x.py tidy testing commandChris Simpkins-1/+1
2020-01-30[docs] remind bug reporters to update nightlyJacob Rothstein-0/+3
2019-12-26Remove redundant link textsMatthew Kraai-2/+2
2019-11-28Update CONTRIBUTING.mdDylan DPC-1/+1
2019-11-28Update CONTRIBUTING.mdDylan DPC-1/+1
2019-11-27Clarifies how to tag users for assigning PRsMark Lodato-3/+3
2019-11-07Update link on CONTRIBUTING.mdYuki Okushi-1/+1
2019-10-23Rollup merge of #65007 - BO41:keywords, r=nikomatsakisYuki Okushi-0/+8
Mention keyword closing policy closes #59233 / https://github.com/rust-lang/rust/issues/59233#issuecomment-478362693 rewording suggestions welcome > Also in the referenced issue, the commit number of the new commit > that could close that issue is not really informative. The PR number itself appeared in the issue > is more informative and concise. @lzutao what do you mean with that? Is this fixed by the new "May be fixed by #XXXXX"?
2019-10-18Apply suggested wordingBO41-2/+4
to better describe the situation
2019-10-02Fix typoBO41-1/+1
2019-10-02Mention keyword closing policyBO41-0/+6
2019-10-02Replace mentions of IRC with DiscordBO41-4/+3
2019-07-09Update cargo-vendor usageEric Huss-8/+1
2019-03-31Rollup merge of #59234 - stepnivlk:add-no_merge_policy, r=oli-obkMazdak Farrokhzad-0/+7
Mention `no merge policy` in the CONTRIBUTING guide Issue: https://github.com/rust-lang/rust/issues/59233
2019-03-16Mention `no merge policy` in the CONTRIBUTING guidestepnivlk-0/+7
2019-03-14Fix capitalisation problemvarkor-1/+2
2019-03-14Move rollup description earliervarkor-12/+11
2019-03-14Make all references to @bors or users linksvarkor-8/+9
2019-03-14Update r+ syntaxvarkor-2/+2
2019-03-14Add links to @rust-highfive and @borsvarkor-2/+4
2019-03-14Add a link to the Discord and Zulip serversvarkor-1/+3
2019-03-14Remove trailing newlinesvarkor-2/+2
2019-03-14Fix a broken link to the rustc-guidevarkor-0/+1
2019-02-21Fix more nursery links in CONTRIBUTING.mdPhilipp Hansch-8/+8
2019-02-21Update miri linksPhilipp Hansch-1/+1
Miri has been moved to `rust-lang` a couple of days ago.
2019-01-15make the contribution doc reference the guide more; deduplicationmark-229/+21
2018-12-09Fix security link in CONTRIBUTING to its new placeJens Hausdorf-1/+1
avoiding an 404
2018-11-26rustc-guide has movedMark Mansi-2/+2
2018-11-22Move Cargo.{toml,lock} to the repository root directory.Eduard-Mihai Burtescu-6/+1
2018-10-15Update rustc documentation linkDo Duy-1/+1
2018-10-02Fix typo in CONTRIBUTING.mdjacob-1/+1
I noticed a small typo while reading over this document.
2018-09-12COMPILER_TESTS.md has been movedKazuyoshi Kato-3/+2
The document is now hosted at rust-lang-nursery.github.io.
2018-08-28Also link Clippy repo in the CONTRIBUTING.md filePhilipp Krones-1/+2
2018-06-14Minor language change to CONTRIBUTING.mdccesare-1/+1
In the `#building` section, the doc read that a default configuration "shall use around 3.5 GB of disk space." Changed "shall use" to "requires," as I don't think it's meant to sound so prescriptive.
2018-06-08Fix spelling error in CONTRIBUTING.mdLukas Bergdoll-1/+1
2018-04-21typofixNiv Kaminer-1/+1
2018-04-21encourage descriptive issue titlesNiv Kaminer-0/+6
2018-04-18Added build disk usage informationKerem-0/+2
Closes https://github.com/rust-lang/rust/issues/50019
2018-04-13rustbuild: allow building tools with debuginfoJosh Stone-0/+1
Debugging information for the extended tools is currently disabled for concerns about the size. This patch adds `--enable-debuginfo-tools` to let one opt into having that debuginfo. This is useful for debugging the tools in distro packages. We always strip debuginfo into separate packages anyway, so the extra size is not a concern in regular use.