Learning by Contributing to Rust Compiler - 陈于康CHINA CONF 2023 第三届中国 Rust 开发者大会 ## [Table_CompanyName] 6.17-6.18 @Shanghai ## Learning by Contributing to Rust Compiler Yukang github.com/chenyukang Engineer @ Cryptape ## My work experience • 20110 码力 | 23 页 | 3.28 MB | 2 年前3
Django 4.0.x DocumentationFAQ: Getting Help 696 5.5 FAQ: Databases and models 697 5.6 FAQ: The admin 699 5.7 FAQ: Contributing code 701 5.8 Troubleshooting 702 6 API Reference 705 6.1 Applications 705 6.2 System check releases ..... 1643 9.2 Security releases ..... 2064 10 Django internals ..... 2093 10.1 Contributing to Django ..... 2093 10.2 Mailing lists ..... 2144 10.3 Organization of the Django Project bug in Django that you’d like to see fixed, or maybe there’s a small feature you want added. Contributing back to Django itself is the best way to see your own concerns addressed. This may seem daunting0 码力 | 2248 页 | 7.90 MB | 2 年前3
Django CMS 2.1.x DocumentationDjango-CMS ☐ 6.1. Haystack ## Contributing to the CMS • 1. Contributing to Django-CMS o 1.1. Community. o 1.2. In a nutshell 1.3. Contributing Code o 1.4. Contributing Documentation o 1.5. Translations | next | modules | index © Copyright 2009, Patrick Lauber. Created using Sphinx 1.3.5. ### 1. Contributing to Django-CMS Like every open-source project, Django-CMS is always looking for motivated individuals enough for inclusion, “send us a pull request”, by using the nice Github web interface. #### 1.3. Contributing Code ##### 1.3.1. Getting the source code If you’re interested in developing a new feature for0 码力 | 81 页 | 554.09 KB | 1 年前3
websockets Documentation
Release 5.04 Discussions 35 4.1 Design 35 4.2 Limitations 41 4.3 Security 41 5 Project 43 5.1 Contributing 43 5.2 Changelog 43 5.3 License 48 Python Module Index 49 web sockets is a library for http. Project This is about websockets-the-project rather than websockets-the-software. ### 5.1 Contributing Bug reports, patches and suggestions are welcome! Please open an issue or send a pull request0 码力 | 56 页 | 245.43 KB | 2 年前3
Pro Git 2nd Edition 2.1.413Dictator and Lieutenants Workflow Patterns for Managing Source Code Branches Workflows Summary Contributing to a Project Commit Guidelines Private Small Team Private Managed Team Forked Public Project and Configuration SSH Access Your Avatar Your Email Addresses Two Factor Authentication Contributing to a Project Forking Projects The GitHub Flow Advanced Pull Requests GitHub Flavored Markdown Adding Collaborators Managing Pull Requests Mentions and Notifications Special Files README CONTRIBUTING Project Administration Managing an organization Organization Basics Teams Audit Log Scripting0 码力 | 731 页 | 21.49 MB | 2 年前3
Pro Git 2nd Edition 2.1.413Workflows ..... 126 Contributing to a Project ..... 129 Maintaining a Project ..... 150 Summary ..... 165 GitHub ..... 166 Account Setup and Configuration ..... 166 Contributing to a Project ... Let's change a file that was already tracked. If you change a previously tracked file called CONTRIBUTING.md and then run your git status command again, you get something that looks like this: $ git "git checkout --..." to discard changes in working directory) modified: CONTRIBUTING.md The CONTRIBUTING.md file appears under a section named “Changes not staged for commit”—which means that 0 码力 | 501 页 | 17.96 MB | 2 年前3
Pro Git 2nd Edition 2.1.413 Dictator and Lieutenants Workflow Patterns for Managing Source Code Branches Workflows Summary Contributing to a Project Commit Guidelines Private Small Team Private Managed Team Forked Public Project and Configuration SSH Access Your Avatar Your Email Addresses Two Factor Authentication Contributing to a Project Forking Projects The GitHub Flow Advanced Pull Requests GitHub Flavored Markdown Adding Collaborators Managing Pull Requests Mentions and Notifications Special Files README CONTRIBUTING Project Administration Managing an organization Organization Basics Teams Audit Log Scripting0 码力 | 691 页 | 13.35 MB | 2 年前3
Django CMS 3.11.10 DocumentationImprovements and new features Added code of conduct reference file to the root directory Moved contributing file to the root directory Added better templates for new issue requests Mark public static placeholder JavaScript and SASS. We no longer use develop.py; we now use manage.py for all development tasks. See Contributing a patch for examples. We’ve moved our widgets.py JavaScript to static/cms/js/widgets. Code formatting formatting We’ve switched from tabs (in some places) to four spaces everywhere. See Contributing code for more on formatting. gulp.js We now use gulp.js for linting, compressing and bundling of frontend0 码力 | 493 页 | 1.44 MB | 1 年前3
Pro Git 中文版 第2版 2.1.66添加合作者 管理合并请求 提醒和通知 通知页面 网页通知 邮件通知 特殊文件 README 贡献 CONTRIBUTING 项目管理 管理组织 组织的基本知识 团队 审计日志 脚本 GitHub 服务与钩子 GitHub API 命令使用文件或目录的路径作为参数;如果参数是目录的路径,该命令将递归地跟踪该目录下的所有文件。 ## 暂存已修改的文件 现在我们来修改一个已被跟踪的文件。 如果你修改了一个名为CONTRIBUTING.md的已被跟踪的文件,然后运行 git status 命令,会看到下面内容: $ git status On branch master Your branch is up-to-date "git checkout --..." to discard changes in working directory) modified: CONTRIBUTING.md 文件 CONTRIBUTING.md 出现在 Changes not staged for commit 这行下面,说明已跟踪文件的内容发生了变化,但还没有放到暂存区。要暂存这次更新,需要运行 git 0 码力 | 670 页 | 13.59 MB | 2 年前3
Pro Git 中文版 第2版 2.1.66add 命令使用文件或目录的路径作为参数;如果参数是目录的路径,该命令将递归地跟踪该目录下的所有文件。 ## 暂存已修改的文件 现在我们来修改一个已被跟踪的文件。如果你修改了一个名为 CONTRIBUTING.md的已被跟踪的文件,然后运行 git status 命令,会看到下面内容: $ git status On branch master Your "git checkout --..." to discard changes in working directory) modified: CONTRIBUTING.md 文件 CONTRIBUTING.md 出现在 Changes not staged for commit 这行下面,说明已跟踪文件的内容发生了变化,但还没有放到暂存区。要暂存这次更新,需要运行 git 命令理解为“精确地将内容添加到下一次提交中”而不是“将一个文件添加到项目中”要更加合适。现在让我们运行 git add 将“CONTRIBUTING.md”放到暂存区,然后再看看 git status 的输出: ```bash $ git add CONTRIBUTING.md $ git status On branch master Your branch is up-to-date 0 码力 | 501 页 | 19.30 MB | 2 年前3
共 1000 条
- 1
- 2
- 3
- 4
- 5
- 6
- 100
相关搜索词
Rust CompilerRust FoundationRustaceanRust by hackingcontributionDjangoSphinxdocumentationrelease notescontributingDjango CMSInstallationPluginsConfigurationContributingwebsocketsversionsecurity issuecompatibilitycontributing guideGit版本控制系统GitHub分支模型内部命令commitbranchmergeremotePro2ndEdition2.1413技术委员会文档项目代码测试贡献指南行为准则版本发布插件教程版本控制Git分支命令行远程仓库配置分支分布式版本控制工作流仓库管理













