How to create a pull request in GitHub
在根目录通常存在一个 CONTRIBUTING.md
或 Code of Conduct
文档,提及如何参与贡献以及项目参与者行为规范的守则
Fork the Repository
Clone Your Fork
shgit clone https://github.com/<YourUserName>/demo.git
Create a Branch
shgit checkout -b new_branch git remote add upstream https://github.com/kedark3/demo
Make your changes
Push it back to your repo
shgit commit -m "docs: Update 2.installation.md" -m "Fix the content attribute in the tailwind.config.js config file." git push -u origin new_branch
Create Pull Request
点击
Create pull request
创建请求简单描述修改的问题,给出相应链接,可以在对应图片中指出错误,等待项目管理员通过审核
此 PR 来自 Inspira UI
txtdocs: fix content attribute in tailwind.config.js config file. Fix the content attribute in the tailwind.config.js config file. Problem: The content attribute in the [doc](https://inspira-ui.com/getting-started/installation) is empty, it will cause error during installation 