[
  {
    "path": ".eslintrc",
    "content": "{\n  \"plugins\": [\n    \"json\",\n    \"markdown\"\n  ]\n}"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/suggest-new-link.md",
    "content": "---\nname: Suggest new link\nabout: Share a new link to a resource that is relevant to contributing to open source\ntitle: ''\nlabels: ''\nassignees: ''\n---\n\n## Suggested link\n<!-- Paste the link URL below that you think will be helpful in contributing to open source -->\n\n## Reasoning\n<!-- Describe the reason for why this link is helpful --> \n\n## Section\n<!-- Which section in our README.md should this link go in -->"
  },
  {
    "path": ".github/PULL_REQUEST_TEMPLATE.md",
    "content": "Checklist:\n\n<!-- Please follow this checklist and put an x in each of the boxes, like this: [x]. It will ensure that our team takes your pull request seriously. -->\n\n- [ ] I have read [freeCodeCamp's contribution guidelines](https://contribute.freecodecamp.org).\n- [ ] My pull request has a descriptive title (not a vague title like `Update index.md`)\n- [ ] My pull request targets the `main` branch of freeCodeCamp.\n\n<!--If your pull request closes a GitHub issue, replace the XXXXX below with the issue number.-->\n\nCloses #XXXXX\n\n<!-- Feel free to add any additional description of changes below this line -->\n"
  },
  {
    "path": ".github/funding.yml",
    "content": "github: freecodecamp\npatreon: freecodecamp\ncustom: [www.freecodecamp.org/donate]"
  },
  {
    "path": ".github/workflows/language-check.yml",
    "content": "name: Check README Suffixes\n\non:\n  pull_request:\n    paths:\n      - 'README-*'\n\njobs:\n  check-readme-suffixes:\n    runs-on: ubuntu-latest\n\n    steps:\n    - name: Checkout repository\n      uses: actions/checkout@v4\n\n    - name: Set up Ruby\n      uses: ruby/setup-ruby@v1\n      with:\n        ruby-version: 3.0\n\n    - name: Install dependencies\n      run: |\n        gem install nokogiri\n\n    - name: Check README suffixes\n      run: |\n        # Scrape ISO 639 language codes from the Wiki page\n        wget -qO- https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes | \\\n        nokogiri -e 'puts $_.css(\".wikitable td:nth-child(2)\").map(&:text)' | \\\n        sed -nr '/^.{0,2}$/p' |  # Grab only two letter values\n        tr '[:lower:]' '[:upper:]' > iso639.txt # Covert letters to uppercase\n\n        # Get list of README file names\n        readme_suffixes=$(ls README-* | sed 's/README-//g; s/.md//g')\n\n        # Check if README suffixes are valid ISO 639 language codes\n        for suffix in $readme_suffixes; do\n          if ! grep -qw \"$suffix\" iso639.txt; then\n            echo \"Error: Invalid README suffix found: $suffix\"\n            exit 1\n          fi\n        done\n\n        echo \"All README suffixes are valid ISO 639 language codes.\"\n\n  # Add more steps for your existing workflow, e.g., running tests or other checks\n"
  },
  {
    "path": ".github/workflows/test.yml",
    "content": "name: Check Resources\n\non: [push,pull_request]\n\nconcurrency:\n  group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}\n  cancel-in-progress: true\n\njobs:\n  validate:\n    runs-on: ubuntu-latest\n\n    steps:\n      - name: Checkout Source Files\n        uses: actions/checkout@v4\n        with:\n          fetch-depth: 0\n\n      - name: Set up Ruby 2.6\n        uses: ruby/setup-ruby@v1\n        with:\n          ruby-version: 2.6\n          bundler-cache: true\n\n      - name: Run checks\n        id: checks\n        # shell: bash +e +o pipefail {0}\n        continue-on-error: true\n        run: |\n          gem install awesome_bot\n          awesome_bot \\\n            -f README*.md \\ \n            --allow 302,429 \\\n            --white-list https://www.firsttimersonly.com/,https://github.com/github,https://creativecommons.org/licenses/by-sa/4.0/,https://github.com/kentcdodds\n\n#      - name: Run Danger\n#        uses: MeilCli/danger-action@v5\n#        with:\n#          plugins_file: 'Gemfile'\n#          install_path: 'vendor/bundle'\n#          danger_file: 'Dangerfile'\n#          danger_id: 'danger-ci'\n#        env:\n#          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n#          DANGER_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n\n"
  },
  {
    "path": ".gitignore",
    "content": "node_modules\nab-results-*.json\n"
  },
  {
    "path": "CODE_OF_CONDUCT.md",
    "content": "# Contributor freeCodeCamp Code of conduct\n\nBy using freeCodeCamp, you agree that you'll follow this code of conduct.\n\nIn short: Be nice. No harassment, trolling, or spamming.\n\n> Our Code of Conduct is available here: <https://www.freecodecamp.org/code-of-conduct/>\n"
  },
  {
    "path": "CONTRIBUTING.md",
    "content": "# Contributor's Guide\n\n'HOW TO CONTRIBUTE TO OPEN SOURCE' accepts PR's (pull requests) from **newbies**\nonly. This is to help **newbies** get familiar with the contribution processes.\n\nIssues can be submitted by anyone - either seasoned developers or newbies.\n\n**Contents**\n\n- [Choosing an Issue](#choosing-an-issue)\n- [Getting Started](#getting-started)\n- [Submitting a Pull Request](#submitting-a-pull-request)\n- [Adding to the Main README](#adding-to-the-main-readme)\n- [Adding to Non-English README](#adding-to-non-english-readme)\n- [Adding to the Project File](#adding-to-the-project-file)\n- [Notation and terminology](#notation-and-terminology)\n- [Helpful Resources](#helpful-resources)\n\n## Choosing an Issue\n\nBefore getting started and setup with contributing, you'll want to look at and choose an issue to work on. Here is a basic workflow you want to work from:\n\n1. Search through issues\n2. Find issue you want to work on\n3. Check if someone else has already worked on and made a pull request on said issue\n4. (Optional) Double check pull requests for someone who has worked on the pull request\n\nIf you have gotten that far, then you can go ahead and work on the issue. Below are more detailed instructions based on the basic workflow above.\n\nYou can find open issue [here](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/issues).\n\nOnce you've found an issue you want to work on, take a look at the issue to see if anyone else has made a pull request for this issue yet.\n\nYou can tell if someone has correctly referenced and worked on an issue if in the issue you find some text saying, the following:\n\n>  This was referenced on ____\n\nwhere that `____` is the date and below it is the pull request of another individual working on that issue. [Here](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/issues/822) is an example of what this looks like.\n\nTo be extra sure no one has worked on it, you can [take a look at the pull requests](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/pulls) as well to see if anyone has made a similar pull request.\n\nIf you've gotten this far, then you can continue on with the next section on \"Getting Started\" to working on your first pull request and contribution to our repository.\n\n### Getting Started\n\n1.  If you are new to Git and GitHub, it is advisable that you go through\n    [GitHub For Beginners](http://readwrite.com/2013/09/30/understanding-github-a-journey-for-beginners-part-1/)\n    **before** moving to Step 2.\n\n2.  Fork the project on GitHub.\n    [Help Guide to Fork a Repository](https://help.github.com/en/articles/fork-a-repo/).\n\n    ![Illustration for How to Fork a Repository](https://hisham.hm/img/posts/github-fork.png)\n\n3.  Clone the project.\n    [Help Guide to Clone a Repository](https://help.github.com/en/articles/cloning-a-repository)\n\n4.  Create a branch specific to the issue you are working on.\n\n    ```shell\n    git checkout -b update-readme-file\n    ```\n\n    For clarity, name\n    your branch `update-xxx` or `fix-xxx`. The `xxx` is a short\n    description of the changes you're making. Examples include `update-readme` or\n    `fix-typo-on-contribution-md`.\n\n5.  Open up the project in your favorite text editor, select the file you want\n    to contribute to, and make your changes.\n\n    If you are making changes to the `README.md` file, you would need to have\n    Markdown knowledge. Visit\n    [here to read about GitHub Markdown](https://docs.github.com/en/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax)\n    and\n    [here to practice](http://www.markdowntutorial.com/).\n\n    *   If you are adding a new project/organization to the README, make sure\n        it's listed in alphabetical order.\n    *   If you are adding a new organization, make sure you add an organization\n        label to the organization name. This would help distinguish projects\n        from organizations.\n\n6.  Add your modified\n    files to Git, [How to Add, Commit, Push, and Go](http://readwrite.com/2013/10/02/github-for-beginners-part-2/).\n\n    ```shell\n    git add path/to/filename.ext\n    ```\n\n    You can also add all unstaged files using:\n\n    ```shell\n    git add .\n    ```\n\n    **Note:** using a `git add .` will automatically add all files. You can do a\n    `git status` to see your changes, but do it **before** `git add`.\n\n6.  Commit your changes using a descriptive commit message.\n\n    ```shell\n    git commit -m \"Brief Description of Commit\"\n    ```\n\n7.  Push your commits to your GitHub Fork:\n\n    ```shell\n    git push -u origin branch-name\n    ```\n\n8.  Submit a pull request.\n\n    Within GitHub, visit this main repository and you should see a banner\n    suggesting that you make a pull request. While you're writing up the pull\n    request, you can add `Closes #XXX` in the message body where `#XXX` is the\n    issue you're fixing. Therefore, an example would be `Closes #42` would close issue\n    `#42`.\n\n### Submitting a Pull Request\n\n[What is a Pull Request?](https://yangsu.github.io/pull-request-tutorial/)\n\nIf you decide to fix an issue, it's advisable to check the comment thread to see if there's somebody already working on a fix. If no one is working on it, kindly leave a comment stating that you intend to work on it. By doing that,\nother people don't accidentally duplicate your effort.\n\nIn a situation where somebody decides to fix an issue but doesn't follow up\nfor a particular period of time, say 2-3 weeks, it's acceptable to still pick\nup the issue but make sure that you leave a comment.\n\n*Note*: Every open-source project has a **CONTRIBUTING.md** file, please make\nsure to read this before you open up a pull request; otherwise, it may be\nrejected. However, if you do not see any CONTRIBUTING.md file, you can send a\npull request but do it in a descriptive manner.\n\n### Adding to the Main README\n\nThe\n[main `README.md` file](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/blob/master/README.md)\ncontains a list of useful resources for beginners who want to contribute to\nopen source.\n\nYou can contribute to this page by adding a Markdown-formatted link.\n\nIt should look similar to the one below.\n\n```\n- [Title of the page](www.websitename.com/slug-name-here) - Add a description of why I should look at this site.\n```\n\nWhen in doubt, take a look at the current list of items to get an idea of how you should format your contribution.\n\nWhen adding your contribution to the list, please add your link to the most appropriate section. If you are unsure, feel free to ask in your pull request or comment in an issue asking for guidance.\n\nIf a video link is added, try to add in the length of the video as well, as shown below.\n\n```\n- [\"Complete Guide to Open Source - How to Contribute\"](https://www.youtube.com/watch?v=yzeVMecydCE) (41:52) - Learn why and how to contribute to open source software with Eddie Jaoude.\n```\n\n### Adding to Non-English README\n\nThe main `README.md` file is written in English. That file will be the template for all of the other languages.\n\nThis repository is about contributing to open source and generally, translation is important to reach diverse audiences. It is recommended that you provide language-specific resources links instead of the English-resource links.\n\nThe non-English README files are named `README-XX.md`, where `xx` is the\n[two letter language code](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes)\nfor the language.\n\nYou can contribute to the non-English README files by taking links that are in the English README but are not in the language of your choosing. When making a pull request with these changes, please tag someone who can verify your language contribution by adding `@` in front of their GitHub username to the pull request.\n\nIf your language does not exist yet, feel free to start it yourself. If you decide to do this, please add more than just the title. If you do not have the time to create one, feel free to\n[create an issue](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/issues/new/choose)\nto crowdsource help.\n\n### Adding to the Project File\n\nWe have a\n[`PROJECT.md`](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/blob/master/PROJECTS.md)\nfile to help curate a list of projects and organizations that are friendly to contributions.\n\nIf you know of a project or organization that fits this description, feel free to add them to this list.\n\nThe list is generally formatted like below.\n\n```\n- [freeCodeCamp](https://www.freecodecamp.org/) (org)\n    - [freeCodeCamp](https://github.com/freeCodeCamp/freeCodeCamp/) (project)\n        - [Contributing guide](https://github.com/freeCodeCamp/freeCodeCamp/blob/master/CONTRIBUTING.md)\n        - Issue labels:\n            - [first-timers-only](https://github.com/FreeCodeCamp/FreeCodeCamp/issues?q=is%3Aopen+is%3Aissue+label%3Afirst-timers-only)\n```\n\nSo you have the project page itself at the top. This can be the front-facing website or GitHub page.\n\nNext, we ask to link to the contributing page. This will give direction to people who want to contribute. This file is important to read so that you understand what is expected from contributors who have not contributed to their project before.\n\nLastly, we want to link to beginner-friendly labels. These are typically `Good First Issue` or something similar.\n\n### Notation and terminology\n\nThis section will list any notations, terminology, or words that we will keep consistent.\n\n- \"Open Source\" will be capitalized unless it is within a article or video title\n\n### Helpful Resources\n\n- [Pro GIT Book](https://git-scm.com/book/en/v2)\n\n- [Try Git](https://docs.github.com/en/get-started/quickstart/set-up-git)\n\n- [Git/ Git Hub on Windows](https://www.youtube.com/watch?v=J_Clau1bYco)\n"
  },
  {
    "path": "Dangerfile",
    "content": "# Ensure there is a summary for a pull request\nfail 'Please provide a summary in the Pull Request description' if github.pr_body.length < 5\n\n# Check links\nrequire 'json'\nresults = File.read 'ab-results-README.md-markdown-table.json'\nj = JSON.parse results\nif j['error']==true\n  m = j['title']\n  m << ', `@freeCodeCamp/moderators` will take care of these, thanks :)'\n  warn m\n  markdown j['message']\nend\n"
  },
  {
    "path": "LICENSE.md",
    "content": "Attribution-ShareAlike 4.0 International\n\n=======================================================================\n\nCreative Commons Corporation (\"Creative Commons\") is not a law firm and\ndoes not provide legal services or legal advice. Distribution of\nCreative Commons public licenses does not create a lawyer-client or\nother relationship. Creative Commons makes its licenses and related\ninformation available on an \"as-is\" basis. Creative Commons gives no\nwarranties regarding its licenses, any material licensed under their\nterms and conditions, or any related information. Creative Commons\ndisclaims all liability for damages resulting from their use to the\nfullest extent possible.\n\nUsing Creative Commons Public Licenses\n\nCreative Commons public licenses provide a standard set of terms and\nconditions that creators and other rights holders may use to share\noriginal works of authorship and other material subject to copyright\nand certain other rights specified in the public license below. The\nfollowing considerations are for informational purposes only, are not\nexhaustive, and do not form part of our licenses.\n\n     Considerations for licensors: Our public licenses are\n     intended for use by those authorized to give the public\n     permission to use material in ways otherwise restricted by\n     copyright and certain other rights. Our licenses are\n     irrevocable. Licensors should read and understand the terms\n     and conditions of the license they choose before applying it.\n     Licensors should also secure all rights necessary before\n     applying our licenses so that the public can reuse the\n     material as expected. Licensors should clearly mark any\n     material not subject to the license. This includes other CC-\n     licensed material, or material used under an exception or\n     limitation to copyright. More considerations for licensors:\n\twiki.creativecommons.org/Considerations_for_licensors\n\n     Considerations for the public: By using one of our public\n     licenses, a licensor grants the public permission to use the\n     licensed material under specified terms and conditions. If\n     the licensor's permission is not necessary for any reason--for\n     example, because of any applicable exception or limitation to\n     copyright--then that use is not regulated by the license. Our\n     licenses grant only permissions under copyright and certain\n     other rights that a licensor has authority to grant. Use of\n     the licensed material may still be restricted for other\n     reasons, including because others have copyright or other\n     rights in the material. A licensor may make special requests,\n     such as asking that all changes be marked or described.\n     Although not required by our licenses, you are encouraged to\n     respect those requests where reasonable. More_considerations\n     for the public: \n\twiki.creativecommons.org/Considerations_for_licensees\n\n=======================================================================\n\nCreative Commons Attribution-ShareAlike 4.0 International Public\nLicense\n\nBy exercising the Licensed Rights (defined below), You accept and agree\nto be bound by the terms and conditions of this Creative Commons\nAttribution-ShareAlike 4.0 International Public License (\"Public\nLicense\"). To the extent this Public License may be interpreted as a\ncontract, You are granted the Licensed Rights in consideration of Your\nacceptance of these terms and conditions, and the Licensor grants You\nsuch rights in consideration of benefits the Licensor receives from\nmaking the Licensed Material available under these terms and\nconditions.\n\n\nSection 1 -- Definitions.\n\n  a. Adapted Material means material subject to Copyright and Similar\n     Rights that is derived from or based upon the Licensed Material\n     and in which the Licensed Material is translated, altered,\n     arranged, transformed, or otherwise modified in a manner requiring\n     permission under the Copyright and Similar Rights held by the\n     Licensor. For purposes of this Public License, where the Licensed\n     Material is a musical work, performance, or sound recording,\n     Adapted Material is always produced where the Licensed Material is\n     synched in timed relation with a moving image.\n\n  b. Adapter's License means the license You apply to Your Copyright\n     and Similar Rights in Your contributions to Adapted Material in\n     accordance with the terms and conditions of this Public License.\n\n  c. BY-SA Compatible License means a license listed at\n     creativecommons.org/compatiblelicenses, approved by Creative\n     Commons as essentially the equivalent of this Public License.\n\n  d. Copyright and Similar Rights means copyright and/or similar rights\n     closely related to copyright including, without limitation,\n     performance, broadcast, sound recording, and Sui Generis Database\n     Rights, without regard to how the rights are labeled or\n     categorized. For purposes of this Public License, the rights\n     specified in Section 2(b)(1)-(2) are not Copyright and Similar\n     Rights.\n\n  e. Effective Technological Measures means those measures that, in the\n     absence of proper authority, may not be circumvented under laws\n     fulfilling obligations under Article 11 of the WIPO Copyright\n     Treaty adopted on December 20, 1996, and/or similar international\n     agreements.\n\n  f. Exceptions and Limitations means fair use, fair dealing, and/or\n     any other exception or limitation to Copyright and Similar Rights\n     that applies to Your use of the Licensed Material.\n\n  g. License Elements means the license attributes listed in the name\n     of a Creative Commons Public License. The License Elements of this\n     Public License are Attribution and ShareAlike.\n\n  h. Licensed Material means the artistic or literary work, database,\n     or other material to which the Licensor applied this Public\n     License.\n\n  i. Licensed Rights means the rights granted to You subject to the\n     terms and conditions of this Public License, which are limited to\n     all Copyright and Similar Rights that apply to Your use of the\n     Licensed Material and that the Licensor has authority to license.\n\n  j. Licensor means the individual(s) or entity(ies) granting rights\n     under this Public License.\n\n  k. Share means to provide material to the public by any means or\n     process that requires permission under the Licensed Rights, such\n     as reproduction, public display, public performance, distribution,\n     dissemination, communication, or importation, and to make material\n     available to the public including in ways that members of the\n     public may access the material from a place and at a time\n     individually chosen by them.\n\n  l. Sui Generis Database Rights means rights other than copyright\n     resulting from Directive 96/9/EC of the European Parliament and of\n     the Council of 11 March 1996 on the legal protection of databases,\n     as amended and/or succeeded, as well as other essentially\n     equivalent rights anywhere in the world.\n\n  m. You means the individual or entity exercising the Licensed Rights\n     under this Public License. Your has a corresponding meaning.\n\n\nSection 2 -- Scope.\n\n  a. License grant.\n\n       1. Subject to the terms and conditions of this Public License,\n          the Licensor hereby grants You a worldwide, royalty-free,\n          non-sublicensable, non-exclusive, irrevocable license to\n          exercise the Licensed Rights in the Licensed Material to:\n\n            a. reproduce and Share the Licensed Material, in whole or\n               in part; and\n\n            b. produce, reproduce, and Share Adapted Material.\n\n       2. Exceptions and Limitations. For the avoidance of doubt, where\n          Exceptions and Limitations apply to Your use, this Public\n          License does not apply, and You do not need to comply with\n          its terms and conditions.\n\n       3. Term. The term of this Public License is specified in Section\n          6(a).\n\n       4. Media and formats; technical modifications allowed. The\n          Licensor authorizes You to exercise the Licensed Rights in\n          all media and formats whether now known or hereafter created,\n          and to make technical modifications necessary to do so. The\n          Licensor waives and/or agrees not to assert any right or\n          authority to forbid You from making technical modifications\n          necessary to exercise the Licensed Rights, including\n          technical modifications necessary to circumvent Effective\n          Technological Measures. For purposes of this Public License,\n          simply making modifications authorized by this Section 2(a)\n          (4) never produces Adapted Material.\n\n       5. Downstream recipients.\n\n            a. Offer from the Licensor -- Licensed Material. Every\n               recipient of the Licensed Material automatically\n               receives an offer from the Licensor to exercise the\n               Licensed Rights under the terms and conditions of this\n               Public License.\n\n            b. Additional offer from the Licensor -- Adapted Material.\n               Every recipient of Adapted Material from You\n               automatically receives an offer from the Licensor to\n               exercise the Licensed Rights in the Adapted Material\n               under the conditions of the Adapter's License You apply.\n\n            c. No downstream restrictions. You may not offer or impose\n               any additional or different terms or conditions on, or\n               apply any Effective Technological Measures to, the\n               Licensed Material if doing so restricts exercise of the\n               Licensed Rights by any recipient of the Licensed\n               Material.\n\n       6. No endorsement. Nothing in this Public License constitutes or\n          may be construed as permission to assert or imply that You\n          are, or that Your use of the Licensed Material is, connected\n          with, or sponsored, endorsed, or granted official status by,\n          the Licensor or others designated to receive attribution as\n          provided in Section 3(a)(1)(A)(i).\n\n  b. Other rights.\n\n       1. Moral rights, such as the right of integrity, are not\n          licensed under this Public License, nor are publicity,\n          privacy, and/or other similar personality rights; however, to\n          the extent possible, the Licensor waives and/or agrees not to\n          assert any such rights held by the Licensor to the limited\n          extent necessary to allow You to exercise the Licensed\n          Rights, but not otherwise.\n\n       2. Patent and trademark rights are not licensed under this\n          Public License.\n\n       3. To the extent possible, the Licensor waives any right to\n          collect royalties from You for the exercise of the Licensed\n          Rights, whether directly or through a collecting society\n          under any voluntary or waivable statutory or compulsory\n          licensing scheme. In all other cases the Licensor expressly\n          reserves any right to collect such royalties.\n\n\nSection 3 -- License Conditions.\n\nYour exercise of the Licensed Rights is expressly made subject to the\nfollowing conditions.\n\n  a. Attribution.\n\n       1. If You Share the Licensed Material (including in modified\n          form), You must:\n\n            a. retain the following if it is supplied by the Licensor\n               with the Licensed Material:\n\n                 i. identification of the creator(s) of the Licensed\n                    Material and any others designated to receive\n                    attribution, in any reasonable manner requested by\n                    the Licensor (including by pseudonym if\n                    designated);\n\n                ii. a copyright notice;\n\n               iii. a notice that refers to this Public License;\n\n                iv. a notice that refers to the disclaimer of\n                    warranties;\n\n                 v. a URI or hyperlink to the Licensed Material to the\n                    extent reasonably practicable;\n\n            b. indicate if You modified the Licensed Material and\n               retain an indication of any previous modifications; and\n\n            c. indicate the Licensed Material is licensed under this\n               Public License, and include the text of, or the URI or\n               hyperlink to, this Public License.\n\n       2. You may satisfy the conditions in Section 3(a)(1) in any\n          reasonable manner based on the medium, means, and context in\n          which You Share the Licensed Material. For example, it may be\n          reasonable to satisfy the conditions by providing a URI or\n          hyperlink to a resource that includes the required\n          information.\n\n       3. If requested by the Licensor, You must remove any of the\n          information required by Section 3(a)(1)(A) to the extent\n          reasonably practicable.\n\n  b. ShareAlike.\n\n     In addition to the conditions in Section 3(a), if You Share\n     Adapted Material You produce, the following conditions also apply.\n\n       1. The Adapter's License You apply must be a Creative Commons\n          license with the same License Elements, this version or\n          later, or a BY-SA Compatible License.\n\n       2. You must include the text of, or the URI or hyperlink to, the\n          Adapter's License You apply. You may satisfy this condition\n          in any reasonable manner based on the medium, means, and\n          context in which You Share Adapted Material.\n\n       3. You may not offer or impose any additional or different terms\n          or conditions on, or apply any Effective Technological\n          Measures to, Adapted Material that restrict exercise of the\n          rights granted under the Adapter's License You apply.\n\n\nSection 4 -- Sui Generis Database Rights.\n\nWhere the Licensed Rights include Sui Generis Database Rights that\napply to Your use of the Licensed Material:\n\n  a. for the avoidance of doubt, Section 2(a)(1) grants You the right\n     to extract, reuse, reproduce, and Share all or a substantial\n     portion of the contents of the database;\n\n  b. if You include all or a substantial portion of the database\n     contents in a database in which You have Sui Generis Database\n     Rights, then the database in which You have Sui Generis Database\n     Rights (but not its individual contents) is Adapted Material,\n\n     including for purposes of Section 3(b); and\n  c. You must comply with the conditions in Section 3(a) if You Share\n     all or a substantial portion of the contents of the database.\n\nFor the avoidance of doubt, this Section 4 supplements and does not\nreplace Your obligations under this Public License where the Licensed\nRights include other Copyright and Similar Rights.\n\n\nSection 5 -- Disclaimer of Warranties and Limitation of Liability.\n\n  a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE\n     EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS\n     AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF\n     ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,\n     IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,\n     WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR\n     PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,\n     ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT\n     KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT\n     ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.\n\n  b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE\n     TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,\n     NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,\n     INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES,\n     COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR\n     USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN\n     ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR\n     DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR\n     IN PART, THIS LIMITATION MAY NOT APPLY TO YOU.\n\n  c. The disclaimer of warranties and limitation of liability provided\n     above shall be interpreted in a manner that, to the extent\n     possible, most closely approximates an absolute disclaimer and\n     waiver of all liability.\n\n\nSection 6 -- Term and Termination.\n\n  a. This Public License applies for the term of the Copyright and\n     Similar Rights licensed here. However, if You fail to comply with\n     this Public License, then Your rights under this Public License\n     terminate automatically.\n\n  b. Where Your right to use the Licensed Material has terminated under\n     Section 6(a), it reinstates:\n\n       1. automatically as of the date the violation is cured, provided\n          it is cured within 30 days of Your discovery of the\n          violation; or\n\n       2. upon express reinstatement by the Licensor.\n\n     For the avoidance of doubt, this Section 6(b) does not affect any\n     right the Licensor may have to seek remedies for Your violations\n     of this Public License.\n\n  c. For the avoidance of doubt, the Licensor may also offer the\n     Licensed Material under separate terms or conditions or stop\n     distributing the Licensed Material at any time; however, doing so\n     will not terminate this Public License.\n\n  d. Sections 1, 5, 6, 7, and 8 survive termination of this Public\n     License.\n\n\nSection 7 -- Other Terms and Conditions.\n\n  a. The Licensor shall not be bound by any additional or different\n     terms or conditions communicated by You unless expressly agreed.\n\n  b. Any arrangements, understandings, or agreements regarding the\n     Licensed Material not stated herein are separate from and\n     independent of the terms and conditions of this Public License.\n\n\nSection 8 -- Interpretation.\n\n  a. For the avoidance of doubt, this Public License does not, and\n     shall not be interpreted to, reduce, limit, restrict, or impose\n     conditions on any use of the Licensed Material that could lawfully\n     be made without permission under this Public License.\n\n  b. To the extent possible, if any provision of this Public License is\n     deemed unenforceable, it shall be automatically reformed to the\n     minimum extent necessary to make it enforceable. If the provision\n     cannot be reformed, it shall be severed from this Public License\n     without affecting the enforceability of the remaining terms and\n     conditions.\n\n  c. No term or condition of this Public License will be waived and no\n     failure to comply consented to unless expressly agreed to by the\n     Licensor.\n\n  d. Nothing in this Public License constitutes or may be interpreted\n     as a limitation upon, or waiver of, any privileges and immunities\n     that apply to the Licensor or You, including from the legal\n     processes of any jurisdiction or authority.\n\n\n=======================================================================\n\nCreative Commons is not a party to its public\nlicenses. Notwithstanding, Creative Commons may elect to apply one of\nits public licenses to material it publishes and in those instances\nwill be considered the “Licensor.” The text of the Creative Commons\npublic licenses is dedicated to the public domain under the CC0 Public\nDomain Dedication. Except for the limited purpose of indicating that\nmaterial is shared under a Creative Commons public license or as\notherwise permitted by the Creative Commons policies published at\ncreativecommons.org/policies, Creative Commons does not authorize the\nuse of the trademark \"Creative Commons\" or any other trademark or logo\nof Creative Commons without its prior written consent including,\nwithout limitation, in connection with any unauthorized modifications\nto any of its public licenses or any other arrangements,\nunderstandings, or agreements concerning use of licensed material. For\nthe avoidance of doubt, this paragraph does not form part of the\npublic licenses.\n\nCreative Commons may be contacted at creativecommons.org.\n"
  },
  {
    "path": "PROJECTS.md",
    "content": "# Projects and Organizations\n\nThis file contains a list of projects and organizations that are friendly to\ncontributions, along with quick links to relevant documents you should reference\nbefore contributing.\n\n- `[Babel](https://github.com/babel/babel)` (project)\n    - [Contributing Guide](https://github.com/babel/babel/blob/master/CONTRIBUTING.md)\n    - Issue labels:\n        - [Good First Issue](https://github.com/babel/babel/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22)\n- `[BeeWare](https://beeware.org/)` (org)\n    - [Contributing Guide](https://beeware.org/contributing/how/first-time/)\n    - [Batavia](https://github.com/beeware/batavia) (project)\n        - Issue labels:\n            - [first-timers-only](https://github.com/beeware/batavia/issues?q=is%3Aopen+is%3Aissue+label%3Afirst-timers-only)\n    - [VOC](https://github.com/beeware/voc) (project)\n        - Issue labels:\n            - [first-timers-only](https://github.com/beeware/voc/issues?q=is%3Aopen+is%3Aissue+label%3Afirst-timers-only)\n- `[DITA Open Toolkit](https://www.dita-ot.org/)`\n    - [Contributing Guide](https://www.dita-ot.org/contributing)\n    - Issue label:\n        - [good first issue](https://github.com/dita-ot/dita-ot/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22)\n- `[Docker](https://github.com/docker)` (project)\n    - [Contributing Guide](https://docs.docker.com/opensource/)\n    - Issue labels:\n        - [Open Issue](https://github.com/search?q=org%3Adocker+is%3Aissue+is%3Aopen)\n        - [exp/beginner](https://github.com/docker/docker/issues?q=is%3Aopen+is%3Aissue+label%3Aexp%2Fbeginner+sort%3Aupdated-desc)\n- `[freeCodeCamp.org](https://www.freecodecamp.org/)` (org)\n    - [freeCodeCamp.org](https://github.com/freeCodeCamp/freeCodeCamp/) (project)\n        - [Contributing guide](https://contribute.freecodecamp.org)\n        - Issue labels:\n            - [first-timers-only](https://github.com/FreeCodeCamp/FreeCodeCamp/issues?q=is%3Aopen+is%3Aissue+label%3Afirst-timers-only)\n            - [help wanted](https://github.com/freeCodeCamp/freeCodeCamp/issues?q=is%3Aopen+is%3Aissue+label%3A%22help+wanted%22)\n- `[GitLab](https://gitlab.com/gitlab-org)` (org)\n    - [Contributing Guide](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CONTRIBUTING.md)\n    - [Development Guides](https://docs.gitlab.com/ce/development/README.html)\n    - [Development Kit](https://gitlab.com/gitlab-org/gitlab-development-kit)\n    - Issue labels:\n        - [1st contribution](https://gitlab.com/gitlab-org/gitlab-ce/issues?scope=all&utf8=%E2%9C%93&state=opened&label_name[]=1st%20contribution)\n- `[GNOME](https://www.gnome.org/)` (org)\n    - [Contributing Guide](https://wiki.gnome.org/Newcomers)\n- Great big example application (org)\n    - [Great-big-example-application](https://github.com/dancancro/great-big-angular2-example) (project)\n    - [Contributing Guide](https://github.com/dancancro/great-big-example-application/projects/1)\n- `[Hoa](https://hoa-project.net)` (project)\n    - [Contributing Guide](https://hoa-project.net/En/Literature/Contributor/Guide.html)\n- `[Hoodiehq](http://hood.ie/)` (org)\n    - [Camp](https://github.com/hoodiehq/camp) (project)\n        - Issue labels:\n            - [first-timers-only](https://github.com/hoodiehq/camp/labels/first-timers-only)\n            - [good first issue](https://github.com/hoodiehq/camp/labels/good%20first%20issue)\n    - [Hoodie](https://github.com/hoodiehq/hoodie) (project)\n        - [Contributing Guide](https://github.com/hoodiehq/hoodie/blob/master/CONTRIBUTING.md)\n        - Issue labels:\n            - [first-timers-only](https://github.com/hoodiehq/hoodie/labels/first-timers-only)\n            - [help wanted](https://github.com/hoodiehq/hoodie/labels/help%20wanted)\n            - [starter](https://github.com/hoodiehq/hoodie/labels/starter)\n- `[Metamaps](https://metamaps.cc/)` (org)\n    - [Metamaps](https://github.com/metamaps/metamaps) (project)\n        - [Contribution Guide](https://github.com/metamaps/metamaps/blob/develop/doc/CONTRIBUTING.md)\n- `nteract` (org)\n    - [nteract](https://github.com/nteract/nteract) (project)\n        - [Contributing Guide](https://github.com/nteract/nteract/blob/master/CONTRIBUTING.md)\n        - Issue labels:\n            - [new-contributor-friendly](https://github.com/nteract/nteract/issues?q=is%3Aissue+label%3Anew-contributor-friendly+is%3Aopen)\n            - [mentoring-available](https://github.com/nteract/nteract/issues?q=is%3Aissue+is%3Aopen+label%3Amentoring-available)\n- `Public Lab` (org)\n    - [Plots2](https://github.com/publiclab/plots2) (project)\n        - [Contributing guide](https://github.com/publiclab/plots2/blob/master/CONTRIBUTING.md)\n        - Issue labels:\n            - [first-timers-only](https://github.com/publiclab/plots2/issues?q=is%3Aissue+is%3Aopen+label%3Afirst-timers-only)\n            - [help-wanted](https://github.com/publiclab/plots2/issues?q=is%3Aissue+is%3Aopen+label%3Ahelp-wanted)\n            - [fto-candidate](https://github.com/publiclab/plots2/issues?q=is%3Aissue+is%3Aopen+label%3Afto-candidate)\n- `React` (org)\n    - [React](https://github.com/facebook/react) (project)\n        - [Contributing Guide](https://reactjs.org/docs/how-to-contribute.html)\n        - Issue labels:\n            - [good first issue](https://github.com/facebook/react/issues?page=1&q=is%3Aissue+is%3Aopen)\n- `Read the Docs` (org)\n    - [Read the Docs](http://docs.readthedocs.io/en/latest/index.html) (site)\n        - Issue labels:\n            - [Good First Bug](https://github.com/rtfd/readthedocs.org/issues?q=is%3Aopen+is%3Aissue+label%3A%22Good+First+Bug%22)\n- `Redfin` (org)\n    - [react-server](https://github.com/redfin/react-server) (project)\n        - [Contributing Guide](https://github.com/redfin/react-server/blob/master/CONTRIBUTING.md)\n        - Issue labels:\n            - [good first contribution](https://github.com/redfin/react-server/labels/good%20first%20contribution)\n- `Servo` (org)\n    - [Servo](https://starters.servo.org/) (project)\n        - [Contributing guide](https://github.com/servo/servo/blob/master/CONTRIBUTING.md)\n        - Issue labels:\n            - [Easy](https://github.com/servo/servo/issues?q=is%3Aissue+is%3Aopen+label%3AE-easy)\n- `[Sympy](https://github.com/sympy/sympy)` (project)\n    - [Dev Wiki](https://github.com/sympy/sympy/wiki#development)\n    - [Work Flow](https://github.com/sympy/sympy/wiki/Development-workflow)\n    - [Contributing Guide](https://github.com/sympy/sympy/wiki/Introduction-to-contributing)\n    - Issue labels:\n        - [Easy to fix](https://github.com/sympy/sympy/issues?q=is%3Aissue+is%3Aopen+label%3A%22Easy+to+Fix%22)\n- `TEAMMATES` (org)\n    - [TEAMMATES](https://github.com/TEAMMATES/teammates) (project)\n        - [Contributing Guide](https://github.com/TEAMMATES/teammates/blob/master/docs/CONTRIBUTING.md)\n        - Issue labels:\n            - [d.FirstTimers](https://github.com/TEAMMATES/teammates/issues?q=is%3Aopen+is%3Aissue+label%3Ad.FirstTimers)\n            - [d.Contributors](https://github.com/TEAMMATES/teammates/issues?q=is%3Aopen+is%3Aissue+label%3Ad.Contributors)\n- `Zulip` (org)\n    - [Zulip](https://github.com/zulip) (project)\n    - [Contributing Guide](https://github.com/zulip/zulip/blob/master/CONTRIBUTING.md)\n    - Issue labels:\n       - [Good First Issue](https://github.com/zulip/zulip/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22)\n       - [Help Wanted](https://github.com/zulip/zulip/issues?q=is%3Aissue+is%3Aopen+label%3A%22help+wanted%22)\n- `[Rust](https://github.com/rust-lang/rust)` (project)\n    - [Contributing Guide](https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md)\n    - Issue labels:\n       - [E-easy](https://github.com/rust-lang/rust/issues?q=is%3Aissue+is%3Aopen+label%3AE-easy)\n- `[Test Kitchen](https://github.com/test-kitchen/test-kitchen)` (project)\n    - [Contributing Guide](https://github.com/test-kitchen/test-kitchen/blob/master/CONTRIBUTING.md)\n    - Issue labels:\n       - [*](https://github.com/test-kitchen/test-kitchen/issues?q=is%3Aopen+is%3Aissue+label%3A%E2%AD%90%EF%B8%8F)\n- `Django` (Framework)\n    - [Contributing Guide](https://github.com/django/django)\n- `[tsParticles](https://github.com/matteobruni/tsparticles)` (Library)\n    - [Contributing Guide](https://github.com/matteobruni/tsparticles/blob/master/CONTRIBUTING.md)\n    - Issue labels:\n       - [Good First Issue](https://github.com/matteobruni/tsparticles/labels/good%20first%20issue)\n       - [Help Wanted](https://github.com/matteobruni/tsparticles/labels/help%20wanted)\n- `[Jenkins](https://github.com/jenkinsci/jenkins)` (Project)\n    - [Contributing Guide](https://wiki.jenkins.io/display/JENKINS/Beginners+Guide+to+Contributing)\n- `[ifme](https://github.com/ifmeorg/ifme)` (Project)\n    - [Contributing Guide](https://github.com/ifmeorg/ifme/blob/main/CONTRIBUTING.md)\n    - Issue labels:\n      - [first-timers-only](https://github.com/ifmeorg/ifme/issues?q=is%3Aopen+is%3Aissue+label%3Afirst-timers-only)\n      - [good first issue](https://github.com/ifmeorg/ifme/issues?q=is%3Aopen+is%3Aissue+label%3A%22good+first+issue%22)\n      - [beginner friendly](https://github.com/ifmeorg/ifme/issues?q=is%3Aopen+is%3Aissue+label%3A%22beginner+friendly%22)\n"
  },
  {
    "path": "README-AR.md",
    "content": "<details>\n<summary>\n<strong> اقرأ هذا الدليل بلغات أخرى </strong>\n</summary>\n    <ul>\n        <li><a href=\"./README.md\"> إنجليزي </a></li>\n        <li><a href=\"./README-MR.md\"> الماراثى </a></li>\n        <li><a href=\"./README-BN.md\"> البنغالية </a></li>\n        <li><a href=\"./README-CN.md\"> صينى </a></li>\n        <li><a href=\"./README-RU.md\"> الروسية </a></li>\n        <li><a href=\"./README-RO.md\"> روماني </a></li>\n        <li><a href=\"./README-IT.md\"> إيطالي </a></li>\n        <li><a href=\"./README-ES.md\"> الأسبانية </a></li>\n        <li><a href=\"./README-pt-BR.md\"> البرتغالية (البرازيل) </a></li>\n        <li><a href=\"./README-DE.md\"> ألماني </a></li>\n        <li><a href=\"./README-GR.md\"> اليونانية </a></li>\n        <li><a href=\"./README-FR.md\"> الفرنسية </a></li>\n        <li><a href=\"./README-KO.md\"> الكورية </a></li>\n        <li><a href=\"./README-JA.md\"> اليابانية </a></li>\n        <li><a href=\"./README-HI.md\"> هندي </a></li>\n    </ul>\n</details>\n<!-- Do not translate this -->\n\n# مرحبًا بالمساهمين المبتدئين للمصادر المفتوحة!\n\n[![Pull Requests Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat)](http://makeapullrequest.com)\n[![first-timers-only Friendly](https://img.shields.io/badge/first--timers--only-friendly-blue.svg)](https://www.firsttimersonly.com/)\n[![Check Resources](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml/badge.svg)](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml)\n\nهذه قائمة بالموارد للأشخاص الجدد في المساهمة في المصادر المفتوحة.\n\nإذا وجدت موارد إضافية ، يرجى المساهمة في طلب سحب.\n\nإذا كانت لديك أسئلة أو تعليقات ، يرجى إنشاء مشكلة.\n\n**محتويات**\n\n- [Contributing to Open Source in general](#المساهمة-في-المصادر-المفتوحة-بشكل-عام)\n- [Direct GitHub searches](#عمليات-البحث-المباشرة-على-github)\n- [Mozilla's contributor ecosystem](#النظام-البيئي-للمساهمين-في-mozilla)\n- [Useful articles for new Open Source contributors](#مقالات-مفيدة-للمساهمين-الجدد-في-المصادر-المفتوحة)\n- [Using Version Control](#باستخدام-التحكم-في-الإصدار)\n- [Open Source books](#كتب-مفتوحة-المصدر)\n- [Open Source contribution initiatives](#مبادرات-مساهمة-المصدر-المفتوح)\n- [Open Source programs to participate in](#برامج-مفتوحة-المصدر-للمشاركة-فيها)\n- [License](#license)\n\n## المساهمة في المصادر المفتوحة بشكل عام\n\n>مقالات و مصادر تتحدث عن عالم و ثقافة المصادر المفتوحة.\n- [The Definitive Guide to Contributing to Open Source](https://www.freecodecamp.org/news/the-definitive-guide-to-contributing-to-open-source-900d5f9f2282/) بواسطة [@DoomHammerNG](https://twitter.com/DoomHammerNG)\n- [An Intro to Open Source](https://www.digitalocean.com/community/tutorial_series/an-introduction-to-open-source) - برامج تعليمية بواسطة DigitalOcean لإرشادك في طريقك إلى نجاح المساهمة هنا على GitHub.\n- [Code Triage](https://www.codetriage.com/) - أداة أخرى ، رائعة حقًا ، للعثور على المستودعات المشهورة والمشكلات المصفاة حسب اللغة.\n- [Awesome-for-beginners](https://github.com/MunGell/awesome-for-beginners) - GitHub repo الذي يكدس المشاريع مع أخطاء جيدة للمساهمين الجدد ، ويطبق تسميات لوصفها.\n- [Open Source Guides](https://opensource.guide/) - مجموعة من الموارد للأفراد والمجتمعات والشركات الذين يرغبون في تعلم كيفية تشغيل مشروع مفتوح المصدر والمساهمة فيه.\n- [45 Github Issues Dos and Don’ts](https://hackernoon.com/45-github-issues-dos-and-donts-dfec9ab4b612) - افعل ولا تفعل على جيثب.\n- [GitHub Guides](https://docs.github.com/en) -إرشادات أساسية حول كيفية استخدام GitHub بشكل فعال.\n- [Contribute to Open Source](https://github.com/danthareja/contribute-to-open-source) - تعرف على سير عمل GitHub من خلال المساهمة برمز في مشروع محاكاة.\n- [Linux Foundation's Open Source Guides for the Enterprise](https://www.linuxfoundation.org/resources/open-source-guides) - أدلة مؤسسة Linux لمشاريع المصدر المفتوح.\n- [CSS Tricks An Open Source Etiquette Guidebook](https://css-tricks.com/open-source-etiquette-guidebook/) - دليل آداب السلوك المفتوح المصدر ، بقلم كينت سي دودز وسارة دراسنر.\n- [A to Z Resources for Students](https://github.com/dipakkr/A-to-Z-Resources-for-Students) - قائمة منتقاة من الموارد والفرص لطلاب الجامعات لتعلم لغة ترميز جديدة.\n- Pull Request Roulette - يحتوي هذا الموقع على قائمة بطلبات السحب المقدمة للمراجعة والتي تنتمي إلى مشاريع مفتوحة المصدر مستضافة على Github.\n- [\"How to Contribute to an Open Source Project on GitHub\" by Egghead.io](https://egghead.io/courses/how-to-contribute-to-an-open-source-project-on-github) - دليل فيديو خطوة بخطوة حول كيفية البدء في المساهمة في مشاريع مفتوحة المصدر على GitHub.\n- [Contributing to Open Source: A Live Walkthrough from Beginning to End](https://medium.com/@kevinjin/contributing-to-open-source-walkthrough-part-0-b3dc43e6b720) -تغطي هذه الإرشادات التفصيلية لمساهمة مفتوحة المصدر كل شيء بدءًا من اختيار مشروع مناسب ، والعمل على مشكلة ما ، إلى دمج العلاقات العامة.\n- [\"How to Contribute to Open Source Project by\" Sarah Drasner](https://css-tricks.com/how-to-contribute-to-an-open-source-project/) - إنهم يركزون على التفاصيل الجوهرية للمساهمة في طلب سحب (PR) لمشروع شخص آخر على GitHub.\n- [\"How to get started with Open Source by\" Sayan Chowdhury](https://www.hackerearth.com:443/getstarted-opensource/) - تتناول هذه المقالة الموارد اللازمة للمساهمة في المصدر المفتوح للمبتدئين بناءً على اهتماماتهم اللغوية المفضلة.\n- [\"Browse good first issues to start contributing to open source\"](https://github.blog/2020-01-22-browse-good-first-issues-to-start-contributing-to-open-source/) - يساعدك GitHub الآن في العثور على المشكلات الأولى الجيدة لبدء المساهمة في المصدر المفتوح.\n- [\"How to Contribute to Open Source Project\" by Maryna Z](https://rubygarage.org/blog/how-contribute-to-open-source-projects) - هذه المقالة الشاملة موجهة نحو الشركات (لكنها لا تزال مفيدة للمساهمين الفرديين) حيث تتحدث عن سبب وكيفية وما هي المشاريع مفتوحة المصدر التي يجب المساهمة فيها.\n- [\"start-here-guidelines\" by Andrei](https://github.com/zero-to-mastery/start-here-guidelines) -\n  لنبدأ Lets Git في عالم مفتوح المصدر ، بدءًا من الملعب مفتوح المصدر. مصممة خصيصا لأغراض التعليم والخبرة العملية.\n- [\"Getting Started with Open Source\" by NumFocus](https://github.com/numfocus/getting-started-with-open-source) -برنامج GitHub repo الذي يساعد المساهمين على التغلب على العوائق التي تحول دون الدخول في المصادر المفتوحة.\n- [\"Opensoure-4-everyone\" by Chryz-hub ](https://github.com/chryz-hub/opensource-4-everyone) -مستودع لكل ما يتعلق بالمصادر المفتوحة. هذا مشروع للمساعدة في رؤية عضوية GitHub ، والتدرب على أوامر git الأساسية والمتقدمة ، والبدء بمصدر مفتوح ، والمزيد.\n- [\"Open Advice\"](http://open-advice.org/) -جمع المعرفة من مجموعة متنوعة من مشاريع البرمجيات الحرة. يجيب على السؤال الذي كان يرغب 42 من المساهمين البارزين في معرفته عندما بدأوا حتى تتمكن من الحصول على السبق بغض النظر عن كيفية ومكان المساهمة.\n- [\"GitHub Learning Lab\"](https://github.com/apps/github-learning-lab) -ارفع مستوى مهاراتك مع GitHub Learning Lab. سيأخذك برنامج الروبوت الودود الخاص بنا عبر سلسلة من المرح والمشاريع العملية لتعلم المهارات التي تحتاجها في وقت قصير - ومشاركة التعليقات المفيدة على طول الطريق.\n- [\"Ten simple rules for helping newcomers become contributors to open projects\"](https://journals.plos.org/ploscompbiol/article?id=10.1371/journal.pcbi.1007296) - تتناول هذه المقالة القواعد المستندة إلى دراسات العديد من المجتمعات وتجارب الأعضاء والقادة والمراقبين.\n- [\"Step-by-Step guide to contributing on GitHub\"](https://www.dataschool.io/how-to-contribute-on-github/) -دليل خطوة بخطوة مع دعائم مرئية و روابط بخصوص العملية الكاملة للمساهمة في مشروع مفتوح المصدر.\n- [Open Source with Pradumna](https://github.com/Pradumnasaraf/open-source-with-pradumna) - مستودع يحتوي على مصادر ومواد لتعلم وبدأ المشاركة في المشاريع مفتوحة المصدر\n\n## عمليات البحث المباشرة على GitHub\n\nروابط البحث التي تشير مباشرة إلى المشكلات المناسبة للمساهمة في GitHub.\n\n- [is:issue is:open label:beginner](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Abeginner&type=issues)\n- [is:issue is:open label:easy](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Aeasy&type=issues)\n- [is:issue is:open label:first-timers-only](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Afirst-timers-only&type=issues)\n- [is:issue is:open label:good-first-bug](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Agood-first-bug&type=issues)\n- [is:issue is:open label:\"good first issue\"](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22&type=issues)\n- [is:issue is:open label:starter](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Astarter&type=issues)\n- [is:issue is:open label:up-for-grabs](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Aup-for-grabs&type=issues)\n- [is:issue is:open label:easy-fix](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Aeasy-fix&type=issues)\n- [is:issue is:open label:\"beginner friendly\"](https://github.com/search?q=beginner+friendly&state=open&type=Issues)\n\n## النظام البيئي للمساهمين في Mozilla\n\n- [Good First Bugs](https://bugzilla.mozilla.org/buglist.cgi?quicksearch=sw:%22[good%20first%20bug]%22&limit=0) - الأخطاء التي حددها المطورون على أنها مقدمة جيدة للمشروع.\n- [MDN Web Docs](https://developer.mozilla.org/en-US/docs/MDN/Contribute) -مساعدة فريق MDN Web Docs في توثيق منصة الويب عن طريق إصلاح مشكلات المحتوى وأخطاء النظام الأساسي.\n- [Mentored Bugs](https://bugzilla.mozilla.org/buglist.cgi?quicksearch=mentor%3A%40) - الأخطاء البرمجية التي تم تعيين معلمها والذي سيكون هناك على IRC لمساعدتك عندما تتعثر أثناء العمل على الإصلاح.\n- [Bugs Ahoy](https://www.joshmatthews.net/bugsahoy/) -موقع مخصص للبحث عن الأخطاء في Bugzilla.\n- [Firefox DevTools](http://firefox-dev.tools/) -موقع مخصص للأخطاء المودعة لأدوات المطور في متصفح Firefox.\n- [Start Mozilla](https://twitter.com/StartMozilla) - حساب Twitter يقوم بالتغريد حول المشكلات المناسبة للمساهمين الجدد في نظام Mozilla البيئي.\n\n## مقالات مفيدة للمساهمين الجدد في المصادر المفتوحة\n\n- [How to choose (and contribute to) your first Open Source project](https://github.com/collections/choosing-projects) بواسطة\n- [How to find your first Open Source bug to fix](https://www.freecodecamp.org/news/finding-your-first-open-source-project-or-bug-to-work-on-1712f651e5ba/) بواسطة [@Shubheksha](https://github.com/Shubheksha)\n- [First Timers Only](https://kentcdodds.com/blog/first-timers-only) بواسطة \n- [Bring Kindness Back to Open Source](https://web.archive.org/web/20201009150545/https://www.hanselman.com/blog/bring-kindness-back-to-open-source) بواسطة [@shanselman](https://github.com/shanselman)\n- [Getting into Open Source for the First Time](https://www.nearform.com/blog/getting-into-open-source-for-the-first-time/) بواسطة [@mcdonnelldean](https://github.com/mcdonnelldean)\n- [How to Contribute to Open Source](https://opensource.guide/how-to-contribute/) بواسطة \n- [How to Find a Bug in Your Code](https://8thlight.com/insights/how-to-find-a-bug-in-your-code) بواسطة [@dougbradbury](https://twitter.com/dougbradbury)\n- [Mastering Markdown](https://docs.github.com/en/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax) بواسطة [@GitHub](https://github.com/github)\n- [First mission: Contributors page](https://forcrowd.medium.com/first-mission-contributors-page-df24e6e70705 ) بواسطة [@forCrowd](https://github.com/forCrowd)\n- [How to make your first Open Source contribution in just 5 minutes](https://www.freecodecamp.org/news/how-to-make-your-first-open-source-contribution-in-just-5-minutes-aaad1fc59c9a/) بواسطة [@roshanjossey](https://github.com/Roshanjossey/)\n- [I just got my free Hacktoberfest shirt. Here’s a quick way you can get yours.](https://www.freecodecamp.org/news/i-just-got-my-free-hacktoberfest-shirt-heres-a-quick-way-you-can-get-yours-fa78d6e24307/) بواسطة [@quincylarson](https://www.freecodecamp.org/news/author/quincylarson/)\n- [A Bitter Guide To Open Source](https://medium.com/codezillas/a-bitter-guide-to-open-source-a8e3b6a3c1c4) بواسطة [@ken_wheeler](https://medium.com/@ken_wheeler)\n- [A junior developer’s step-by-step guide to contributing to Open Source for the first time](https://hackernoon.com/contributing-to-open-source-the-sharks-are-photoshopped-47e22db1ab86) بواسطة [@LetaKeane](https://hackernoon.com/u/letakeane)\n- [Learn Git and GitHub Step By Step (on Windows)](https://medium.com/illumination/path-to-learning-git-and-github-be93518e06dc) بواسطة [@ows-ali](https://ows-ali.medium.com/)\n- [Why Open Source and How?](https://careerkarma.com/blog/open-source-projects-for-beginners/) بواسطة [@james-gallagher](https://careerkarma.com/blog/author/jamesgallagher/)\n- [How to get started with Open Source - By Sayan Chowdhury](https://www.hackerearth.com/getstarted-opensource/)\n- [An immersive introductory guide to Open-source](https://developeraspire.hashnode.dev/an-immersive-introductory-guide-to-open-source) بواسطة [Franklin Okolie](https://twitter.com/DeveloperAspire)\n- [What open-source should I contribute to](https://kentcdodds.com/blog/what-open-source-project-should-i-contribute-to) بواسطة [@kentcdodds](https://github.com/kentcdodds)\n- [Getting started with contributing to open source](https://stackoverflow.blog/2020/08/03/getting-started-with-contributing-to-open-source/) بواسطة [Zara Cooper](https://stackoverflow.blog/author/zara-cooper/)\n- [Beginner's guide to open-source contribution](https://workat.tech/general/article/open-source-contribution-guide-xmhf1k601vdj) بواسطة [Sudipto Ghosh](https://github.com/pydevsg)\n- [8 non-code ways to contribute to open source](https://opensource.com/life/16/1/8-ways-contribute-open-source-without-writing-code) بواسطة [OpenSource](https://twitter.com/OpenSourceWay)\n- [What is Open Source Software? OSS Explained in Plain English](https://www.freecodecamp.org/news/what-is-open-source-software-explained-in-plain-english/) بواسطة [Jessica Wilkins](https://www.freecodecamp.org/news/author/jessica-wilkins/)\n- [How to Start an Open Source Project on GitHub – Tips from Building My Trending Repo](https://www.freecodecamp.org/news/how-to-start-an-open-source-project-on-github-tips-from-building-my-trending-repo/) بواسطة [@Rishit-dagli](https://github.com/Rishit-dagli)\n\n## باستخدام التحكم في الإصدار\n\n- [Think Like (a) Git](https://think-like-a-git.net/) - مقدمة Git \"للمبتدئين المتقدمين\".  رغن انهم ما زالوا يعانون من أجل إعطائك استراتيجية بسيطة لتجربة git بأمان.\n- [Try Git](https://docs.github.com/en/get-started/quickstart/set-up-git ) -تعلم Git في 15 دقيقة من داخل متصفحك مجانًا.\n- [Everyday Git](https://git-scm.com/docs/giteveryday) -الحد الأدنى من مجموعة الأوامر المفيدة لـ Everyday Git.\n- [Oh shit, git!](https://ohshitgit.com/) - كيفية الخروج من الأمور المشتركة `git` وصفت الأخطاء بلغة إنجليزية بسيطة ؛ انظر أيضا [Dangit, git!](https://dangitgit.com/) للصفحة بدون أقسم.\n- [Atlassian Git Tutorials](https://www.atlassian.com/git/tutorials) -دروس متنوعة حول استخدام \"git\".\n- [GitHub Git Cheat Sheet](https://education.github.com/git-cheat-sheet-education.pdf) (PDF)\n- [freeCodeCamp's Wiki on Git Resources](https://forum.freecodecamp.org/t/wiki-git-resources/13136)\n- [GitHub Flow](https://www.youtube.com/watch?v=juLIxo42A_s) (42:06) - يتحدث GitHub عن كيفية تقديم طلب سحب.\n- [GitHub Learning Resources](https://docs.github.com/en/get-started/quickstart/git-and-github-learning-resources) - موارد التعلم Git و GitHub.\n- [Pro Git](https://git-scm.com/book/en/v2) - كتاب Pro Git بأكمله ، كتبه سكوت تشاكون وبن ستراوب ونشرته أبرس.\n- [Git-it](https://github.com/jlord/git-it-electron) - خطوة بخطوة تطبيق Git التعليمي لسطح المكتب.\n- [Flight Rules for Git](https://github.com/k88hudson/git-flight-rules) -دليل حول ما يجب القيام به عندما تسوء الأمور.\n- [Git Guide for Beginners in Spanish](https://platzi.github.io/git-slides/#/) -دليل كامل للشرائح حول git و GitHub موضح باللغة الإسبانية. دليل كامل للشرائح حول git و GitHub موضح باللغة الإسبانية.\n- [Git Kraken](https://www.gitkraken.com/git-client) - تطبيق سطح المكتب `git` المرئي وعبر الأنظمة الأساسية والتفاعلية للتحكم في الإصدار.\n- [Git Tips](https://github.com/git-tips/tips) - مجموعة من النصائح والحيل الأكثر شيوعًا حول git.\n- [Git Best Practices](https://sethrobertson.github.io/GitBestPractices/) -التزم في كثير من الأحيان ، تمامًا لاحقًا ، انشر مرة واحدة: Git Best Practices.\n- [Git Interactive Tutorial](https://learngitbranching.js.org/) -تعلم Git بالطريقة الأكثر مرئية وتفاعلية.\n- [Complete Git and GitHub Tutorial](https://www.youtube.com/watch?v=apGV9Kg7ics) (1:12:39) - تجول Git و GitHub بالكامل بواسطة [Kunal Kushwaha](https://www.youtube.com/channel/UCBGOUQHNNtNGcGzVq5rIXjw).\n\n## كتب مفتوحة المصدر\n\n- [Producing Open Source Software](https://producingoss.com/) - إنتاج برمجيات مفتوحة المصدر هو كتاب عن الجانب الإنساني لتطوير البرمجيات مفتوحة المصدر. يصف كيف تعمل المشاريع الناجحة ، وتوقعات المستخدمين والمطورين ، وثقافة البرمجيات الحرة.\n- [Open Source Book Series](https://opensource.com/resources/ebooks) -تعرف على المزيد حول المصدر المفتوح والحركة المتزايدة المصدر المفتوح مع قائمة شاملة من الكتب الإلكترونية المجانية من https://opensource.com.\n- [Software Release Practice HOWTO](https://tldp.org/HOWTO/Software-Release-Practice-HOWTO/) - يصف HOWTO ممارسات الإصدار الجيدة لنظام Linux ومشاريع أخرى مفتوحة المصدر. باتباع هذه الممارسات ، ستجعل من السهل على المستخدمين إنشاء التعليمات البرمجية الخاصة بك واستخدامها قدر الإمكان ، وعلى المطورين الآخرين فهم التعليمات البرمجية الخاصة بك والتعاون معك لتحسينها.\n- [Open Sources 2.0 : The Continuing Evolution](https://archive.org/details/opensources2.000diborich) (2005) - Open Sources 2.0 عبارة عن مجموعة من المقالات الثاقبة والمثيرة للتفكير من قادة التكنولوجيا اليوم والتي تستمر في رسم الصورة التطورية التي تطورت في كتاب 1999 Open Sources: Voices from the Revolution.\n- [The Architecture of Open Source Applications](http://www.aosabook.org/en/git.html) - أظهر كيف تعمل الجوانب المختلفة لـ Git تحت الأغطية لتمكين مهام سير العمل الموزعة ، وكيف تختلف عن أنظمة التحكم في الإصدارات الأخرى (VCS).\n- [Open Sources: Voices from the Open Source Revolution](https://www.oreilly.com/openbook/opensources/book/) - مقالات من رواد المصادر المفتوحة مثل Linus Torvalds (Linux) و Larry Wall (Perl) و Richard Stallman (GNU).\n\n## مبادرات مساهمة المصدر المفتوح\n\n- [Up For Grabs](https://up-for-grabs.net/) - يحتوي على مشاريع ذات مواضيع صديقة للمبتدئين.\n- [First Contributions](https://firstcontributions.github.io/) - قم بأول مساهمة مفتوحة المصدر لك في 5 دقائق. أداة وبرنامج تعليمي لمساعدة المبتدئين على البدء في المساهمات. [Here](https://github.com/firstcontributions/first-contributions)هو رمز مصدر GitHub للموقع والفرصة لتقديم مساهمة في المستودع نفسه.\n- [First Timers Only](https://www.firsttimersonly.com/) - قائمة بالأخطاء التي تم تصنيفها \"لأول مرة فقط\".\n- [24 Pull Requests](https://24pullrequests.com) - 24 طلبات السحب هو مشروع لتعزيز التعاون مفتوح المصدر خلال شهر ديسمبر.\n- [Ovio](https://ovio.org) -منصة مع مجموعة منتقاة من المشاريع الصديقة للمساهمين. لديها [powerful issue search tool](https://ovio.org/issues)ودعنا نحفظ المشروعات والمشكلات لوقت لاحق.\n- [Google Summer of Code](https://summerofcode.withgoogle.com/) - برنامج مدفوع يتم تشغيله سنويًا بواسطة Google ويركز على جذب المزيد من مطوري الطلاب إلى تطوير البرمجيات مفتوحة المصدر.\n- [Rails Girls Summer of Code](https://railsgirlssummerofcode.org/) -برنامج زمالة عالمي للنساء والمبرمجين غير الثنائيين حيث يعملون في مشاريع مفتوحة المصدر قائمة ويوسعون مجموعة مهاراتهم.\n- [Major League Hacking Fellowship](https://fellowship.mlh.io/) - بديل للتدريب عن بعد للتقنيين الطموحين حيث يبنون أو يساهمون في مشاريع مفتوحة المصدر.\n- [Girlscript Summer of Code](https://gssoc.girlscript.tech/) هو برنامج مفتوح المصدر  لاجل الطلبه للمشاركه في مشاريع وكسب الجوائز وشهادة لاتمام التدريب مدته ثلاثة اشهر من مارس الى مايو وهناك تدريب اخر في فصل الشتاء\n- [Contribute-To-This-Project](https://github.com/Syknapse/Contribute-To-This-Project) هو برتامج تعليمي لمساعدة المبتدئيين في المشاركة في  المشاريع مفتوحة المصدر وتسهبل التعامل مع git, github\n\n## برامج مفتوحة المصدر للمشاركة فيها\n\n- [Google Summer of Code](https://summerofcode.withgoogle.com)\n- [FossAsia](https://fossasia.org)\n- [MLH Fellowship](https://fellowship.mlh.io)\n- [Outreachy](https://www.outreachy.org)\n- [Hacktoberfest](https://hacktoberfest.com/) - برنامج لتشجيع المساهمات مفتوحة المصدر. اربح هدايا مثل القمصان والملصقات عن طريق تقديم 4 طلبات سحب على الأقل في شهر أكتوبر.\n- [CNCF](https://events.linuxfoundation.org/kubecon-cloudnativecon-north-america/)\n- [Microsoft Reinforcement learning](https://www.microsoft.com/en-us/research/academic-program/rl-open-source-fest/)\n\n## License\n\n<a rel=\"license\" href=\"https://creativecommons.org/licenses/by-sa/4.0/\"><img alt=\"Creative Commons License\" style=\"border-width:0\" src=\"https://licensebuttons.net/l/by-sa/4.0/88x31.png\" /></a><br />هذا العمل مرخص بموجب أ <a rel=\"license\" href=\"\">Creative Commons Attribution-ShareAlike 4.0 الرخصة الدولية</a>.\n"
  },
  {
    "path": "README-BG.md",
    "content": "<!-- Do not translate this -->\n\n<details>\n  <summary>\n  <strong> Прочетете това ръководство и на други езици </strong>\n</summary>\n  <ul>\n  <li><a href=\"./README.md\"> English </a></li>\n  <li><a href=\"./README-MR.md\"> मराठी </a></li>\n  <li><a href=\"./README-BN.md\"> বাংলা </a></li>\n  <li><a href=\"./README-CN.md\"> 中文 </a></li>\n  <li><a href=\"./README-RU.md\"> русский </a></li>\n  <li><a href=\"./README-BG.md\"> български </a></li>\n  <li><a href=\"./README-RO.md\"> Românesc </a></li>\n  <li><a href=\"./README-IT.md\"> Italiano </a></li>\n  <li><a href=\"./README-ES.md\"> Español </a></li>\n  <li><a href=\"./README-pt-BR.md\"> Português (BR) </a></li>\n  <li><a href=\"./README-DE.md\"> Deutsch </a></li>\n  <li><a href=\"./README-GR.md\"> Ελληνικά </a></li>\n  <li><a href=\"./README-FR.md\"> Français </a></li>\n  <li><a href=\"./README-KO.md\"> 한국어 </a></li>\n</ul>\n</details>\n\n <!-- Do not translate this --> <!-- Този превод се стреми да е по-скоро смислен, отколкото прецизно точен -->\n\n # Добре дошли, доброволци на отворения код!\n\n[![Pull Requests Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat)](http://makeapullrequest.com) [![first-timers-only Friendly](https://img.shields.io/badge/first--timers--only-friendly-blue.svg)](http://www.firsttimersonly.com/) [![Check Resources](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml/badge.svg)](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml)\n\nТова е списък с ресурси, предназначени за хора, които са нови в допринасянето към отворения код (Open Source).\n\nАко откриете допълнителни ресурси, можете да на направите заявка за сливане(pull request).\n\n**Съдържание**\n\n- [Основи на допринасянето към отворения код Open Source](#Основи-на-допринасянето-към-отворения-код-Open-Source)\n- [Директно търсене в GitHub](#Директно-търсене-в-GitHub)\n- [Еко системата на Mozilla за доброволен принос](#Еко-системата-на-Mozilla-за-доброволен-принос)\n- [Полезни статии за начинаещи Open Source доброволци](#Полезни-статии-за-начинаещи-Open-Source-доброволци)\n- [Как да използваме контрол на версиите Version Control](#Как-да-използваме-контрол-на-версиите-Version-Control)\n- [Книги за отворения код](#Книги-за-отворения-код)\n- [Инициативи за принос към Open Source](#Инициативи-за-принос-към-Open-Source)\n- [Лицензи](#Лицензи)\n\n## Основи на допринасянето към отворения код Open Source\n\n- [Пълно ръководство за допринасянето към Open Source](https://medium.freecodecamp.org/the-definitive-guide-to-contributing-to-open-source-900d5f9f2282) by [@DoomHammerNG](https://twitter.com/DoomHammerNG)\n\n- [Въведение в Open Source](https://www.digitalocean.com/community/tutorial_series/an-introduction-to-open-source) - Инструкциите на DigitalOcean ще ви помогнат да изминете по-лесно пътя до успешен принос тук, в GitHub.\n\n- [SourceSort](https://www.sourcesort.com) - Колекция от проекти open source, които се нуждаят от помощ. Има възможност за търсене. Колекцията включва също и данни за неща, като например каква е процентната вероятност вашата заявка за сливане (pull request) да бъде одобрена и колко време са чака за отговор. Такива статистики биха били много полезни за начинаещи в open source приноса.\n\n- [Issuehub.io](http://issuehub.pro/) - Инструмент за търсене по етикет (label) или език на issue-та(ишута) в GitHub.\n\n- [Code Triage](https://www.codetriage.com/) - Друг инструмент за намиране на популярни хранилища (repositories) и issue-та. Предоставя възможност за филтриране по език и като цяло е много приятен за ползване.\n\n- [(Страхотно за начинаещи) Awesome-for-beginners](https://github.com/MunGell/awesome-for-beginners) - GitHub хранилище (repository), в което се събитат проекти с бъгове, подходящи за начинаещи. Всеки бъг има подходящи етикети за по-ясно описание.\n\n- [Open Source ръководства](https://opensource.guide/) - Колекция от ресурси за ентусиасти, общности и компании, които искат да научат как да стартитат свой или как да допринесат към Open Source проект.\n\n- [Github issue - 45 добри и лоши практики](https://hackernoon.com/45-github-issues-dos-and-donts-dfec9ab4b612) - Какво да правим и какво не в GitHub.\n\n- [GitHub ръководства](https://docs.github.com/) - Кратки ръководства как да използваме ефективно GitHub.\n\n- [Contribute to Open Source](https://github.com/danthareja/contribute-to-open-source) - Научете начина на работа в GitHub чрез добавяне на код към проект-симулация.\n\n- [Ръководства от Линукс фондацията за Open Source в бизнеса](https://www.linuxfoundation.org/resources/open-source-guides/) - Ръководства от Линукс фондацията за Open Source проекти в бизнеса\n\n- [CSS трикове - Пътеводител в Open Source етикета](https://css-tricks.com/open-source-etiquette-guidebook/) - Ръководство за Open Source етикета, написано от Kent C. Dodds и Sarah Drasner.\n\n- [От А до Я - ресурси за учащи](https://github.com/dipakkr/A-to-Z-Resources-for-Students) - Подбрани ресурси за обучение по различни програмни езици.\n\n- [Как да допринесем към първия си Open Source проект - практически насоки](https://blog.devcenter.co/contributing-to-your-first-open-source-project-a-practical-approach-1928c4cbdae) - Ръководство стъпка по стъпка как да допринесете към първия си Open Source проект, от [Abati Adewale](https://www.acekyd.com).\n\n- [Pull Request рулетка](http://www.pullrequestroulette.com/) - На този сайт можете да намерите списък с pull request-и, заявени за одобрение към Open Source проекти, качени в Github.\n\n- [\"Как да допринесем към Open Source проект в GitHub\" от Egghead.io](https://egghead.io/courses/how-to-contribute-to-an-open-source-project-on-github) - Видео-ръководство стъпка по стъпка как да започнем да даваме своя принос към Open Source проекти в GitHub.\n\n- [Принос към Open Source: Интерактивен наръчник - от начало до край](https://medium.com/@kevinjin/contributing-to-open-source-walkthrough-part-0-b3dc43e6b720) - Този наръчник за принос към Open Source обхваща всичко - от избора на подходящ проект, през обработването на issue, до получаване на одобрение за сливане на кода (merge).\n\n- [\"Как да допринесем към Open Source проект\" от Sarah Drasner](https://css-tricks.com/how-to-contribute-to-an-open-source-project/) - Авторът се фокусира върху подводните камъни при правенето на pull request (PR) към чужд проект в GitHub.\n\n- [\"Откъде да започнем с Open Source\" от Sayan Chowdhury](https://hackerearth.com/getstarted-opensource/) - Тази статия покрива ресурси за начинаещи в Open Source приноса, като взима за основа интересите и любимите езици на доброволците.\n\n## Директно търсене в GitHub\n\nЛинкове за търсене в GitHub, които водят до подходящи issue-та.\n\n- [is:issue is:open label:beginner](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Abeginner)\n- [is:issue is:open label:easy](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Aeasy)\n- [is:issue is:open label:first-timers-only](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Afirst-timers-only)\n- [is:issue is:open label:good-first-bug](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Agood-first-bug)\n- [is:issue is:open label:\"good first issue\"](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3A\"good+first+issue\")\n- [is:issue is:open label:starter](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Astarter)\n- [is:issue is:open label:up-for-grabs](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Aup-for-grabs)\n\n## Еко системата на Mozilla за доброволен принос\n\n- [Стават за първи бъг (Good First Bugs)](https://bugzilla.mozilla.org/buglist.cgi?quicksearch=sw:%22[good%20first%20bug]%22&limit=0) - Бъгове, които разработчиците са определили като подходящи за опознаване на Mozilla проекта.\n- [Учебни бъгове](https://bugzilla.mozilla.org/buglist.cgi?quicksearch=mentor%3A%40) - Учебни бъгове с предварително определен наставник, който е на разположение в чата (IRC), за да ви помогне, ако срещнете проблем, докато работите по отстраняване на бъга.\n- [Bugs Ahoy](http://www.joshmatthews.net/bugsahoy/) - Сайт, посветен на намиране на бъгове в Bugzilla.\n- [Firefox инструменти за разработчици (DevTools)](http://firefox-dev.tools/) - Сайт, посветен на бъгове в инструментите за разработчици към браузера Firefox.\n- [Започни с Mozilla](https://twitter.com/StartMozilla) - Профил в Тwitter на тема issue-та, подходящи за прохождащи в Mozilla еко системата разработчици\n\n## Полезни статии за начинаещи open source доброволци\n\n- [Как да изберем (и да допринесем към) своя първи Open Source проект](https://github.com/collections/choosing-projects) by [@GitHub](https://github.com/github)\n- [Как да открием и поправим първия си Open Source бъг](https://medium.freecodecamp.org/finding-your-first-open-source-project-or-bug-to-work-on-1712f651e5ba#.slc8i2h1l) by [@Shubheksha](https://github.com/Shubheksha)\n- [Само за начинаещи](https://kentcdodds.com/blog/first-timers-only) by [@kentcdodds](https://github.com/kentcdodds)\n- [Нека върнем добрината (и толерантността) в Open Source](http://www.hanselman.com/blog/BringKindnessBackToOpenSource.aspx) by [@shanselman](https://github.com/shanselman)\n- [Да навлезем в Open Source](https://www.nearform.com/blog/getting-into-open-source-for-the-first-time/) by [@mcdonnelldean](https://github.com/mcdonnelldean)\n- [Как да допринесем към Open Source](https://opensource.guide/how-to-contribute/) by [@GitHub](https://github.com/github/opensource.guide)\n- [Как да открием бъг в собствения си код](https://8thlight.com/blog/doug-bradbury/2016/06/29/how-to-find-bug-in-your-code.html) by [@dougbradbury](https://twitter.com/dougbradbury)\n- [Да усъвършенстваме Markdown](https://docs.github.com/features/mastering-markdown/) by [@GitHubGuides](https://docs.github.com/)\n- [Мисия първа: Страница на доброволците](https://forcrowd.medium.com/first-mission-contributors-page-df24e6e70705#.2v2g0no29) by [@forCrowd](https://github.com/forCrowd)\n- [Как да направите първия си Open Source принос само за 5 минути](https://medium.freecodecamp.org/how-to-make-your-first-open-source-contribution-in-just-5-minutes-aaad1fc59c9a) by [@roshanjossey](https://medium.freecodecamp.org/@roshanjossey)\n- [Хактобър фест 2019: Как да получите безплатна тениска -- дори и да сте нови в програмирането](https://medium.freecodecamp.org/hacktoberfest-2018-how-you-can-get-your-free-shirt-even-if-youre-new-to-coding-96080dd0b01b) by [@quincylarson](https://medium.freecodecamp.org/@quincylarson)\n- [Наръчник на горчивия опит в Open Source](https://medium.com/codezillas/a-bitter-guide-to-open-source-a8e3b6a3c1c4) by [@ken_wheeler](https://medium.com/@ken_wheeler)\n- [Наръчник на начинаещия разрабочик в първия му принос към Open Source - стъпка по стъпка](https://hackernoon.com/contributing-to-open-source-the-sharks-are-photoshopped-47e22db1ab86) by [@LetaKeane](http://www.letakeane.com/)\n- [Как да научим Git и GitHub в лесни стъпки (само за Windows)](https://medium.com/@ows_ali/be93518e06dc) by [@ows-ali](https://medium.com/@ows_ali)\n\n_Ресурси на български_\n\n- [Ръководство за начинаещи в Git](https://bul.moc9.com/beginner-s-guide-git)\n- [Първи стъпки в Git](https://blog.superhosting.bg/meet-git.html) - Статия\n- [Видео урок за GitHub](https://www.youtube.com/watch?v=jig4lzbzAgk)\n- [Git за професионалисти](https://git-scm.com//book/bg/v2) - Книгата \"Git за професионалисти\" с превод на български, написана от Scott Chacon и Ben Straub и издадена от Apress.\n\n## Как да използваме контрол на версиите Version Control\n\n- [Мисли като за Git](https://think-like-a-git.net/) - Въведение в Git, подгодящо за начинаещи с малки познания, но все още не знаещи много неща. Ресурсът ще ви даде проста и безопасна стратегия как да правите експерименти с Git\n- [Пробвайте Git](https://docs.github.com/en/get-started/quickstart/set-up-git) - Научете безплатно Git за 15 минути, работейки само в браузера.\n- [Git за всеки ден](https://git-scm.com/docs/giteveryday) - Минималното количество полезни Git команди, използвани всеки ден\n- [О, по дяволите, git!](https://ohshitgit.com/) - Как да избегнем често срещани `git` грешки; обясени просто. (Вижте също и) [Проклятие, git!](https://dangitgit.com/) страницата без псувни.\n- [Git ръководства от Atlassian](https://www.atlassian.com/git/tutorials/) - Различни ръководства за употребата на `git`.\n- [Пищов(Cheat Sheet) за Git на GitHub](https://education.github.com/git-cheat-sheet-education.pdf) (PDF)\n- [Eнциклопедия(wiki страници) с Git ресурси от freeCodeCamp](https://www.freecodecamp.org/forum/t/wiki-git-resources/13136)\n- [GitHub работен процес](https://www.youtube.com/watch?v=juLIxo42A_s) (42:06) - Видео презентация на трейнъри от GitHub на тема как да направим pull request.\n- [GitHub учебни ресурси](https://help.github.com/articles/git-and-github-learning-resources/) - Git и GitHub учебни ресурси.\n- [Git за професионалисти](https://git-scm.com/book/en/v2) - Книгата \"Git за професионалисти\", написана от Scott Chacon и Ben Straub и издадена от Apress.\n- [Git за професионалисти на български](https://git-scm.com//book/bg/v2) - Книгата \"Git за професионалисти\" с превод на български, написана от Scott Chacon и Ben Straub и издадена от Apress.\n- [Git-it](https://github.com/jlord/git-it-electron) - Десктоп приложение - Git ръководство стъпка по стъпка.\n- [Солидни правила за Git](https://github.com/k88hudson/git-flight-rules) - Наръчник какво да правим, когато нещата не вървят.\n- [Разбираемо въведение в Git и GitHub](https://codeburst.io/git-good-part-a-e0d826286a2a) - Наръчник, задължителен за всеки начинаещ в Git или GitHub, написан от Madhav Bahl. Покрива темата за GitHub като услуга и детайлизира концепцията за Git контрол на версиите.\n- [Git наръчник за начинаещи, на испански](https://platzi.github.io/git-slides/#/) - Пълен наръчник за Git и GitHub, под формата на слайдове на испански.\n- [Git Kraken](https://www.gitkraken.com/git-client) - Десктоп приложение за `git` контрол на версиите, което е платформено-независимо, интерактивно и с добра графика.\n- [Git съвети](https://github.com/git-tips/tips) - Колекция от най-използваните съвети и трикове за git.\n- [Най-добрите Git практики](https://sethrobertson.github.io/GitBestPractices/) - Commit-вай често, усъвършенствай по-късно, публикувай веднъж: най-добрите Git практики.\n\n## Книги за отворения код\n\n- [Да напишеш софтуер с отворен код](http://producingoss.com/) - \"Да напишеш Open Source софтуер\" е книга за човешката страна на процеса по разработване на Open Source. В нея се описва как функционира един успешен проект, какви са очакванията на потребители и разработчици и каква е културата на \"свободния софтуер\".\n- [Open Source - колекция издания](https://opensource.com/resources/ebooks) - Научете повече за Open Source и за Движенитето за Отворен код - списък с безплатни е-книги от <https://opensource.com>.\n- [Практическо ръководство за публикуване на софтуер](http://en.tldp.org/HOWTO/Software-Release-Practice-HOWTO/) - Това практическо ръководство описва добри практики за публикуване на Линукс проекти или други с отворен код. Следвайки дадените практически насоки, вие ще направите вашия код лесен за стартиране и използване от потребителите, а за разработчиците - лесен за разбиране и доизграждане.\n- [Отворен код 2.0 : Еволюция на доброволния принос](https://archive.org/details/opensources2.000diborich) (2005) - Отворен код 2.0 е колекция от проницателни и провокативни есета, написани от технологичните лидери на нашето съвремие. Колекцията е еволюционното продължение на революционната книга от 1999 \"Отворения код: Гласът на революцията\".\n- [Архитектура на приложенията с отворен код](http://www.aosabook.org/en/git.html) - Статията показва от различен ъгъл как работата под Git всъщност е типичен дистрибутивен работния процес и как се различава от други видове системи за контрол на версиите.\n\n## Инициативи за принос към Open Source\n\n- [Up For Grabs](http://up-for-grabs.net/#/) - Сайтът съдържа проекти с issue-та, подходящи за начинаещия\n- [Само за начинаещи](http://www.firsttimersonly.com/) - Списък с бъгове с етикет \"само-за-начинаещи\".\n- [Първи принос](https://firstcontributions.github.io/) - Дайте приноса си към Open Source само за 5 минути. Тук се съдържат инструмент и насоки как начинаещите да започнат да допринасят. [Тук линкът](https://github.com/firstcontributions/first-contributions) води към отворения код в GitHub на сайта и е предоставена възможност за принос към самото хранилище.\n- [Хактобер фест](https://hacktoberfest.digitalocean.com/) - Програма, която да окуражава доброволците. Можете да спечелите подаръци, като например тениски или стикери, ако направите най-малко 4 заявки за сливане(pull requests) през месец октомври.\n- [24 заявки за сливане(Pull Requests)](https://24pullrequests.com) - 24 заявки за сливане(Pull Requests) е проект, който иска да даде гласност на съвместната работа по Open Source проекти през месец декември.\n\n## Лицензи\n\n[![Creative Commons License](https://i.creativecommons.org/l/by-sa/4.0/88x31.png)](http://creativecommons.org/licenses/by-sa/4.0/)<br>\nТази статия използва следния лиценз: [Creative Commons Attribution-ShareAlike 4.0 International License](http://creativecommons.org/licenses/by-sa/4.0/).\n"
  },
  {
    "path": "README-BN.md",
    "content": "﻿<!-- Do not translate this -->\n<details>\n<summary>\n<strong> অন্যান্য ভাষায় এই গাইডটি পড়ুন </strong>\n</summary>\n    <ul>\n        <li><a href=\"./README.md\"> English </a></li>\n        <li><a href=\"./README-MR.md\"> मराठी </a></li>\n        <li><a href=\"./README-BN.md\"> বাংলা </a></li>\n        <li><a href=\"./README-CN.md\"> 中文 </a></li>\n        <li><a href=\"./README-RU.md\"> русский </a></li>\n        <li><a href=\"./README-RO.md\"> Românesc </a></li>\n        <li><a href=\"./README-IT.md\"> Italiano </a></li>\n        <li><a href=\"./README-ES.md\"> Español </a></li>\n        <li><a href=\"./README-pt-BR.md\"> Português (BR) </a></li>\n        <li><a href=\"./README-DE.md\"> Deutsch </a></li>\n        <li><a href=\"./README-HE.md\"> עברית </a></li>\n        <li><a href=\"./README-GR.md\"> Ελληνικά </a></li>\n        <li><a href=\"./README-FR.md\"> Français </a></li>\n        <li><a href=\"./README-TR.md\"> Turkish </a></li>\n        <li><a href=\"./README-KO.md\"> 한국어 </a></li>\n        <li><a href=\"./README-JA.md\"> 日本語 </a></li>\n        <li><a href=\"./README-HI.md\"> हिंदी </a></li>\n        <li><a href=\"./README-FA.md\"> فارسی </a></li>\n    </ul>\n</details>\n<!-- Do not translate this -->\n\n# ওপেন সোর্সে আসা নতুন কন্ট্রিবিউটরদের স্বাগতম!\n\n[![Pull Requests Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat)](http://makeapullrequest.com)\n[![first-timers-only Friendly](https://img.shields.io/badge/first--timers--only-friendly-blue.svg)](https://www.firsttimersonly.com/)\n[![Check Resources](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml/badge.svg)](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml)\n\nনতুন যারা ওপেন সোর্সে অবদান রাখতে ইচ্ছুক তাদের জন্য নিচে একটি রিসোর্সের তালিকা দেওয়া হল।\n\nআপনার কাছে যদি আরও রিসোর্স থাকে, তবে একটি পুল রিকোয়েস্ট করার জন্য অনুরোধ করা হল।\n\nআপনার যদি কোনো প্রশ্ন বা মন্তব্য থাকে, তবে দয়া করে একটি ইস্যু তৈরি করুন।\n\n**সূচীপত্র**\n\n- [সাধারণভাবে ওপেন সোর্স-এ অবদান রাখার জন্য](#সাধারণভাবে-ওপেন-সোর্স-এ-অবদান-রাখার-জন্য)\n- [সরাসরি গিটহাব অনুসন্ধান](#সরাসরি-গিটহাব-অনুসন্ধান)\n- [মজিলার অবদানকারী ইকোসিস্টেম](#মজিলার-অবদানকারী-ইকোসিস্টেম)\n- [নতুন ওপেন সোর্স কন্ট্রিবিউটরদের জন্য দরকারী নিবন্ধ](#নতুন-ওপেন-সোর্স-কন্ট্রিবিউটরদের-জন্য-দরকারী-নিবন্ধ)\n- [ভার্সন কন্ট্রোলের ব্যবহার](#ভার্সন-কন্ট্রোলের-ব্যবহার)\n- [ওপেন সোর্স বইসমূহ](#ওপেন-সোর্স-বইসমূহ)\n- [ওপেন সোর্স অবদানের উদ্যোগ সম্পর্কে](#ওপেন-সোর্স-অবদানের-উদ্যোগ)\n- [লাইসেন্স](#লাইসেন্স)\n\n## সাধারণভাবে ওপেন সোর্স-এ অবদান\n- [ওপেন সোর্সে অবদান রাখার সংজ্ঞা নির্দেশিকা](https://www.freecodecamp.org/news/the-definitive-guide-to-contributing-to-open-source-900d5f9f2282/) by [@DoomHammerNG](https://twitter.com/DoomHammerNG)\n- [ওপেন সোর্স সম্পর্কে বিবরণ](https://www.digitalocean.com/community/tutorial_series/an-introduction-to-open-source) - গিটহাবে একটি সাকসেসফুল কন্ট্রিবিউট করার জন্য DigitalOcean-এর টিউটোরিয়ালগুলো আপানকে যেভাবে গাইড করবে।\n- [Issuehub.io](http://issuehub.pro/) - গিটহাব ইস্যু লেবেল এবং ভাষা দিয়ে অনুসন্ধান করার একটি টুল।\n- [Code Triage](https://www.codetriage.com/) - Code Triage একটি টুল যার মাধ্মে জনপ্রিয় রিপোসিটোরি এবং বাগ গুলো ল্যাঙ্গুয়েজ দিয়ে খুঁজে পেতে সাহায্য করবে।\n- [নতুনদের জন্য দুর্দান্ত](https://github.com/MunGell/awesome-for-beginners) - একটি গিটহাব রিপোসিটোরি যা নতুন অবদানকারীদের জন্য ভাল বাগ সহ প্রকল্পগুলিকে সংগ্রহ করে এবং সেগুলি বর্ণনা করার জন্য লেবেল প্রয়োগ করে।\n- [ওপেন সোর্স নির্দেশিকা](https://opensource.guide/) - কোনও ওপেন সোর্স প্রকল্প কীভাবে চালনা এবং প্রকল্পগুলোতে অবদান রাখতে হয় তা শিখতে চায় এমন ব্যক্তি, সম্প্রদায় এবং সংস্থাগুলির জন্য সংস্থান সংগ্রহ।\n- [৪৫ গিটহাব ইস্যু : কি করবেন এবং কি করবেন না](https://hackernoon.com/45-github-issues-dos-and-donts-dfec9ab4b612) - গিটহাবে কি করবেন এবং কি করবেন না।\n- [গিটহাব নির্দেশিকা](https://docs.github.com/) - কীভাবে গিটহাবকে কার্যকরভাবে ব্যবহার করতে হবে তার প্রাথমিক নির্দেশিকা। \n- [ওপেন সোর্সে অবদান](https://github.com/danthareja/contribute-to-open-source) - সিমুলেশন প্রকল্পে কোড কন্ট্রিবিউট করার মাধ্যমে গিটহাব ওয়ার্কফ্লো শিখুন।\n- [লিনাক্স ফাউন্ডেশন কর্তৃক এন্টারপ্রাইজের জন্য ওপেন সোর্স নির্দেশিকা ](https://www.linuxfoundation.org/resources/open-source-guides) - ওপেন সোর্স প্রকল্পের জন্য লিনাক্স ফাউন্ডেশনের নির্দেশিকা।\n- [CSS ট্রিকস: একটি ওপেন সোর্স শিষ্টাচার শেখার গাইড বই](https://css-tricks.com/open-source-etiquette-guidebook/) - ক্যান্ট সি ডড্ডস এবং সারাহ ড্র্যাসনারের লিখিত একটি ওপেন সোর্স শিষ্টাচার গাইডবুক।\n- [শিক্ষার্থীদের জন্য A টু Z রিসোর্সসমূহ](https://github.com/dipakkr/A-to-Z-Resources-for-Students) - কলেজ ছাত্রদের জন্য একটি নতুন কোডিং ভাষা শেখার জন্য সংস্থান এবং সুযোগের বিশেষভাবে সংকলিত তালিকা।\n- [Pull Request Roulette](http://www.pullrequestroulette.com/) - এই সাইটে গিটহাবে হোস্ট করা ওপেন সোর্স প্রকল্পগুলির অন্তর্গত পর্যালোচনার জন্য জমা দেওয়া পুল রিকুয়েস্টগুলির একটি তালিকা রয়েছে।\n- [Egghead.io দ্বারা রচিত \"গিটহাবের ওপেন সোর্স প্রকল্পে কীভাবে অবদান রাখা যায়\"](https://egghead.io/courses/how-to-contribute-to-an-open-source-project-on-github) - গিটহাবের ওপেন সোর্স প্রকল্পগুলিতে কীভাবে কনট্রিবিউট করা শুরু করা যায় তার একটি স্টেপ বাই স্টেপ ভিডিও গাইড।\n- [ওপেন সোর্স-এ অবদান: শুরু থেকে শেষ পর্যন্ত একটি লাইভ পর্যালোচনা।](https://medium.com/@kevinjin/contributing-to-open-source-walkthrough-part-0-b343e6b720) - ওপেন সোর্সে অবদানের এই নির্দেশিকাটি উপযুক্ত প্রকল্প বাছাই করা থেকে শুরু করে কোনও ইস্যুতে কাজ করা, PR-কে একীভূত করা সবকিছুই অন্তর্ভুক্ত করে।\n- [সারা ড্রাসনার দ্বারা রচিত \"ওপেন সোর্স প্রকল্পে কীভাবে অবদান রাখবেন\"](https://css-tricks.com/how-to-contribute-to-an-open-source-project/) - তারা গিটহাবের অন্য কারও প্রজেক্টে একটি পুল রিকুয়েস্ট (PR) কনট্রিবিউট করার মত নব্যতা-সাহসের উপরে মনোনিবেশ করছেন।\n- [সায়ান চৌধুরী দ্বারা রচিত \"কীভাবে ওপেন সোর্স দিয়ে শুরু করবেন\"](https://www.hackerearth.com:443/getstarted-opensource/) - এই নিবন্ধটি তাদের পছন্দের ভাষার আগ্রহের উপর ভিত্তি করে নতুনদের জন্য ওপেন সোর্সে অবদান রাখার সংস্থানগুলি বর্ণনা করে।\n- [\"ওপেন সোর্সে কনট্রিবিউট করার কাজ শুরু করার জন্য প্রথমদিকের ভাল সমস্যাগুলি অনুসন্ধান করুন\"](https://github.blog/2020-01-22-browse-good-first-issues-to-start-contributing-to-open-source/) - গিটহাব এখন আপনাকে ওপেন সোর্সে কনট্রিবিউট করার কাজ শুরু করার জন্য প্রথম ভাল সমস্যাগুলি খুঁজে পেতে সহায়তা করে।\n- [মেরিনা জেড দ্বারা রচিত \"ওপেন সোর্স প্রকল্পে কীভাবে অবদান রাখতে হয়\"](https://rubygarage.org/blog/how-contribute-to-open-source-projects) - এই বিস্তৃত নিবন্ধটি ব্যবসায়ের দিকে লক্ষ্য করে পরিচালিত হয়েছে (তবে স্বতন্ত্র কন্ট্রিবিউটরদের জন্য এখনও কার্যকর) যেখানে এটি কেন, কীভাবে, এবং কোন ওপেন-সোর্স প্রজেক্টগুলিতে কনট্রিবিউট করতে হবে সে সম্পর্কে আলোচনা করে।\n- [এনড্রু দ্বারা রচিত \"এখানে-শুরু-করুন-নির্দেশিকা\"](https://github.com/zero-to-mastery/start-here-guidelines) - আসুন ওপেনসোর্স বিশ্বে কাজ শুরু করা যাক। বিশেষত শিক্ষা এবং ব্যবহারিক অভিজ্ঞতার উদ্দেশ্যে ডিজাইন করা\n- [নামফোকাস দ্বারা রচিত \"ওপেন সোর্সে কাজ শুরু করা\"](https://github.com/numfocus/getting-started-with-open-source) - একটি গিটহাব রিপো যা কনট্রিবিউটরদের প্রথম দিকে কনট্রিবিউট করার সময়ে সকল বাধা-বিপত্তি দূরীকরণে সাহায্য করে।\n- [Chryz-hub দ্বারা রচিত \"সবার জন্য ওপেনসোর্স\"](https://github.com/chryz-hub/opensource-4-everyone) - ওপেন সোর্সে Pull Requests Welcome | First-Timers-Only | Friendly Check | Resources সকল তথ্য নিয়ে গঠিত একটি রিপোজিটরি। এখানে গিটহাবের সদস্য নিয়ে, গিট এর বেসিক থেকে এডভান্সড লেভেল পর্যন্ত আলোচনা, ওপেন সোর্সে কাজ শুরু করার জন্য কি কি করতে হবে তার সবকিছু নিয়েই বিস্তারিত আলোচনা করা হয়েছে।\n- [মুক্ত উপদেশ](http://open-advice.org/) - অনেকগুলো বিনামূল্যে দেয়া সফটওয়্যার প্রজেক্ট থেকে নিয়ে এই উপদেশ ভান্ডার গঠিত। ৪২ জন দক্ষ কনট্রিবিউটররা কি জানতে চান, তারা যে ধরণের প্রজেক্টেই কনট্রিবিউট করতে চান না কেন সবকিছুর ক্ষেত্রেই এসব কাজে লাগবে।\n- [\"গিটহাব শেখার ল্যাব\"](https://lab.github.com/) - গিটহাব এর শেখার ল্যাব থেকে আপনার স্কিল ডেভলাপ করতে পারবেন। আমাদের বন্ধুসুলভ বট গুলো আনন্দের সাথে বিভিন্ন প্র্যাকটিকাল প্রজেক্টে কাজ করানোর মাধ্যমে আপনাকে অনেক কিছু শেখাবে। আপনি এসব শেখার সাথে আপনার মূল্যবান মতামত ও প্রদান করতে পারবেন।\n- [\"নতুন কনট্রিবিউটরদের নতুন প্রজেক্টে কনট্রিবিউট করাকালীন গুরুত্তপূর্ণ ১০ টি নিয়ম\"](https://dx.plos.org/10.1371/journal.pcbi.1007296) - বিভিন্ন কমিউনিটির সদস্য সংখ্যা, দলনেতা সহ বিভিন্ন কিছুর সাথে মিল রেখে বেশ কিছু সাজেশন দিয়ে থাকে এই আর্টিকেলটি।\n- [\"গিটহাবে কনট্রিবিউট করার জন্য স্টেপ বাই স্টেপ গাইডলাইন\"](https://www.dataschool.io/how-to-contribute-on-github/) - একটি ওপেন সোর্স প্রজেক্টে কাজ করার জন্য বিভিন্ন দরকারী লিংক এবং অন্যান্য রিসোর্স দ্বারা স্টেপ বাই স্টেপ পদ্ধতি বর্ণনা করা আছে।\n\n## সরাসরি গিটহাব অনুসন্ধান\n\nগিটহাবের অবদানের জন্য উপযুক্ত বিষয়গুলিতে সরাসরি নির্দেশিত লিঙ্কগুলি অনুসন্ধান করুন।\n\n- [is:issue is:open label:beginner](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Abeginner)\n- [is:issue is:open label:easy](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Aeasy)\n- [is:issue is:open label:first-timers-only](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Afirst-timers-only)\n- [is:issue is:open label:good-first-bug](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Agood-first-bug)\n- [is:issue is:open label:\"good first issue\"](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3A\"good+first+issue\")\n- [is:issue is:open label:starter](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Astarter)\n- [is:issue is:open label:up-for-grabs](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Aup-for-grabs)\n\n## মজিলায় কনট্রিবিউট করার ইকোসিস্টেম\n\n- [ভাল প্রথম বাগ](https://bugzilla.mozilla.org/buglist.cgi?quicksearch=sw:%22[good%20first%20bug]%22&limit=0) - কিছু বাগ যা ডেভলাপারেরা তাদের প্রজেক্টের জন্য একটি ভাল ভূমিকা হিসাবে চিহ্নিত করেছেন।\n- [এমডিএন ওয়েব বাগ](https://developer.mozilla.org/en-US/docs/MDN/Contribute) - কনটেন্ট ইস্যু এবং প্লাটফর্মে থাকা বাগ গুলো ফিক্স করার মাধ্যমে এমডিএন এর ওয়েব ডক্স টীমকে সাহায্য করতে পারেন।\n- [মেন্টরড বাগ](https://bugzilla.mozilla.org/buglist.cgi?quicksearch=mentor%3A%40) - কিছু বাগ যাদের জন্য একজন পরামর্শদাতা নিয়োগ পেয়েছেন যিনি IRC-তে থাকবেন এবং যখন আপনি কোনও কাজ করার সময় আটকে পড়লে আপনাকে তিনি সহায়তা করবেন।\n- [Bugs Ahoy](https://www.joshmatthews.net/bugsahoy/) - Bugzilla-তে বাগ অনুসন্ধান করার জন্য উত্সর্গীকৃত একটি সাইট।\n- [ফায়ারফক্স ডেভটুলস](http://firefox-dev.tools/) - ফায়ারফক্স ব্রাউজারে বিকাশকারী সরঞ্জামগুলির জন্য দায়ের করা বাগগুলির জন্য উত্সর্গীকৃত একটি সাইট।\n- [মজিলা শুরু করুন](https://twitter.com/StartMozilla) - একটি টুইটার অ্যাকাউন্ট যা মজিলা ইকোসিস্টেমে নতুন কন্ট্রিবিউটরদের জন্য ইস্যুগুলি সম্পর্কে টুইট করে।\n\n## নতুন ওপেন সোর্স কন্ট্রিবিউটরদের জন্য দরকারী নিবন্ধ\n\n- [আপনার প্রথম ওপেন সোর্স প্রকল্পটি কীভাবে নির্বাচন করবেন (এবং এতে অবদান রাখবেন)](https://github.com/collections/choosing-projects) by [@GitHub](https://github.com/github)\n- [ঠিক করার জন্য আপনার প্রথম ওপেন সোর্স বাগটি কীভাবে খুঁজে পাবেন](https://www.freecodecamp.org/news/finding-your-first-open-source-project-or-bug-to-work-on-1712f651e5ba/) by [@Shubheksha](https://github.com/Shubheksha)\n- [শুধুমাত্র প্রথম Timers-দের জন্য](https://kentcdodds.com/blog/first-timers-only) by [@kentcdodds](https://github.com/kentcdodds)\n- [ আপনার উদারতাটিকে ওপেন সোর্সে ফিরিয়ে আনুন](https://web.archive.org/web/20201009150545/https://www.hanselman.com/blog/bring-kindness-back-to-open-source) by [@shanselman](https://github.com/shanselman)\n- [প্রথমবারের জন্য ওপেন সোর্সে প্রবেশ করা](https://www.nearform.com/blog/getting-into-open-source-for-the-first-time/) by [@mcdonnelldean](https://github.com/mcdonnelldean)\n- [ওপেন সোর্সে কীভাবে অবদান রাখবেন](https://opensource.guide/how-to-contribute/) by [@GitHub](https://github.com/github/opensource.guide)\n- [আপনার কোডে কীভাবে কোনও বাগ খুঁজে পাবেন](https://8thlight.com/insights/how-to-find-a-bug-in-your-code) by [@dougbradbury](https://twitter.com/dougbradbury)\n- [মার্কডাউন প্রভুত্ব করুন](https://docs.github.com/features/mastering-markdown/) by [@GitHub](https://github.com/github/docs)\n- [প্রথম মিশন: কন্ট্রিবিউটরদের পৃষ্ঠা](https://forcrowd.medium.com/first-mission-contributors-page-df24e6e70705#.2v2g0no29) by [@forCrowd](https://github.com/forCrowd)\n- [মাত্র ৫ মিনিটে কীভাবে আপনার প্রথম ওপেন সোর্স অবদান রাখবেন](https://www.freecodecamp.org/news/how-to-make-your-first-open-source-contribution-in-just-5-minutes-aaad1fc59c9a/) by [@roshanjossey](https://github.com/Roshanjossey/)\n- [Hacktoberfest 2019: আপনি কীভাবে আপনার ফ্রি শার্টটি পেতে পারেন - আপনি কোডিংয়ে নতুন হয়ে থাকলেও](https://www.freecodecamp.org/news/hacktoberfest-2018-how-you-can-get-your-free-shirt-even-if-youre-new-to-coding-96080dd0b01b/) by [@quincylarson](https://www.freecodecamp.org/news/author/quincylarson/)\n- [ওপেন সোর্সের জন্য তিক্ত গাইড](https://medium.com/codezillas/a-bitter-guide-to-open-source-a8e3b6a3c1c4) by [@ken_wheeler](https://medium.com/@ken_wheeler)\n- [প্রথমবারের মতো ওপেন সোর্সে অবদান রাখার জন্য একজন জুনিয়র বিকাশকারীদের জন্য ধাপে ধাপে নির্দেশিকা](https://hackernoon.com/contributing-to-open-source-the-sharks-are-photoshopped-47e22db1ab86) by [@LetaKeane](https://hackernoon.com/u/letakeane)\n- [গিট এবং গিটহাব ধাপে ধাপে শিখুন (উইন্ডোজে)](https://medium.com/illumination/path-to-learning-git-and-github-be93518e06dc) by [@ows-ali](https://medium.com/@ows_ali)\n- [কেন ওপেন সোর্স এবং কিভাবে?](https://careerkarma.com/blog/open-source-projects-for-beginners/) by [@james-gallagher](https://careerkarma.com/blog/author/jamesgallagher/)\n- [ওপেন সোর্স দিয়ে কীভাবে শুরু করবেন - By Sayan Chowdhury](https://www.hackerearth.com/getstarted-opensource/)\n- [কোন ওপেন সোর্সে আমার অবদান রাখা উচিৎ](https://kentcdodds.com/blog/what-open-source-project-should-i-contribute-to/) by [@kentcdodds](https://github.com/kentcdodds)\n- [ওপেন সোর্সের জন্য একটি নিমজ্জিত পরিচায়ক নির্দেশিকা](https://developeraspire.hashnode.dev/an-immersive-introductory-guide-to-open-source) by [Franklin Okolie](https://twitter.com/DeveloperAspire)\n- [ওপেন সোর্সে অবদান রাখা শুরু করা](https://stackoverflow.blog/2020/08/03/getting-started-with-contributing-to-open-source/) by [Zara Cooper](https://stackoverflow.blog/author/zara-cooper/)\n- [ওপেন সোর্স অবদানের জন্য শিক্ষানবিস গাইড](https://workat.tech/general/article/open-source-contribution-guide-xmhf1k601vdj) by [Sudipto Ghosh](https://github.com/pydevsg)\n- [ওপেন সোর্সে অবদান রাখার ৮টি নন-কোড উপায়](https://opensource.com/life/16/1/8-ways-contribute-open-source-without-writing-code) by [OpenSource](https://twitter.com/OpenSourceWay)\n- [ওপেন সোর্স সফটওয়্যার কি? ওএসএস প্লেইন ইংরেজিতে ব্যাখ্যা করা হয়েছে](https://www.freecodecamp.org/news/what-is-open-source-software-explained-in-plain-english/) by [Jessica Wilkins](https://www.freecodecamp.org/news/author/jessica-wilkins/)\n\n\n## ভার্সন কন্ট্রোলের ব্যবহার\n\n- [Think Like (a) Git](https://think-like-a-git.net/) - গিটের সাথে নিরাপদে পরীক্ষা করার জন্য আপনাকে একটি সহজ কৌশল দেওয়ার জন্য \"উন্নত সূচনাপ্রাপ্তদের\" জন্য গিট-এর পরিচিতি।\n- [Try Git](https://docs.github.com/en/get-started/quickstart/set-up-git) - আপনার ব্রাউজারের মধ্যে থেকে 15 মিনিটের মধ্যে বিনামূল্যে গিট শিখুন।\n- [Everyday Git](https://git-scm.com/docs/giteveryday) - প্রতিদিনের গিটের জন্য একটি কার্যকর সর্বনিম্ন কমান্ডের সেট।\n- [Oh shit, git!](https://ohshitgit.com/) - কীভাবে সরল ইংরেজিতে বর্ণিত সাধারণ `গিট` ভুল থেকে বেরিয়ে আসবেন; শপথ ছাড়াই পৃষ্ঠার জন্য [Dangit, git!] (https://dangitgit.com/) দেখুন।\n- [Atlassian Git Tutorials](https://www.atlassian.com/git/tutorials) - `গিট` ব্যবহার করার জন্য বিভিন্ন টিউটোরিয়াল।\n- [GitHub Git Cheat Sheet](https://education.github.com/git-cheat-sheet-education.pdf) (PDF)\n- [freeCodeCamp's Wiki on Git Resources](https://forum.freecodecamp.org/t/wiki-git-resources/13136)\n- [GitHub Flow](https://www.youtube.com/watch?v=juLIxo42A_s) (42:06) - গিটহাব কীভাবে পুল রিকুয়েস্ট করবেন তা সম্পর্কে কিছু কথা।\n- [গিটহাব শেখার সংস্থানসমূহ](https://docs.github.com/en/free-pro-team@latest/github/getting-started-with-github/git-and-github-learning-resources) - গিট এবং গিটহাব শেখার সংস্থানসমূহ।\n- [Pro Git](https://git-scm.com/book/en/v2) - স্কট চকন এবং বেন স্ট্রাব দ্বারা রচিত এবং অ্যাপ্রেস দ্বারা প্রকাশিত পুরো প্রো গিট বই।\n- [Git-it](https://github.com/jlord/git-it-electron) - ধাপে ধাপে গিট টিউটোরিয়াল ডেস্কটপ অ্যাপ্লিকেশন।\n- [Flight Rules for Git](https://github.com/k88hudson/git-flight-rules) - যখন জিনিসগুলি ভুল হয়ে যায় তখন কী করা উচিত সে সম্পর্কে একটি নির্দেশিকা।\n- [নতুনদের জন্য স্প্যানিশ ভাষায় রচিত গিট নির্দেশিকা](https://platzi.github.io/git-slides/#/) - গিট এবং গিটহাব সম্পর্কে স্লাইডসমূহের একটি সম্পূর্ণ নির্দেশিকা স্প্যানিশ ভাষায় ব্যাখ্যা করা হয়েছে। Una guía completa de diapositivas sobre git y GitHub explicadas en Español.\n- [Git Kraken](https://www.gitkraken.com/git-client) - সংস্করণ নিয়ন্ত্রণের জন্য ভিজ্যুয়াল, ক্রস-প্ল্যাটফর্ম এবং ইন্টারেক্টিভ `গিট` ডেস্কটপ অ্যাপ্লিকেশন।\n- [Git Tips](https://github.com/git-tips/tips) - সর্বাধিক ব্যবহৃত গিট টিপস এবং কৌশলগুলির সংগ্রহ।\n- [Git Best Practices](https://sethrobertson.github.io/GitBestPractices/) - প্রায়শই কমিট করুন, পরে নিখুঁত করুন, একবার প্রকাশ করুন: গিট সম্পর্কিত সেরা অভ্যাস।\n- [Git Interactive Tutorial](https://learngitbranching.js.org/) - গিটকে সবচেয়ে ভিজ্যুয়াল এবং ইন্টারেক্টিভ উপায়ে শিখুন।\n- [Complete Git and GitHub Tutorial](https://www.youtube.com/watch?v=apGV9Kg7ics) (1:12:39) - [কুনাল কুশওয়াহা] (https://www.youtube.com/channel/UCBGOUQHNNtNGcGzVq5rIXjw)এর সম্পূর্ণ গিট এবং গিটহাব ওয়াকথ্রু।\n\n## ওপেন সোর্স বইসমূহ\n\n- [Producing Open Source Software](https://producingoss.com/) - ওপেন সোর্স সফ্টওয়্যার তৈরি করা এবং ওপেন সোর্স বিকাশের মানবিক দিক সম্পর্কে একটি বই। এটি সফল প্রকল্পগুলি কীভাবে পরিচালনা করে, ব্যবহারকারী এবং বিকাশকারীদের প্রত্যাশা এবং বিনামূল্যে সফ্টওয়্যার সংস্কৃতি বর্ণনা করে। \n- [Open Source Book Series](https://opensource.com/resources/ebooks) - [https://opensource.com](https://opensource.com) থেকে ফ্রি ই-বুকের বিস্তৃত তালিকা সহ ওপেন সোর্স এবং ক্রমবর্ধমান ওপেন সোর্স আন্দোলন সম্পর্কে আরও জানুন।\n- [Software Release Practice HOWTO](https://tldp.org/HOWTO/Software-Release-Practice-HOWTO/) - এই HOWTO লিনাক্স এবং অন্যান্য ওপেন সোর্স প্রকল্পগুলির জন্য ভাল প্রকাশের অনুশীলনগুলি বর্ণনা করে। এই অনুশীলনগুলি অনুসরণ করে আপনি ব্যবহারকারীদের পক্ষে আপনার কোডটি তৈরি এবং এটি ব্যবহার করা এবং অন্যান্য বিকাশকারীদের আপনার কোড বুঝতে এবং এটি উন্নত করতে আপনাকে সহযোগিতা করার জন্য যথাসম্ভব সহজ করে তুলবে।\n- [Open Sources 2.0 : The Continuing Evolution](https://archive.org/details/opensources2.000diborich) (2005) - ওপেন সোর্স ২.০ হ'ল আজকের প্রযুক্তি নেতাদের অন্তর্দৃষ্টি এবং চিন্তা-চেতনা প্রবন্ধের একটি সংকলন যা ১৯৯৯ বইয়ের মুক্ত বিকাশ থেকে প্রকাশিত বিপ্লবী ছবি আঁকার কাজ চালিয়ে যাচ্ছে।\n- [The Architecture of Open Source Applications](http://www.aosabook.org/en/git.html) - বিতরণকৃত ওয়ার্কফ্লোগুলি সক্ষম করতে গিটের বিভিন্ন দিক কীভাবে কভারগুলির অধীনে কাজ করে এবং এটি অন্যান্য সংস্করণ নিয়ন্ত্রণ সিস্টেমের (VCS ) থেকে কীভাবে আলাদা তা দেখানো হয়েছে।\n- [Open Sources: Voices from the Open Source Revolution](https://www.oreilly.com/openbook/opensources/book/) - Linus Torvalds (Linux), Larry Wall (Perl), and Richard Stallman (GNU) এর মতো ওপেন সোর্স পথিকৃতদের প্রবন্ধ সংগ্রহ। \n\n## ওপেন সোর্স অবদানের উদ্যোগ\n\n- [Up For Grabs](https://up-for-grabs.net/) - প্রারম্ভিক-বন্ধুত্বপূর্ণ সমস্যাগুলির সাথে প্রকল্পগুলি ধারণ করে।\n- [First Contributions](https://www.firsttimersonly.com/) - ৫মিনিটের মধ্যে আপনার প্রথম ওপেন সোর্স অবদান রাখুন। অবদানের মাধ্যমে নতুনদের শুরু করতে সহায়তা করার জন্য একটি সরঞ্জাম এবং টিউটোরিয়াল। [এখানে](https://github.com/firstcontributes/first-contributes) সাইটের গিটহাব উৎস কোড রয়েছেএবং এই রিপোসিটোরিতে নিজেই অবদান রাখার সুযোগ নিন।\n- [Hacktoberfest](https://hacktoberfest.digitalocean.com/) - ওপেন সোর্স অবদানকে উত্সাহিত করার জন্য একটি প্রোগ্রাম অক্টোবর মাসে কমপক্ষে ৪টি পুল রিকুয়েস্ট করে টি-শার্ট এবং স্টিকারের মতো উপহারগুলি উপার্জন করুন।\n- [24 Pull Requests](https://24pullrequests.com) - ২৪ পুল রিকুয়েস্ট ডিসেম্বরের মাসে ওপেন সোর্স সহযোগিতার প্রচারের জন্য একটি প্রকল্প।\n- [Ovio](https://ovio.org) - অবদানকারী-বান্ধব প্রকল্পগুলির একটি সংযুক্ত নির্বাচনসহ প্ল্যাটফর্ম। এটির একটি [শক্তিশালী সমস্যা অনুসন্ধানের সরঞ্জাম](https://ovio.org/issues) রয়েছে এবং এখানে আপনি পরবর্তী প্রকল্পগুলি এবং সমস্যাগুলি সংরক্ষণ করতে পারবেন।\n- [Google Summer of Code](https://summerofcode.withgoogle.com/) – গুগল দ্বারা পরিচালিত একটি বার্ষিক অর্থ প্রদত্ত প্রোগ্রাম যা ওপেন-সোর্স সফ্টওয়্যার ডেভেলপমেন্টে আরও বেশি শিক্ষার্থী ডেভেলপার নিয়ে আসার উপর দৃষ্টি নিবদ্ধ করে।\n- [Rails Girls Summer of Code](https://railsgirlssummerofcode.org/) - মহিলাদের এবং নন-বাইনারী কোডারদের জন্য একটি বিশ্বব্যাপী ফেলোশিপ প্রোগ্রাম যেখানে তারা বিদ্যমান ওপেন-সোর্স প্রকল্পগুলিতে কাজ করে এবং তাদের দক্ষতা প্রসারিত করে।\n- [Major League Hacking Fellowship](https://fellowship.mlh.io/) - উচ্চাকাঙ্ক্ষী প্রযুক্তিবিদদের জন্য একটি বিকল্প রিমোট ইন্টার্নশিপ সুযোগ, যেখানে তারা ওপেন-সোর্স প্রকল্পগুলি তৈরি করে বা অবদান রাখে।\n\n\n## লাইসেন্স\n\n<a rel=\"license\" href=\"https://creativecommons.org/licenses/by-sa/4.0/\"><img alt=\"Creative Commons License\" style=\"border-width:0\" src=\"https://licensebuttons.net/l/by-sa/4.0/88x31.png\" /></a><br />এই কাজটি <a rel=\"license\" href=\"https://creativecommons.org/licenses/by-sa/4.0/\">Creative Commons Attribution-ShareAlike 4.0 International License</a>  এর অধীনে লাইসেন্স প্রাপ্ত।\n"
  },
  {
    "path": "README-CN.md",
    "content": "<table>\n    <tr>\n        <!-- Do not translate this table -->\n        <td><a href=\"./README.md\"> English </a></td>\n        <td><a href=\"./README-MR.md\"> मराठी </a></td>\n        <td><a href=\"./README-BN.md\"> বাংলা </a></td>\n        <td><a href=\"./README-CN.md\"> 中文 </a></td>\n        <td><a href=\"./README-RU.md\"> русский </a></td>\n        <td><a href=\"./README-RO.md\"> Românesc </a></td>\n        <td><a href=\"./README-IT.md\"> Italiano </a></td>\n        <td><a href=\"./README-ES.md\"> Español </a></td>\n        <td><a href=\"./README-pt-BR.md\"> Português (BR) </a></td>\n        <td><a href=\"./README-DE.md\"> Deutsch </a></td>\n        <td><a href=\"./README-GR.md\"> Ελληνικά </a></td>\n        <td><a href=\"./README-FR.md\"> Français </a></td>\n        <td><a href=\"./README-TR.md\"> Turkish </a></td>\n        <td><a href=\"./README-KO.md\"> 한국어 </a></td>\n    </tr>\n</table>\n\n# 欢迎新人开源贡献者！\n\n[![Pull Requests Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat)](http://makeapullrequest.com)\n[![first-timers-only Friendly](https://img.shields.io/badge/first--timers--only-friendly-blue.svg)](http://www.firsttimersonly.com/)\n[![Check Resources](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml/badge.svg)](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml)\n\n这是一个为新手贡献开源项目的人提供资源的列表。\n\n如果你发现其他资源，请创建一个拉取请求。\n\n如果你有问题或评论，请创建一个issue。\n\n**内容列表**\n\n- [在一般情况下为开源项目做贡献](#contributing-to-open-source-in-general)\n- [直接在GitHub上搜索](#direct-github-searches)\n- [Mozilla的贡献者生态系统](#mozillas-contributor-ecosystem)\n- [对新的开源贡献者有用的文章](#useful-articles-for-new-open-source-contributors)\n- [使用版本控制](#using-version-control)\n- [开源图书](#open-source-books)\n- [开源贡献计划](#open-source-contribution-initiatives)\n- [参与开源项目](#open-source-programs-to-participate-in)\n- [许可证](#license)\n\n## 在一般情况下为开源项目做贡献\n\n> 讨论开源世界和文化的文章和资源。\n\n\n- [The Definitive Guide to Contributing to Open Source](https://www.freecodecamp.org/news/the-definitive-guide-to-contributing-to-open-source-900d5f9f2282/) 由 [@DoomHammerNG](https://twitter.com/DoomHammerNG)编写的指南.\n- [An Intro to Open Source](https://www.digitalocean.com/community/tutorial_series/an-introduction-to-open-source) - DigitalOcean的教程将指导您在GitHub上取得贡献成功的道路。\n- [Code Triage](https://www.codetriage.com/) - 一个用于按语言筛选的流行存储库和issue查找工具。\n- [Forge Your Future with Open Source](https://pragprog.com/titles/vbopens/forge-your-future-with-open-source/) ($) - 致力于解释开源的书籍，介绍如何找到一个项目并开始贡献。包括软件开发中的所有角色，不仅限于程序员。\n- [Awesome-for-beginners](https://github.com/MunGell/awesome-for-beginners) - 一个GitHub仓库，汇集了一些适合新贡献者的优秀错误项目，并为它们添加标签进行描述。\n- [Open Source Guides](https://opensource.guide/) - 为个人、社区和公司提供资源集合，帮助他们学习如何运营和贡献开源项目。\n- [45 Github Issues Dos and Don’ts](https://hackernoon.com/45-github-issues-dos-and-donts-dfec9ab4b612) - GitHub上的注意事项。\n- [GitHub Guides](https://docs.github.com/en) -如何有效使用GitHub的基本指南。\n- [Contribute to Open Source](https://github.com/danthareja/contribute-to-open-source) - 通过为一个模拟项目贡献代码来学习GitHub工作流程。\n- [Linux Foundation's Open Source Guides for the Enterprise](https://www.linuxfoundation.org/resources/open-source-guides) - Linux基金会的开源项目指南。\n- [CSS Tricks An Open Source Etiquette Guidebook](https://css-tricks.com/open-source-etiquette-guidebook/) - 一个开源礼仪指南手册，由Kent C. Dodds和Sarah Drasner撰写。\n- [A to Z Resources for Students](https://github.com/dipakkr/A-to-Z-Resources-for-Students) - 大学生学习新编程语言的资源和机会精选清单。\n- [\"How to Contribute to an Open Source Project on GitHub\" by Egghead.io](https://egghead.io/courses/how-to-contribute-to-an-open-source-project-on-github) - 如何开始在GitHub上为开源项目做贡献的逐步视频指南。\n- [Contributing to Open Source: A Live Walkthrough from Beginning to End](https://medium.com/@kevinjin/contributing-to-open-source-walkthrough-part-0-b3dc43e6b720) - 这个开源贡献的指南涵盖了从选择一个合适的项目，解决问题到将PR合并的整个过程。\n- [\"How to Contribute to Open Source Project\" by Sarah Drasner](https://css-tricks.com/how-to-contribute-to-an-open-source-project/) - 他们正在专注于在GitHub上向他人的项目贡献拉取请求（PR）的细节。\n- [\"How to get started with Open Source\" by Sayan Chowdhury](https://www.hackerearth.com:443/getstarted-opensource/) - 本文介绍了针对初学者根据他们喜欢的编程语言兴趣所提供的参与开源项目的资源。\n- [\"Browse good first issues to start contributing to open source\"](https://github.blog/2020-01-22-browse-good-first-issues-to-start-contributing-to-open-source/) - GitHub现在可以帮助你找到适合初次贡献开源项目的问题。\n- [\"How to Contribute to Open Source Project\" by Maryna Z](https://rubygarage.org/blog/how-contribute-to-open-source-projects) - 这篇全面的文章是针对企业（但对个人贡献者仍然有用）的，它讨论了为什么、如何以及要参与哪些开源项目。\n- [\"start-here-guidelines\" by Andrei](https://github.com/zero-to-mastery/start-here-guidelines) - 让我们在开源世界中开始吧，在开源游乐场上起步。这个地方特别为教育和实践经验而设计。\n- [\"Getting Started with Open Source\" by NumFocus](https://github.com/numfocus/getting-started-with-open-source) - 一个GitHub仓库，帮助贡献者克服参与开源项目的障碍。\n- [\"Opensoure-4-everyone\" by Chryz-hub](https://github.com/chryz-hub/opensource-4-everyone) - 一个关于开源相关的仓库。这是一个旨在帮助提高GitHub成员可见性、练习基本和高级git命令、入门开源等方面的项目。\n- [\"Open Advice\"](http://open-advice.org/) - 从各种自由软件项目中收集知识。它回答了42位杰出贡献者在开始时想要知道的问题，这样无论你如何和在哪里做出贡献，都可以提前开始。\n- [\"GitHub Skills\"](https://skills.github.com) - 通过GitHub Skills提升您的技能水平。我们友好的机器人将带您完成一系列有趣、实用的项目，让您在短时间内学习所需技能，并提供有益反馈。\n- [\"Ten simple rules for helping newcomers become contributors to open projects\"](https://doi.org/10.1371/journal.pcbi.1007296) - 本文基于对许多社区的研究以及成员、领导者和观察者的经验，总结了一些规则。\n- [\"Step-by-Step guide to contributing on GitHub\"](https://www.dataschool.io/how-to-contribute-on-github/) - 一个逐步指南，配有支持性的图像和链接，介绍参与开源项目的整个过程。\n- [Open Source with Pradumna](https://github.com/Pradumnasaraf/open-source-with-pradumna) - 该存储库包含学习和入门开源、Git和GitHub的资源和材料。\n- [\"FOSS Community Acronyms\"](https://github.com/d-edge/foss-acronyms) - 此存储库包含FOSS（自由和开放源代码）社区中使用的缩写列表，以及它们的定义和用法。\n- [\"Open Source Fiesta - Open Source Fiesta\"](https://zubi.gitbook.io/open-source-fiesta/) - 逐步说明如何为GitHub存储库做出贡献，并包含一个git命令行速查表。\n- [\"6 Best Practices to Manage Pull Request Creation and Feedback\"](https://doordash.engineering/2022/08/23/6-best-practices-to-manage-pull-request-creation-and-feedback/) 来自DoorDash Engineering的软件工程师Jenna Kiyasu。\n- [\"Contribute to the Open-Source Community\"](https://arijitgoswami.hashnode.dev/contribute-to-the-open-source-community) - 开源软件的优势，如何理解开源项目的内部工作原理并进行首次贡献。\n- [\"Complete Guide to Open Source - How to Contribute\"](https://www.youtube.com/watch?v=yzeVMecydCE) (41:52) -了解为什么以及如何与Eddie Jaoude一起为开源软件做出贡献。\n\n## 直接在GitHub上搜索\n\n> 搜索直接指向适合贡献的GitHub问题的链接。\n\n- [is:issue is:open label:beginner](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Abeginner&type=issues)\n- [is:issue is:open label:easy](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Aeasy&type=issues)\n- [is:issue is:open label:first-timers-only](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Afirst-timers-only&type=issues)\n- [is:issue is:open label:good-first-bug](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Agood-first-bug&type=issues)\n- [is:issue is:open label:\"good first issue\"](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22&type=issues)\n- [is:issue is:open label:starter](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Astarter&type=issues)\n- [is:issue is:open label:up-for-grabs](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Aup-for-grabs&type=issues)\n- [is:issue is:open label:easy-fix](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Aeasy-fix&type=issues)\n- [is:issue is:open label:\"beginner friendly\"](https://github.com/search?q=beginner+friendly&state=open&type=Issues)\n\n## Mozilla的贡献者生态系统\n> Mozilla承诺为一个健康的互联网而努力，并且有机会为其开源项目做出贡献。\n\n- [Good First Bugs](https://bugzilla.mozilla.org/buglist.cgi?quicksearch=sw:%22[good%20first%20bug]%22&limit=0) - 开发人员认为这些bug是项目的良好入门。\n- [MDN Web Docs](https://developer.mozilla.org/en-US/docs/MDN/Contribute) - 通过修复内容问题和平台错误，帮助MDN Web Docs团队记录Web平台。\n- [Mentored Bugs](https://bugzilla.mozilla.org/buglist.cgi?quicksearch=mentor%3A%40) - 当你在修复的时候遇到问题会有指定的人通过网上交流的方式为你的提供帮助的bug。\n- [Bugs Ahoy](http://www.joshmatthews.net/bugsahoy/) - 一个专门用于在Bugzilla上寻找漏洞的网站。\n- [Firefox DevTools](http://firefox-dev.tools/) - 一个专门用于记录Firefox浏览器开发工具中的bug的网站。\n- [What Can I Do For Mozilla](http://whatcanidoformozilla.org/) - 通过回答一系列关于你的技能和兴趣的问题，找出你可以从事的工作。 \n- [Start Mozilla](https://twitter.com/StartMozilla) - 一个Twitter账号，专门发布适合刚加入Mozilla生态系统的贡献者关注的问题。\n\n## 对新的开源贡献者有用的文章\n\n> 针对新贡献者的有用文章和博客，教授如何入门。\n\n- [Finding ways to contribute to open source on GitHub](https://docs.github.com/en/get-started/exploring-projects-on-github/finding-ways-to-contribute-to-open-source-on-github) by [@GitHub](https://github.com/github)\n- [How to choose (and contribute to) your first Open Source project](https://github.com/collections/choosing-projects) by [@GitHub](https://github.com/collections)\n- [How to find your first Open Source bug to fix](https://www.freecodecamp.org/news/finding-your-first-open-source-project-or-bug-to-work-on-1712f651e5ba/) by [@Shubheksha](https://github.com/Shubheksha)\n- [First Timers Only](https://kentcdodds.com/blog/first-timers-only) by [@kentcdodds](https://github.com/kentcdodds)\n- [Bring Kindness Back to Open Source](https://web.archive.org/web/20201009150545/https://www.hanselman.com/blog/bring-kindness-back-to-open-source) by [@shanselman](https://github.com/shanselman)\n- [Getting into Open Source for the First Time](https://www.nearform.com/blog/getting-into-open-source-for-the-first-time/) by [@mcdonnelldean](https://github.com/mcdonnelldean)\n- [How to Contribute to Open Source](https://opensource.guide/how-to-contribute/) by [@GitHub](https://github.com/github/opensource.guide)\n- [How to Find a Bug in Your Code](https://8thlight.com/insights/how-to-find-a-bug-in-your-code) by [@dougbradbury](https://twitter.com/dougbradbury)\n- [Mastering Markdown](https://docs.github.com/en/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax) by [@GitHub](https://github.com/github/docs)\n- [First mission: Contributors page](https://forcrowd.medium.com/first-mission-contributors-page-df24e6e70705) by [@forCrowd](https://github.com/forCrowd)\n- [How to make your first Open Source contribution in just 5 minutes](https://www.freecodecamp.org/news/how-to-make-your-first-open-source-contribution-in-just-5-minutes-aaad1fc59c9a/) by [@roshanjossey](https://github.com/Roshanjossey/)\n- [I just got my free Hacktoberfest shirt. Here’s a quick way you can get yours.](https://www.freecodecamp.org/news/i-just-got-my-free-hacktoberfest-shirt-heres-a-quick-way-you-can-get-yours-fa78d6e24307/) by [@quincylarson](https://www.freecodecamp.org/news/author/quincylarson/)\n- [A Bitter Guide To Open Source](https://medium.com/codezillas/a-bitter-guide-to-open-source-a8e3b6a3c1c4) by [@ken_wheeler](https://medium.com/@ken_wheeler)\n- [A junior developer’s step-by-step guide to contributing to Open Source for the first time](https://hackernoon.com/contributing-to-open-source-the-sharks-are-photoshopped-47e22db1ab86) by [@LetaKeane](https://hackernoon.com/u/letakeane)\n- [Learn Git and GitHub Step By Step (on Windows)](https://medium.com/illumination/path-to-learning-git-and-github-be93518e06dc) by [@ows-ali](https://ows-ali.medium.com/)\n- [Why Open Source and How?](https://careerkarma.com/blog/open-source-projects-for-beginners/) by [@james-gallagher](https://careerkarma.com/blog/author/jamesgallagher/)\n- [How to get started with Open Source - By Sayan Chowdhury](https://www.hackerearth.com/getstarted-opensource/)\n- [What open-source should I contribute to](https://kentcdodds.com/blog/what-open-source-project-should-i-contribute-to) by [@kentcdodds](https://twitter.com/kentcdodds)\n- [An immersive introductory guide to Open-source](https://developeraspire.hashnode.dev/an-immersive-introductory-guide-to-open-source) by [Franklin Okolie](https://twitter.com/DeveloperAspire)\n- [Getting started with contributing to open source](https://stackoverflow.blog/2020/08/03/getting-started-with-contributing-to-open-source/) by [Zara Cooper](https://stackoverflow.blog/author/zara-cooper/)\n- [Beginner's guide to open-source contribution](https://workat.tech/general/article/open-source-contribution-guide-xmhf1k601vdj) by [Sudipto Ghosh](https://github.com/pydevsg)\n- [8 non-code ways to contribute to open source](https://opensource.com/life/16/1/8-ways-contribute-open-source-without-writing-code) by [OpenSource](https://twitter.com/OpenSourceWay)\n- [What is Open Source Software? OSS Explained in Plain English](https://www.freecodecamp.org/news/what-is-open-source-software-explained-in-plain-english/) by [Jessica Wilkins](https://www.freecodecamp.org/news/author/jessica-wilkins/)\n- [How to Start an Open Source Project on GitHub – Tips from Building My Trending Repo](https://www.freecodecamp.org/news/how-to-start-an-open-source-project-on-github-tips-from-building-my-trending-repo/) by [@Rishit-dagli](https://github.com/Rishit-dagli)\n- [Finding Good First Issues](https://community.codenewbie.org/bdougie/finding-good-first-issues-33a6) by [Brian Douglas](https://community.codenewbie.org/bdougie)\n- [How can I become an Open Source contributor? (The ultimate guide)](https://medium.com/@juliafmorgado/how-can-i-become-an-open-source-contributor-the-ultimate-guide-d746e380e011) by [Julia Furst Morgado](https://medium.com/@juliafmorgado)\n\n## 使用版本控制\n\n> 使用版本控制的教程和资源，通常是Git和GitHub，涵盖不同难度级别。\n\n- [Video tutorial for Git and Github by Harvard University](https://www.youtube.com/watch?v=NcoBAfJ6l2Q) - 哈佛大学的教程，是他们CS50网络开发课程中关于理解Git和GitHub以及使用Git命令的一部分。\n- [Think Like (a) Git](https://think-like-a-git.net/) - Git介绍给“高级初学者”，但仍在苦苦挣扎的人，为了给你一个简单的策略来安全地尝试使用git。\n- [Quickstart - Set up Git](https://docs.github.com/en/get-started/quickstart/set-up-git) - 学习如何在本地设置Git并进行身份验证，以及在您的学习之旅中的下一步。\n- [Everyday Git](https://git-scm.com/docs/giteveryday) - 每天使用Git的一个有用的最小命令集。\n- [Oh shit, git!](https://ohshitgit.com/) - 如何用简单易懂的英语解决常见的 `git` 错误；同时，也可以查看  [Dangit, git!](https://dangitgit.com/) 这个页面没有脏话。\n- [Atlassian Git Tutorials](https://www.atlassian.com/git/tutorials) - 使用 `git` 的各种教程。\n- [GitHub Git Cheat Sheet](https://education.github.com/git-cheat-sheet-education.pdf) (PDF)\n- [freeCodeCamp's Wiki on Git Resources](https://forum.freecodecamp.org/t/wiki-git-resources/13136)\n- [GitHub Flow](https://www.youtube.com/watch?v=juLIxo42A_s) (42:06) - 如何在GitHub上创建一个拉取请求的讲座。\n- [Quickstart - GitHub Learning Resources](https://docs.github.com/en/get-started/quickstart/git-and-github-learning-resources) - Git和GitHub学习资源。\n- [Pro Git](https://git-scm.com/book/en/v2) - 整本《Pro Git》书是由Scott Chacon和Ben Straub合著，由Apress出版。\n- [Git-it](https://github.com/jlord/git-it-electron) - 逐步Git教程桌面应用程序。\n- [Flight Rules for Git](https://github.com/k88hudson/git-flight-rules) - 当事情出错时该怎么做的指南。\n- [Git Guide for Beginners in Spanish](https://platzi.github.io/git-slides/#/) - 一个关于git和GitHub的幻灯片完整指南，用西班牙语解释。\n- [Git Kraken](https://www.gitkraken.com/git-client) - 视觉、跨平台和交互式的 `git` 桌面应用程序，用于版本控制。\n- [Git Tips](https://github.com/git-tips/tips) - 最常用的git提示和技巧收集。\n- [Git Best Practices](https://sethrobertson.github.io/GitBestPractices/) - 经常提交，稍后完善，一次发布：Git 最佳实践。\n- [Git Interactive Tutorial](https://learngitbranching.js.org/) - 以最直观和互动的方式学习Git。\n- [Git Cheat Sheets](https://devhints.io/?q=git) - 一套关于Git的图形备忘单。\n- [Complete Git and GitHub Tutorial](https://www.youtube.com/watch?v=apGV9Kg7ics) (1:12:39) - [Kunal Kushwaha](https://www.youtube.com/channel/UCBGOUQHNNtNGcGzVq5rIXjw)提供的全面Git和GitHub教程。\n- [A Tutorial Introduction to Git](https://git-scm.com/docs/gittutorial) - 一个由Git提供的初学者教程。\n- [First Aid Git](https://firstaidgit.io/#/) - 一个可搜索的收集了最常见 Git 问题的集合。这些问题的答案来自个人经验、Stackoverflow 和官方 Git 文档。\n- [Git by Susan Potter](https://www.aosabook.org/en/git.html) - 展示Git的各种技术细节是如何在幕后实现分布式工作流程，并且它与其他版本控制系统（VCS）有何不同。\n- [Git Tutorial for Beginners: Learn Git in 1 Hour](https://www.youtube.com/watch?v=8JJ101D3knE) -  由Mosh制作的适合初学者的Git视频，解释了基本命令，并使用易懂的插图帮助理解。\n\n## 开源书籍\n\n> 关于开源的各种书籍：文化、历史、最佳实践等。\n\n- [生产开源软件](https://producingoss.com/) - 《开源软件的生产》是一本关于开源开发的人性化方面的书籍。它描述了成功项目的运作方式，用户和开发者的期望以及自由软件文化。\n- [The Architecture of Open Source Applications](https://www.aosabook.org/en/index.html) - 24个开源应用程序的作者解释了他们的软件结构以及原因。从Web服务器和编译器到健康记录管理系统，这里都有涉及，旨在帮助您成为更好的开发者。\n- [Open Source Book Series](https://opensource.com/resources/ebooks) - 通过 https://opensource.com，了解更多关于开源和不断发展的开源运动的信息，其中包括一份全面的免费电子书列表。\n- [Software Release Practice HOWTO](https://tldp.org/HOWTO/Software-Release-Practice-HOWTO/) - 本HOWTO介绍了Linux和其他开源项目的良好发布实践。通过遵循这些实践，您将使用户能够尽可能轻松地构建和使用您的代码，并使其他开发人员能够理解您的代码并与您合作改进它。\n- [Open Sources 2.0 : The Continuing Evolution](https://archive.org/details/opensources2.000diborich) (2005) -《开放源代码2.0》是一本由当今科技领袖撰写的富有洞见和发人深省的文章集，延续了1999年出版的书籍《开放源代码：革命中的声音》所描绘的进化图景。\n- [Open Sources: Voices from the Open Source Revolution](https://www.oreilly.com/openbook/opensources/book/) - 来自开源先驱如Linus Torvalds（Linux）、Larry Wall（Perl）和Richard Stallman（GNU）的论文。\n\n## 开源贡献初步\n\n> 聚合初学者友好问题或季节性活动的倡议列表。\n\n- [Up For Grabs](https://up-for-grabs.net/) - 包含初学者友好的问题的项目。\n- [First Contributions](https://firstcontributions.github.io/) - 在5分钟内进行您的第一个开源贡献。提供工具和教程，帮助初学者开始做出贡献。 [Here](https://github.com/firstcontributions/first-contributions) 这是GitHub网站的源代码，也是为仓库本身做出贡献的机会。\n- [First Timers Only](https://www.firsttimersonly.com/) - 一个标有“仅限初学者”的错误列表。\n- [Hacktoberfest](https://hacktoberfest.digitalocean.com/) - 一个鼓励开源贡献的计划。在十月份至少提交4个拉取请求，就可以获得礼物，如T恤和贴纸。\n- [24 Pull Requests](https://24pullrequests.com) - 24 Pull Requests 是一个在十二月份期间促进开源协作的项目。\n- [Ovio](https://ovio.org) - 一个拥有经过筛选的、适合贡献者参与的项目的平台。 它拥有一个 [powerful issue search tool](https://ovio.org/issues) 并且允许您将项目和问题保存以供日后使用。\n- [Contribute-To-This-Project](https://github.com/Syknapse/Contribute-To-This-Project) - 这是一个教程，旨在帮助第一次贡献者参与一个简单易懂的项目，并且熟悉使用GitHub。\n- [Open Source Welcome Committee](https://www.oswc.is/) - 开源欢迎委员会（OSWC）帮助新人加入非凡的开源世界。快来与我们一起提交你的开源项目吧！\n\n## 开源计划参与\n\n> 由社区主办的项目、实习或奖学金，旨在帮助初级贡献者与导师和资源配对，以为开源软件项目做出贡献。\n\n- [All Linux Foundation (LF) Mentorships](https://mentorship.lfx.linuxfoundation.org/#projects_all)\n- [Beginner friendly Open Source programs with their timelines](https://github.com/arpit456jain/Open-Source-Programs)\n- [Cloud Native Computing Foundation](https://events.linuxfoundation.org/kubecon-cloudnativecon-north-america/)\n- [FossAsia](https://fossasia.org)\n- [Free Software Foundation (FSF) Internship](https://www.fsf.org/volunteer/internships)\n- [Google Summer of Code](https://summerofcode.withgoogle.com/) - 由Google每年举办的付费计划，旨在吸引更多学生开发者参与开源软件开发。\n- [Girlscript Summer of Code](https://gssoc.girlscript.tech/) - 每年夏季由Girlscript基金会举办的为期三个月的开源项目。在这几个月里，参与者在熟练导师的指导下不断努力，为众多项目做出贡献。通过这样的经历，学生们可以从家中舒适地开始为真实世界的项目做出贡献。\n- [Hacktoberfest](https://hacktoberfest.digitalocean.com)\n- [Hyperledger Mentorship Program](https://wiki.hyperledger.org/display/INTERN) - 如果你对区块链感兴趣，这个适合你。你可以为Hyperledger做贡献。这个导师计划让你能够实际接触到Hyperledger开源开发。你将被分配给在Hyperledger开发者社区非常活跃的导师们。\n- [LF Networking Mentorship](https://wiki.lfnetworking.org/display/LN/LFN+Mentorship+Program)\n- [Microsoft Reinforcement Learning](https://www.microsoft.com/en-us/research/academic-program/rl-open-source-fest/)\n- [Major League Hacking (MLH) Fellowship](https://fellowship.mlh.io/) - 一个远程实习的替代方案，适合有志于成为技术专家的人们，在这里他们可以构建或贡献开源项目。\n- [Open Summer of Code](https://osoc.be/students)\n- [Open Mainframe](https://www.openmainframeproject.org/all-projects/mentorship-program) - Open Mainframe Project也有自己的开源程序，学员们将能够扩展他们对主机技术的知识。\n- [Outreachy](https://www.outreachy.org)\n- [Processing Foundation Internship](https://processingfoundation.org/fellowships/)\n- [Rails Girls Summer of Code](https://railsgirlssummerofcode.org/) - 一个全球性的女性和非二元编码者交流计划，他们在现有的开源项目上工作，并扩展自己的技能。\n- [Redox OS Summer of Code](https://www.redox-os.org/rsoc/) - Redox OS夏季代码活动是对Redox OS项目捐款的主要用途。我们选择那些已经表现出对Redox OS有贡献意愿和能力的学生参与。\n- [Social Summer of Code](https://ssoc.devfolio.co/) - 社会基金会为学生提供了为期两个月的暑期项目，让他们了解开源文化并参与社区活动。参与者在经验丰富的导师指导下，为真实项目做出贡献。\n- [Season of KDE](https://season.kde.org/) - 由KDE社区主办的KDE之季是一个面向全球个人的外展计划。KDE是一个国际自由软件社区，致力于开发自由和开源软件，您可以通过KDE之季项目为其做出贡献。\n\n## 协议\n\n<a rel=\"license\" href=\"https://creativecommons.org/licenses/by-sa/4.0/\"><img alt=\"Creative Commons License\" style=\"border-width:0\" src=\"https://licensebuttons.net/l/by-sa/4.0/88x31.png\" /></a><br />此作品根据许可证进行授权。 <a rel=\"license\" href=\"https://creativecommons.org/licenses/by-sa/4.0/\">知识共享署名-相同方式共享4.0国际许可协议e</a>.\n"
  },
  {
    "path": "README-DE.md",
    "content": "<table>\n    <tr>\n        <!-- Do not translate this table -->\n        <td><a href=\"./README.md\"> English </a></td>\n        <td><a href=\"./README-MR.md\"> मराठी </a></td>\n        <td><a href=\"./README-BN.md\"> বাংলা </a></td>\n        <td><a href=\"./README-CN.md\"> 中文 </a></td>\n        <td><a href=\"./README-RU.md\"> русский </a></td>\n        <td><a href=\"./README-RO.md\"> Românesc </a></td>\n        <td><a href=\"./README-IT.md\"> Italiano </a></td>\n        <td><a href=\"./README-ES.md\"> Español </a></td>\n        <td><a href=\"./README-pt-BR.md\"> Português (BR) </a></td>\n        <td><a href=\"./README-DE.md\"> Deutsch </a></td>\n        <td><a href=\"./README-GR.md\"> Ελληνικά </a></td>\n        <td><a href=\"./README-FR.md\"> Français </a></td>\n        <td><a href=\"./README-TR.md\"> Turkish </a></td>\n        <td><a href=\"./README-KO.md\"> 한국어 </a></td>\n    </tr>\n</table>\n\n# Willkommen, Open-Source-Einsteiger\\*in!\n\n[![Pull Requests Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat)](http://makeapullrequest.com)\n[![first-timers-only Friendly](https://img.shields.io/badge/first--timers--only-friendly-blue.svg)](http://www.firsttimersonly.com/)\n[![Check Resources](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml/badge.svg)](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml)\n\nDies ist eine Liste mit Materialien für alle, die neu in der\nOpen-Source-Welt sind und selbst etwas beitragen möchten.\n\nWenn du weitere nützliche Materialien findest, starte bitte einen Pull Request.\n\nWenn du Fragen oder Kommentare hast, eröffne bitte ein neues Issue.\n\n**Inhaltsverzeichnis**\n\n- [Open-Source-Beiträge im Allgemeinen](#open-source-beiträge-im-allgemeinen)\n- [GitHub-Suchen](#github-suchen)\n- [Mozillas Open-Source-Ökosystem](#mozillas-open-source-ökosystem)\n- [Nützliche Artikel für Open-Source-Mitarbeiterinnen](#nützliche-artikel-für-open-source-mitarbeiterinnen)\n- [Versionskontrolle nutzen](#versionskontrolle-nutzen)\n- [Open-Source-Bücher](#open-source-bücher)\n- [Open-Source-Beitragsinitiativen](#open-source-beitragsinitiativen)\n- [Open-Source-Programme an denen du teilnehmen kannst](#open-source-programme-an-denen-du-teilnehmen-kannst)\n- [Lizenz](#lizenz)\n\n## Open-Source-Beiträge im Allgemeinen\n\n- [The Definitive Guide to Contributing to Open Source](https://medium.freecodecamp.org/the-definitive-guide-to-contributing-to-open-source-900d5f9f2282) von [@DoomHammerNG](https://twitter.com/DoomHammerNG).\n- [An Intro to Open Source](https://www.digitalocean.com/community/tutorial_series/an-introduction-to-open-source) - Tutorials von DigitalOcean, die dich beim\n  erfolgreichen Erstellen von Beiträgen auf GitHub anleiten.\n- [Issuehub.io](http://issuehub.pro/) - ein Tool, um auf GitHub nach Issues mit speziellen Labeln und Sprachen zu suchen.\n- [Code Triage](https://www.codetriage.com/) - noch ein sehr schönes Tool, um nach Sprache sortiert beliebte Repositories und Issues zu finden.\n- [Awesome-for-beginners](https://github.com/MunGell/awesome-for-beginners) - ein GitHub-Repository, das Projekte mit guten Einsteiger\\*innen-Bugs sammelt und\n  mit entsprechenden Labels versieht.\n- [Open Source Guides](https://opensource.guide/) - eine Sammlung von Materialien für Einzelpersonen, Gruppen und Unternehmen, die lernen wollen, wie man\n  Open-Source-Projekte selbst erstellt oder zu ihnen beiträgt.\n- [45 Github Issues Dos and Don’ts](https://hackernoon.com/45-github-issues-dos-and-donts-dfec9ab4b612) - Regeln für das Verhalten auf GitHub.\n- [GitHub Guides](https://docs.github.com/en) - grundsätzliche Einführungen zur effizienten Nutzung von GitHub.\n- [Contribute to Open Source](https://github.com/danthareja/contribute-to-open-source) - die GitHub-Arbeitsweise durch Beiträge für ein simuliertes Tutorial-Projekt kennen lernen.\n- [Linux Foundation's Open Source Guides for the Enterprise](https://www.linuxfoundation.org/resources/open-source-guides/) - die Einführung der Linux\n  Foundation in Open-Source-Projekte.\n- [CSS Tricks An Open Source Etiquette Guidebook](https://css-tricks.com/open-source-etiquette-guidebook/) - ein Open-Source-Knigge von Kent C. Dodds und Sarah Drasner.\n- [A to Z Resources for Students](https://github.com/dipakkr/A-to-Z-Resources-for-Students) - kuratierte Liste von Materialien und Möglichkeiten für\n  Studierende, um neue Programmiersprachen zu lernen.\n- [Contributing to your First Open Source Project: A Practical\n  Approach](https://blog.devcenter.co/contributing-to-your-first-open-source-project-a-practical-approach-1928c4cbdae) - eine Schritt-für-Schritt-Anleitung zum\n  Beitragen zu deinem ersten Open-Source-Projekt von [Abati Adewale](https://www.acekyd.com).\n- [\"How to Contribute to an Open Source Project on GitHub\" by Egghead.io](https://egghead.io/courses/how-to-contribute-to-an-open-source-project-on-github) -\n  eine Schritt-für-Schritt-Videoanleitung darüber, wie man Beiträge zu Open-Source-Projekten auf GitHub leistet.\n\n## GitHub-Suchen\n\nSuchbegriffe, die direkt auf für Einsteiger\\*innen geeignete Issues auf GitHub verweisen.\n\n- [is:issue is:open label:beginner](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Abeginner)\n- [is:issue is:open label:easy](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Aeasy)\n- [is:issue is:open label:first-timers-only](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Afirst-timers-only)\n- [is:issue is:open label:good-first-bug](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Agood-first-bug)\n- [is:issue is:open label:\"good first issue\"](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3A\"good+first+issue\")\n- [is:issue is:open label:starter](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Astarter)\n- [is:issue is:open label:up-for-grabs](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Aup-for-grabs)\n\n## Mozillas Open-Source-Ökosystem\n\n- [Good First Bugs](https://bugzilla.mozilla.org/buglist.cgi?quicksearch=sw:%22[good%20first%20bug]%22&limit=0) - Bugs, die Entwickler\\*innen als gute Einstiegsübungen zum Mozilla-Projekt\n  ansehen.\n- [Mentored Bugs](https://bugzilla.mozilla.org/buglist.cgi?quicksearch=mentor%3A%40) - Bugs, die von Mentor\\*innen betreut werden, welche dir helfen, wenn du bei\n  der Behebung des Bugs nicht mehr weiterkommst.\n- [Bugs Ahoy](http://www.joshmatthews.net/bugsahoy/) - eine Seite, die sich dem Finden von Bugs auf Bugzilla widmet.\n- [Firefox DevTools](http://firefox-dev.tools/) - eine Seite, die sich Bugs der Developer-Tools des Firefox-Browsers widmet.\n- [Start Mozilla](https://twitter.com/StartMozilla) - ein Twitter-Account, der über Issues twittert, die gut geeignet für neue Entwickler\\*innen sind.\n\n## Nützliche Artikel für Open-Source-Mitarbeiter\\*innen\n\n- [How to choose (and contribute to) your first Open Source project](https://github.com/collections/choosing-projects) von [@GitHub](https://github.com/github)\n- [How to find your first Open Source bug to fix](https://medium.freecodecamp.org/finding-your-first-open-source-project-or-bug-to-work-on-1712f651e5ba#.slc8i2h1l) von [@Shubheksha](https://github.com/Shubheksha)\n- [First Timers Only](https://kentcdodds.com/blog/first-timers-only) von [@kentcdodds](https://github.com/kentcdodds)\n- [Bring Kindness Back to Open Source](http://www.hanselman.com/blog/BringKindnessBackToOpenSource.aspx) von [@shanselman](https://github.com/shanselman)\n- [Getting into Open Source for the First Time](https://www.nearform.com/blog/getting-into-open-source-for-the-first-time/) von [@mcdonnelldean](https://github.com/mcdonnelldean)\n- [How to Contribute to Open Source](https://opensource.guide/how-to-contribute/) von [@GitHub](https://github.com/github/opensource.guide)\n- [How to Find a Bug in Your Code](https://8thlight.com/blog/doug-bradbury/2016/06/29/how-to-find-bug-in-your-code.html) von [@dougbradbury](https://twitter.com/dougbradbury)\n- [Mastering Markdown](https://docs.github.com/de/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax) von [@GitHubGuides](https://docs.github.com/de)\n- [First mission: Contributors page](https://medium.com/@forCrowd/first-mission-contributors-page-df24e6e70705#.2v2g0no29) von [@forCrowd](https://github.com/forCrowd)\n- [How to make your first Open Source contribution in just 5 minutes](https://medium.freecodecamp.org/how-to-make-your-first-open-source-contribution-in-just-5-minutes-aaad1fc59c9a) von [@roshanjossey](https://medium.freecodecamp.org/@roshanjossey)\n- [Hacktoberfest 2018: How you can get your free shirt — even if you’re new to coding](https://medium.freecodecamp.org/hacktoberfest-2018-how-you-can-get-your-free-shirt-even-if-youre-new-to-coding-96080dd0b01b) von [@quincylarson](https://medium.freecodecamp.org/@quincylarson)\n- [A Bitter Guide To Open Source](https://medium.com/codezillas/a-bitter-guide-to-open-source-a8e3b6a3c1c4) von [@ken_wheeler](https://medium.com/@ken_wheeler)\n- [A junior developer’s step-by-step guide to contributing to Open Source for the first time](https://hackernoon.com/contributing-to-open-source-the-sharks-are-photoshopped-47e22db1ab86) von [@LetaKeane](http://www.letakeane.com/)\n- [Learn Git and GitHub Step By Step (on Windows)](https://medium.com/@ows_ali/be93518e06dc) von [@ows-ali](https://medium.com/@ows_ali)\n\n## Versionskontrolle nutzen\n\n- [Think Like (a) Git](https://think-like-a-git.net/) - Git-Einführung für \"Fortgeschrittene Anfänger\\*innen\", welche ihnen eine Strategie an die Hand gibt, um\n  problemlos und sicher mit Git zu experimentieren.\n- [Try Git](https://docs.github.com/de/get-started/quickstart/set-up-git) - Git innerhalb von fünfzehn Minuten aus dem Browser heraus lernen - und zwar kostenlos.\n- [Everyday Git](https://git-scm.com/docs/giteveryday) - eine hilfreiche Minimalversion der grundsätzlichsten Git-Kommandos.\n- [Oh shit, git!](http://ohshitgit.com/) - wie man die typischsten Git-Fehler vermeidet.\n- [Atlassian Git Tutorials](https://www.atlassian.com/git/tutorials/) - zahlreiche Tutorials über die Nutzung von `git`.\n- [GitHub Git Cheat Sheet](https://education.github.com/git-cheat-sheet-education.pdf) - eine PDF-Datei mit Erklärungen zu `git`-Befehlen.\n- [freeCodeCamp's Wiki on Git Resources](https://www.freecodecamp.org/forum/t/wiki-git-resources/13136) - eine Sammlung voller Artikel und Erklärungen zu Problemen aller Art.\n- [GitHub Flow](https://www.youtube.com/watch?v=juLIxo42A_s) (42:06) - GitHub-Talk darüber, wie man einen Pull-Request erstellt.\n- [GitHub Learning Resources](https://help.github.com/articles/git-and-github-learning-resources/) - Git- und GitHub-Lernmaterialien.\n- [Pro Git](https://git-scm.com/book/en/v2) - das komplette Pro-Git-Buch, verfasst von Scott Chacon und Ben Straub (Apress).\n- [Git-it](https://github.com/jlord/git-it-electron) - Schritt-für-Schritt-Git-Tutorial als Desktopanwendung.\n- [Flight Rules for Git](https://github.com/k88hudson/git-flight-rules) - was zu tun ist, wenn die Dinge schiefgehen.\n- [A Comprehensive Introduction To Git and GitHub](https://codeburst.io/git-good-part-a-e0d826286a2a) - eine Anleitung von Madhav Bahl für\n  Einsteiger\\*innen. Es enthält Informationen über GitHub als Service und Konzepte der Git-Versionskontrolle.\n- [Git Guide for Beginners in Spanish](https://platzi.github.io/git-slides/#/) - eine vollständige Slide-Einführung über Git und GitHub auf Spanisch.\n- [Git Kraken](https://www.gitkraken.com/git-client) - visuelle, plattformübergreifende und interaktive `git` Desktopanwendung.\n\n## Open-Source-Bücher\n\n- [Producing Open Source Software](http://producingoss.com/) - ein Buch über die menschliche Seite der Open-Source-Entwicklung. Beschreibt, wie erfolgreiche\n  Projekte agieren, die Erwartungen der Nutzer\\*innen und Entwickler\\*innen und die Kultur freier Software.\n- [Open Source Book Series](https://opensource.com/resources/ebooks) - lerne mehr über Freie Software und die Freie-Software-Bewegung durch eine Reihe von\n  verständlichen E-Books von https://opensource.com.\n- [Software Release Practice HOWTO](http://tldp.org/HOWTO/Software-Release-Practice-HOWTO/) - dieses How-To beschreibt eine gute Veröffentlichungspraxis für Linux\n  und andere Freie-Software-Projekte. Wenn du dich an diese Praxis hältst, machst du es anderen Nutzer\\*innen einfacher, deinen Code zu nutzen, zu verstehen und\n  mit ihm zu arbeiten.\n- [Open Sources 2.0 : The Continuing Evolution](https://archive.org/details/opensources2.000diborich) (2005) - \"Open Sources 2.0\" ist eine Essaysammlung\n  führender Technologieexpert\\*innen, die eine Vision fortführen, welche ihren Ursprung in dem 1999 erschienen Buch \"Open Sources: Voices from the\n  Revolution\" hat.\n\n## Open-Source-Beitragsinitiativen\n\n- [Up For Grabs](http://up-for-grabs.net/#/) - enthält Projekte mit einsteiger\\*innenfreundlichen Issues.\n- [First Timers Only](http://www.firsttimersonly.com/) - eine Liste mit Bugs, die das Label \"first-timers-only\" haben.\n- [First Contributions](https://firstcontributions.github.io/) - mache deinen ersten Open-Source-Beitrag innerhalb von fünf Minuten. Ein Tool, das\n  Einsteiger\\*innen auf dem Weg zum ersten Beitrag hilft.\n- [Hacktoberfest](https://hacktoberfest.digitalocean.com/) - ein Programm, das zu Open-Source-Beiträgen motiviert. Gewinne Preise wie T-Shirts oder Sticker,\n  indem du mindestens fünf Pull-Requests im Oktober machst.\n- [24 Pull Requests](https://24pullrequests.com) - \"24 Pull Requests\" ist ein Projekt, das für Open-Source-Kollaborationen im Dezember wirbt.\n\n## Open-Source-Programme, an denen du teilnehmen kannst\n\n- [Bundesnachrichtendienst (BND) | Summer of Code](https://www.bnd.bund.de/DE/Karriere/SummerOfCode/SummerOfCode_node.html)\n- [Google Summer of Code](https://summerofcode.withgoogle.com)\n- [FossAsia](https://fossasia.org)\n- [MLH Fellowship](https://fellowship.mlh.io)\n- [Outreachy](https://www.outreachy.org)\n- [Hacktoberfest](https://hacktoberfest.digitalocean.com)\n- [CNCF](https://events.linuxfoundation.org/kubecon-cloudnativecon-europe/)\n- [Microsoft Reinforcement learning](https://www.microsoft.com/en-us/research/academic-program/rl-open-source-fest/)\n\n## Lizenz\n\n<a rel=\"license\" href=\"http://creativecommons.org/licenses/by-sa/4.0/\"><img alt=\"Creative Commons License\" style=\"border-width:0\"\nsrc=\"https://i.creativecommons.org/l/by-sa/4.0/88x31.png\" /></a><br />Dieses Werk ist lizenziert unter einer <a rel=\"license\" href=\"http://creativecommons.org/licenses/by-sa/4.0/\">Creative Commons Attribution-ShareAlike 4.0 International License</a>.\n"
  },
  {
    "path": "README-ES.md",
    "content": "<table>\n    <tr>\n        <!-- Do not translate this table -->\n        <td><a href=\"./README.md\"> English </a></td>\n        <td><a href=\"./README-MR.md\"> मराठी </a></td>\n        <td><a href=\"./README-BN.md\"> বাংলা </a></td>\n        <td><a href=\"./README-CN.md\"> 中文 </a></td>\n        <td><a href=\"./README-RU.md\"> русский </a></td>\n        <td><a href=\"./README-RO.md\"> Românesc </a></td>\n        <td><a href=\"./README-IT.md\"> Italiano </a></td>\n        <td><a href=\"./README-ES.md\"> Español </a></td>\n        <td><a href=\"./README-pt-BR.md\"> Português (BR) </a></td>\n        <td><a href=\"./README-DE.md\"> Deutsch </a></td>\n        <td><a href=\"./README-GR.md\"> Ελληνικά </a></td>\n        <td><a href=\"./README-FR.md\"> Français </a></td>\n        <td><a href=\"./README-TR.md\"> Turkish </a></td>\n        <td><a href=\"./README-KO.md\"> 한국어 </a></td>\n    </tr>\n</table>\n\n# ¡Bienvenido aprendiz colaborador de código abierto!\n\n[![Pull Requests Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat)](http://makeapullrequest.com)\n[![first-timers-only Friendly](https://img.shields.io/badge/first--timers--only-friendly-blue.svg)](http://www.firsttimersonly.com/)\n[![Check Resources](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml/badge.svg)](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml)\n\nEsta es una lista de recursos para personas que se inician en la colaboración de proyectos de código abierto.\n\nSi encuentras recursos adicionales, por favor contribuye con un `pull request` a este repositorio.\n\nSi tienes alguna pregunta o comentario, por favor crea un `issue` en este repositorio.\n\n**Tabla de contenidos**\n\n- [Contribuyendo al código abierto en general](#contribuyendo-al-c%C3%B3digo-abierto-en-general)\n- [Búsquedas directas en GitHub](#busquedas-directas-en-github)\n- [Ecosistema de colaboradores de Mozilla](#ecosistema-de-colaboradores-de-mozilla)\n- [Artículos útiles para nuevos colaboradores de código abierto](#art%C3%ADculos-%C3%BAtiles-para-nuevos-colaboradores-de-c%C3%B3digo-abierto)\n- [Usando control de versiones](#usando-control-de-versiones)\n- [Libros de código abierto](#libros-de-c%C3%B3digo-abierto)\n- [Iniciativas de contribución de código abierto](#iniciativas-de-contribuci%C3%B3n-de-c%C3%B3digo-abierto)\n- [Licencia](#licencia)\n\n## Contribuyendo al código abierto en general\n\n> Artículos y recursos que discuten el mundo y la cultura del código abierto.\n\n- [Guía definitiva para contribuir al código abierto](https://medium.freecodecamp.org/the-definitive-guide-to-contributing-to-open-source-900d5f9f2282) por [@DoomHammerNG](https://twitter.com/DoomHammerNG)\n- [Una introducción al código abierto](https://www.digitalocean.com/community/tutorial_series/an-introduction-to-open-source) - Tutoriales hechos por DigitalOcean para guiarte de manera exitosa en tu camino cómo colaborador en GitHub.\n- [Code Triage](https://www.codetriage.com/) - Otro muy buen buscador de repositorios e `issues` filtrados por lenguaje de programación.\n- [Awesome-for-beginners](https://github.com/MunGell/awesome-for-beginners) - Repositorio de GitHub que acumula proyectos con issues fáciles y etiquetados para colaboradores recien iniciados.\n- [Guías de código abierto](https://opensource.guide/) - Colección de recursos para particulares, comunidades y empresas que quieren aprender cómo iniciar y contribuir en proyectos de código abierto.\n- [45 pros y contras creando issues en Github](https://hackernoon.com/45-github-issues-dos-and-donts-dfec9ab4b612) - Pros y Contras creando `issues` en GitHub.\n- [Guías de GitHub](https://docs.github.com/en) - Guía básica de cómo usar GitHub de manera efectiva.\n- [Contribuir al código abierto](https://github.com/danthareja/contribute-to-open-source) - Aprender el flujo de trabajo en GitHub colaborando en un proyecto de prueba.\n- [Guías de código abierto de la Fundación Linux para la empresa](https://www.linuxfoundation.org/resources/open-source-guides) - Guía de la Fundación Linux para proyectos de código abierto.\n- [Trucos CSS, Guía de etiquetas de código abierto](https://css-tricks.com/open-source-etiquette-guidebook/) - Una guía de etiquetas de código abierto escrita por [Kent C. Dodds](https://github.com/kentcdodds) y [Sarah Drasner](https://github.com/sdras).\n- [Recursos de la A a la Z para estudiantes](https://github.com/dipakkr/A-to-Z-Resources-for-Students) - Lista precisa de recursos y oportunidades para estudiantes que quieran aprender un nuevo lenguaje de programación.\n- [Contribuyendo en tu primer proyecto de código abierto: Un acercamiento práctico.](https://blog.devcenter.co/contributing-to-your-first-open-source-project-a-practical-approach-1928c4cbdae) - Un acercamiento paso a paso para contribuir en tu primer proyecto de código abierto por [Abati Adewale](https://www.acekyd.com).\n- [\"Cómo contribuir a un proyecto de código abierto en GitHub\" por Egghead.io](https://egghead.io/courses/how-to-contribute-to-an-open-source-project-on-github) - Una videoguía paso a paso de cómo empezar a contribuir en un proyecto de código abierto en GitHub.\n\n## Búsquedas directas en GitHub\n\n> Lista de enlaces convenientes para principiantes que apuntan a `issues` en GitHub.\n\n- [is:issue is:open label:beginner](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Abeginner)\n- [is:issue is:open label:easy](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Aeasy)\n- [is:issue is:open label:first-timers-only](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Afirst-timers-only)\n- [is:issue is:open label:good-first-bug](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Agood-first-bug)\n- [is:issue is:open label:\"good first issue\"](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3A\"good+first+issue\")\n- [is:issue is:open label:starter](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Astarter)\n- [is:issue is:open label:up-for-grabs](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Aup-for-grabs)\n\n## Ecosistema de colaboradores de Mozilla\n\n> Mozilla se compromete a tener un Internet saludable y, con ello, ofrecer oportunidades de contribuir a sus proyectos de código abierto.\n\n- [Issues perfectos por donde empezar a colaborar](https://bugzilla.mozilla.org/buglist.cgi?quicksearch=sw:%22[good%20first%20bug]%22&limit=0) - `Issues` que desarrolladores han identificado cómo adecuadas para introducirse en el proyecto.\n- [Issues asistidas por un mentor](https://bugzilla.mozilla.org/buglist.cgi?quicksearch=mentor%3A%40) - `Issues` que tienen un mentor asignado el cual estará disponible mediante IRC para ayudarte mientras trabajas en ellas.\n- [Bugs Ahoy](http://www.joshmatthews.net/bugsahoy/) - Un sitio donde encontrar `issues` de Bugzilla.\n- [Firefox DevTools](http://firefox-dev.tools/) - Un sitio dedicado donde encontrar `issues` archivados por la herramienta de desarrollo dentro del navegador Firefox.\n- [StartMozilla](https://twitter.com/StartMozilla) - Una cuenta de Twitter sobre temas específicos para nuevos colaboradores en el ecosistema de Mozilla.\n\n## Artículos útiles para nuevos colaboradores de código abierto\n\n> Artículos y blogs útiles dirigidos a nuevos colaboradores sobre cómo empezar.\n\n- [Cómo elegir (y contribuir en ) tu primer proyecto de código abierto](https://github.com/collections/choosing-projects) por [@GitHub](https://github.com/github)\n- [Cómo encontrar tu primer error de código abierto para solucionar](https://medium.freecodecamp.org/finding-your-first-open-source-project-or-bug-to-work-on-1712f651e5ba#.slc8i2h1l) por [@Shubheksha](https://github.com/Shubheksha)\n- [Solo para principiantes](https://kentcdodds.com/blog/first-timers-only) por [@kentcdodds](https://github.com/kentcdodds)\n- [Trayendo de vuelta la amabilidad al código abierto](http://www.hanselman.com/blog/BringKindnessBackToOpenSource.aspx) por [@shanselman](https://github.com/shanselman)\n- [Entrando en el código abierto por primera vez](https://www.nearform.com/blog/getting-into-open-source-for-the-first-time/) por [@mcdonnelldean](https://github.com/mcdonnelldean)\n- [Cómo contribuir al código abierto](https://opensource.guide/how-to-contribute/) por [@GitHub](https://github.com/github/docs)\n- [Cómo encontrar errores en tu código](https://8thlight.com/insights/how-to-find-a-bug-in-your-code) por [@dougbradbury](https://twitter.com/dougbradbury)\n- [Markdown: Cómo escribir en GitHub](https://docs.github.com/es/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax) por [@GitHubDocs](https://docs.github.com/es)\n- [Primera misión: Página de colaboradores](https://forcrowd.medium.com/first-mission-contributors-page-df24e6e70705#.2v2g0no29) por [@forCrowd](https://github.com/forCrowd)\n- [Cómo hacer tu primera contribución al código abierto en 5 minutos](https://medium.freecodecamp.org/how-to-make-your-first-open-source-contribution-in-just-5-minutes-aaad1fc59c9a) por [@roshanjossey](https://medium.freecodecamp.org/@roshanjossey)\n- [Hacktoberfest 2018: Cómo puedes conseguir tu primera camiseta - incluso si eres nuevo programando](https://medium.freecodecamp.org/hacktoberfest-2018-how-you-can-get-your-free-shirt-even-if-youre-new-to-coding-96080dd0b01b) por [@quincylarson](https://medium.freecodecamp.org/@quincylarson)\n- [Una guía paso a paso sobre cómo contribuir por primera vez al código abierto hecha para programadores sin experiencia](https://hackernoon.com/contributing-to-open-source-the-sharks-are-photoshopped-47e22db1ab86) por [@LetaKeane](http://www.letakeane.com/)\n- [Aprende Git y GitHub paso a paso (en Windows)](https://medium.com/@ows_ali/be93518e06dc) por [@ows-ali](https://medium.com/@ows_ali)\n\n## Usando control de versiones\n\n> Tutoriales y recursos de varios niveles sobre el uso del control de versiones, normalmente Git y GitHub.\n\n- [Piensa como (un) Git](https://think-like-a-git.net/) - Introducción de Git para \"principiantes avanzados\" pero aún esforzándose, con el fin de darte una estrategia simple para experimentar con git de manera fiable.\n- [Try Git](https://docs.github.com/en/get-started/quickstart/set-up-git) - Aprender Git en 15 minutos desde tu navegador.\n- [Everyday Git](https://git-scm.com/docs/giteveryday) - Un pequeño conjunto de comandos útiles para tu día a día.\n- [Oh shit, git!](http://ohshitgit.com/) - Cómo resolver errores comunes de git descritos de manera simple.\n- [Tutoriales de Git por Atlassian](https://www.atlassian.com/git/tutorials/) - Varios tutoriales usando `git` hechos por Atlassian.\n- [Trucos de GitHub Git](https://education.github.com/git-cheat-sheet-education.pdf) (PDF)\n- [Recursos sobre Git en la Wiki de freeCodeCamp](https://www.freecodecamp.org/forum/t/wiki-git-resources/13136)\n- [GitHub Flow](https://www.youtube.com/watch?v=juLIxo42A_s) (42:06) - Charla de GitHub sobre cómo hacer un `pull request`.\n- [Recursos de aprendizaje de GitHub](https://help.github.com/articles/git-and-github-learning-resources/) - Recursos de aprendizaje para Git y GitHub.\n- [Git Pro](https://git-scm.com/book/en/v2) - Libro completo Git Pro, escrito or Scott Chacon y Ben Straub, publicado por Apress.\n- [Git-it](https://github.com/jlord/git-it-electron) - Tutorial paso a paso sobre la aplicación de escritorio de Git.\n- [Reglas de vuelo por Git](https://github.com/k88hudson/git-flight-rules) - Una gúia sobre lo que hacer cuando las cosas van mal usando Git.\n- [Introducción completa de Git y GitHib](https://codeburst.io/git-good-part-a-e0d826286a2a) - Una guía escrita por Madhav Bahl, la cual deberías ver si eres nuevo usando Git o GitHub. Esta cubre GitHub como servicio además de conceptos detallados del control de versiones de Git.\n- [Guía sobre Git para principiantes en Español](https://platzi.github.io/git-slides/#/) - Una guía completa de diapositivas sobre Git y GitHub explicados en español.\n- [Git Kraken](https://www.gitkraken.com/git-client) - Aplicación de escritorio visual, multiplataforma e interactiva de git para el control de versiones.\n\n## Libros de código abierto\n\n> Libros sobre todo lo relacionado con el código abierto: la cultura, la historia, las mejores prácticas, etc. \n\n- [Desarrollando software de código abierto](http://producingoss.com/) - Desarrollando software de código abierto es un libro sobre el lado humano del desarrollo de código abierto. Este describre cómo funcionan los proyectos exitosos, las expectativas de los usuarios y desarrolladores, y la cultura del software libre.\n- [Serie de libros sobre código abierto](https://opensource.com/resources/ebooks) - Aprender más acerca del código abierto y el creciente movimiento de código abierto con una lista exhaustiva de libros gratuitos provenientes de https://opensource.com.\n- [Prácticas sobre cómo lanzar un software](http://en.tldp.org/HOWTO/Software-Release-Practice-HOWTO/) - Este guía describe buenas prácticas de lanzamiento para Linux y otros proyectos de código abierto. Siguiendo estas prácticas, facilitarás a otros usuarios tanto a preparar y usar tu código, y a otros desarrolladores a entenderlo y cooperar contigo para mejorarlo.\n- [Código abierto 2.0: Evolución continua](https://archive.org/details/opensources2.000diborich) (2005) - Código abierto 2.0 es una colección de ensayos perspicaces y estimulantes sobre las tecnologías líderes hoy en día que continúan pintando el cuadro evolutivo que se desarrolló en el libro de 1999, Código Abierto: Voces de la revolución.\n\n## Iniciativas de contribución de Código abierto\n\n> Lista de iniciativas que agregan problemas para principiantes para resolver en una sola sesión o durante eventos de temporada. \n\n- [Up For Grabs](http://up-for-grabs.net/#/) - Contiene proyectos con cuestiones accesibles para principiantes.\n- [First Timers Only](http://www.firsttimersonly.com/) - Una lista de errores etiquetados cómo 'first-timers-only' (solo para primerizos).\n- [First Contributions](https://firstcontributions.github.io/) - Haz tu primera contribución al código abierto en 5 minutos.\n- [Hacktoberfest](https://hacktoberfest.digitalocean.com/) - Una herramienta que anima a la contribución de código abierto. Gana regalos cómo camisetas y pegatinas haciendo al menos 5 `pull requests` durante el mes de Octubre.\n- [24 Pull Requests](https://24pullrequests.com) - 24 Pull Requests es un proyecto que promueve la colaboración de código abierto durante el mes de Diciembre.\n\n## Programas de código abierto para participar\n\n> Un programa, pasantia o beca organizada por una comunidad para ayudar a unir a los contribuyentes principantes con mentores y recursos para contribuir a proyectos de software de código abierto. \n\n- [Google Summer of Code](https://summerofcode.withgoogle.com/) - Un programa anual pagado por Google enfocado en atraer a más estudiantes desarrolladores al desarrollo de software de código abierto. \n\n## Licencia\n\n<a rel=\"license\" href=\"http://creativecommons.org/licenses/by-sa/4.0/\"><img alt=\"Creative Commons License\" style=\"border-width:0\" src=\"https://i.creativecommons.org/l/by-sa/4.0/88x31.png\" /></a><br />Este proyecto tiene una licencia <a rel=\"license\" href=\"http://creativecommons.org/licenses/by-sa/4.0/\">Creative Commons Attribution-ShareAlike 4.0 International License</a>.\n"
  },
  {
    "path": "README-FA.md",
    "content": "<table>\n    <tr>\n        <!-- Do not translate this table -->\n        <td><a href=\"./README.md\"> English </a></td>\n        <td><a href=\"./README-MR.md\"> मराठी </a></td>\n        <td><a href=\"./README-BN.md\"> বাংলা </a></td>\n        <td><a href=\"./README-CN.md\"> 中文 </a></td>\n        <td><a href=\"./README-RU.md\"> русский </a></td>\n        <td><a href=\"./README-RO.md\"> Românesc </a></td>\n        <td><a href=\"./README-IT.md\"> Italiano </a></td>\n        <td><a href=\"./README-ES.md\"> Español </a></td>\n        <td><a href=\"./README-pt-BR.md\"> Português (BR) </a></td>\n        <td><a href=\"./README-DE.md\"> Deutsch </a></td>\n        <td><a href=\"./README-GR.md\"> Ελληνικά </a></td>\n        <td><a href=\"./README-FR.md\"> Français </a></td>\n        <td><a href=\"./README-FA.md\"> فارسی </a></td>\n    </tr>\n</table>\n\n<div dir=\"rtl\" style=\"direction:rtl;text-align:right;\">\n<p>\n\n# مشارکت کنندگان تازه وارد پروژه های منبع-باز یا اپن سورس خوش آمدید.\n\n[![Pull Requests Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat)](http://makeapullrequest.com)\n[![first-timers-only Friendly](https://img.shields.io/badge/first--timers--only-friendly-blue.svg)](http://www.firsttimersonly.com/)\n[![Check Resources](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml/badge.svg)](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml)\n\nاین فهرستی از منابع برای افراد تازه وارد در زمینه مشارکت منابع-باز است.\n\nاگر منابع بیشتری پیدا کردید، لطفا از طریق پول-ریکوئست مشارکت کنید.\n\nاگر سوال یا نظری دارید، لطفا یک ایشو باز کنید.\n\n**محتوا**\n\n- [مشارکت در منبع-باز بطور کلی](#مشارکت-در-منبع-باز-بطور-کلی)\n- [جستجو مستقیم گیت هاب](#جستجو-مستقیم-گیت-هاب)\n- [اکو-سیستم مشارکت کننده موزیلا](#اکوسیستم-مشارکت-موزیلا)\n- [مقالات مفید برای مشارکت کنندگان جدید منبع-باز](#مقالات-مفید-برای-مشارکت-کنندگان-جدید-منبع-باز)\n- [استفاده از کنترل نسخه](#استفاده-از-کنترل-نسخه)\n- [کتاب‌های منبع-باز](#کتابهای-منبع-باز)\n- [ابتکارات مشارکت منبع-باز](#ابتکارات-مشارکت-منبع-باز)\n- [مجوز](#مجوز)\n\n</p>\n</div>\n<div dir=\"rtl\" style=\"direction:rtl;text-align:right;\">\n<p>\n\n##  منابع مشارکت در منبع-باز بطور کلی\n- [The Definitive Guide to Contributing to Open Source](https://medium.freecodecamp.org/the-definitive-guide-to-contributing-to-open-source-900d5f9f2282) by [@DoomHammerNG](https://twitter.com/DoomHammerNG)\n- [An Intro to Open Source](https://www.digitalocean.com/community/tutorial_series/an-introduction-to-open-source) - Tutorials by DigitalOcean to guide you on your way to contribution success here on GitHub.\n- [Issuehub.io](http://issuehub.pro/) - a tool for searching GitHub issues by label and language.\n- [Code Triage](https://www.codetriage.com/) - another, really nice, tool for finding popular repositories and issues filtered by language.\n- [Awesome-for-beginners](https://github.com/MunGell/awesome-for-beginners) - a GitHub repo that amasses projects with good bugs for new contributors, and applies labels to describe them.\n- [Open Source Guides](https://opensource.guide/) - Collection of resources for individuals, communities, and companies who want to learn how to run and contribute to an Open Source project.\n- [45 Github Issues Dos and Don’ts](https://hackernoon.com/45-github-issues-dos-and-donts-dfec9ab4b612) - Do's and Don'ts on GitHub.\n- [GitHub Guides](https://docs.github.com/en) - basic guides on how to use GitHub effectively.\n- [Contribute to Open Source](https://github.com/danthareja/contribute-to-open-source) - Learn the GitHub workflow by contributing code to a simulation project.\n- [Linux Foundation's Open Source Guides for the Enterprise](https://www.linuxfoundation.org/resources/open-source-guides) - The Linux Foundation's guides to Open Source projects.\n- [CSS Tricks An Open Source Etiquette Guidebook](https://css-tricks.com/open-source-etiquette-guidebook/) - An Open Source Etiquette Guidebook, written by Kent C. Dodds And Sarah Drasner.\n- [A to Z Resources for Students](https://github.com/dipakkr/A-to-Z-Resources-for-Students) - Curated list of resources and opportunities for college students to learn a new coding language.\n- [Contributing to your First Open Source Project: A Practical Approach](https://blog.devcenter.co/contributing-to-your-first-open-source-project-a-practical-approach-1928c4cbdae) - A step-by-step approach to contributing to your first Open Source project by [Abati Adewale](https://www.acekyd.com).\n- [Pull Request Roulette](http://www.pullrequestroulette.com/) - This site has a list of pull requests submitted for review belonging to Open Source projects hosted on Github.\n- [\"How to Contribute to an Open Source Project on GitHub\" by Egghead.io](https://egghead.io/courses/how-to-contribute-to-an-open-source-project-on-github) - A step-by-step video guide of how to start contributing to Open Source projects on GitHub.\n- [Contributing to Open Source: A Live Walkthrough from Beginning to End](https://medium.com/@kevinjin/contributing-to-open-source-walkthrough-part-0-b3dc43e6b720) - This walkthrough of an open source contribution covers everything from picking a suitable project, working on an issue, to getting the PR merged in.\n\n</p>\n</div>\n<div dir=\"rtl\" style=\"direction:rtl;text-align:right;\">\n<p>\n\n## جستجو مستقیم گیت هاب\nلینک‌های جستجویی که مستقیما به مشکلات گزارش شده مناسب در گیت هاب اشاره می‌کنند: \n- [is:issue is:open label:beginner](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Abeginner)\n- [is:issue is:open label:easy](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Aeasy)\n- [is:issue is:open label:first-timers-only](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Afirst-timers-only)\n- [is:issue is:open label:good-first-bug](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Agood-first-bug)\n- [is:issue is:open label:\"good first issue\"](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3A\"good+first+issue\")\n- [is:issue is:open label:starter](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Astarter)\n- [is:issue is:open label:up-for-grabs](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Aup-for-grabs)\n\n</p>\n</div>\n<div dir=\"rtl\" style=\"direction:rtl;text-align:right;\">\n<p>\n\n## اکوسیستم مشارکت موزیلا\n- [Good First Bugs](https://bugzilla.mozilla.org/buglist.cgi?quicksearch=sw:%22[good%20first%20bug]%22&limit=0) - bugs that developers have identified as a good introduction to the project.\n- [Mentored Bugs](https://bugzilla.mozilla.org/buglist.cgi?quicksearch=mentor%3A%40) - bugs that have a mentor assigned who will be there on IRC to help you when you get stuck while working on fix.\n- [Bugs Ahoy](http://www.joshmatthews.net/bugsahoy/) - a site dedicated to finding bugs on Bugzilla.\n- [Firefox DevTools](http://firefox-dev.tools/) - a site dedicated to bugs filed for the developer tools in the Firefox browser.\n- [Start Mozilla](https://twitter.com/StartMozilla) - a Twitter account that tweets about issues fit for contributors new to the Mozilla ecosystem.\n\n</p>\n</div>\n<div dir=\"rtl\" style=\"direction:rtl;text-align:right;\">\n<p>\n\n##  مقالات مفید برای مشارکت کنندگان جدید در پروژه های منبع-باز\n- [How to choose (and contribute to) your first Open Source project](https://github.com/collections/choosing-projects) by [@GitHub](https://github.com/github)\n- [How to find your first Open Source bug to fix](https://medium.freecodecamp.org/finding-your-first-open-source-project-or-bug-to-work-on-1712f651e5ba#.slc8i2h1l) by [@Shubheksha](https://github.com/Shubheksha)\n- [First Timers Only](https://kentcdodds.com/blog/first-timers-only) by [@kentcdodds](https://github.com/kentcdodds)\n- [Bring Kindness Back to Open Source](http://www.hanselman.com/blog/BringKindnessBackToOpenSource.aspx) by [@shanselman](https://github.com/shanselman)\n- [Getting into Open Source for the First Time](https://www.nearform.com/blog/getting-into-open-source-for-the-first-time/) by [@mcdonnelldean](https://github.com/mcdonnelldean)\n- [How to Contribute to Open Source](https://opensource.guide/how-to-contribute/) by [@GitHub](https://github.com/github/opensource.guide)\n- [How to Find a Bug in Your Code](https://8thlight.com/insights/how-to-find-a-bug-in-your-code) by [@dougbradbury](https://twitter.com/dougbradbury)\n- [Mastering Markdown](https://docs.github.com/features/mastering-markdown/) by [@GitHubGuides](https://docs.github.com/en)\n- [First mission: Contributors page](https://forcrowd.medium.com/first-mission-contributors-page-df24e6e70705#.2v2g0no29) by [@forCrowd](https://github.com/forCrowd)\n- [How to make your first Open Source contribution in just 5 minutes](https://medium.freecodecamp.org/how-to-make-your-first-open-source-contribution-in-just-5-minutes-aaad1fc59c9a) by [@roshanjossey](https://medium.freecodecamp.org/@roshanjossey)\n- [Hacktoberfest 2018: How you can get your free shirt — even if you’re new to coding](https://medium.freecodecamp.org/hacktoberfest-2018-how-you-can-get-your-free-shirt-even-if-youre-new-to-coding-96080dd0b01b) by [@quincylarson](https://medium.freecodecamp.org/@quincylarson)\n- [A Bitter Guide To Open Source](https://medium.com/codezillas/a-bitter-guide-to-open-source-a8e3b6a3c1c4) by [@ken_wheeler](https://medium.com/@ken_wheeler)\n- [A junior developer’s step-by-step guide to contributing to Open Source for the first time](https://hackernoon.com/contributing-to-open-source-the-sharks-are-photoshopped-47e22db1ab86) by [@LetaKeane](http://www.letakeane.com/)\n- [Learn Git and GitHub Step By Step (on Windows)](https://medium.com/@ows_ali/be93518e06dc) by [@ows-ali](https://medium.com/@ows_ali)\n\n</p>\n</div>\n<div dir=\"rtl\" style=\"direction:rtl;text-align:right;\">\n<p>\n\n## استفاده از کنترل نسخه\n- [Think Like (a) Git](https://think-like-a-git.net/) - Git introduction for \"advanced beginners,\" but are still struggling, in order to give you a simple strategy to safely experiment with git.\n- [Try Git](https://docs.github.com/en/get-started/quickstart/set-up-git) - Learn Git in 15 minutes from within your browser for free.\n- [Everyday Git](https://git-scm.com/docs/giteveryday) - A useful minimum set of commands for Everyday Git.\n- [Oh shit, git!](https://ohshitgit.com/) - how to get out of common `git` mistakes described in plain English; also see [Dangit, git!](https://dangitgit.com/) for the page without swears.\n- [Atlassian Git Tutorials](https://www.atlassian.com/git/tutorials/) - various tutorials on using `git`.\n- [GitHub Git Cheat Sheet](https://education.github.com/git-cheat-sheet-education.pdf) (PDF)\n- [freeCodeCamp's Wiki on Git Resources](https://www.freecodecamp.org/forum/t/wiki-git-resources/13136)\n- [GitHub Flow](https://www.youtube.com/watch?v=juLIxo42A_s) (42:06) - GitHub talk on how to make a pull request.\n- [GitHub Learning Resources](https://help.github.com/articles/git-and-github-learning-resources/) - Git and GitHub learning resources.\n- [Pro Git](https://git-scm.com/book/en/v2) - The entire Pro Git book, written by Scott Chacon and Ben Straub and published by Apress.\n- [Git-it](https://github.com/jlord/git-it-electron) - Step by step Git tutorial desktop app.\n- [Flight Rules for Git](https://github.com/k88hudson/git-flight-rules) - A guide about what to do when things go wrong.\n- [A Comprehensive Introduction To Git and GitHub](https://codeburst.io/git-good-part-a-e0d826286a2a) - A guide written by Madhav Bahl, which you should see if you are new to Git or GitHub, it covers GitHub as a service and concepts of Git version control in detail.\n- [Git Guide for Beginners in Spanish](https://platzi.github.io/git-slides/#/) - A complete guide of slides about git and GitHub explained in Spanish. Una guía completa de diapositivas sobre git y GitHub explicadas en Español.\n- [Git Kraken](https://www.gitkraken.com/git-client) - Visual, cross-platform, and interactive `git` desktop application for version control.\n- [Git Tips](https://github.com/git-tips/tips) - Collection of most commonly used git tips and tricks.\n\n</p>\n</div>\n<div dir=\"rtl\" style=\"direction:rtl;text-align:right;\">\n<p>\n\n## کتاب‌های منبع-باز\n- [Producing Open Source Software](http://producingoss.com/) - Producing Open Source Software is a book about the human side of Open Source development. It describes how successful projects operate, the expectations of users and developers, and the culture of free software.\n- [Open Source Book Series](https://opensource.com/resources/ebooks) - Learn more about Open Source and the growing Open Source movement with a comprehensive list of free eBooks from https://opensource.com.\n- [Software Release Practice HOWTO](http://tldp.org/HOWTO/Software-Release-Practice-HOWTO/) - This HOWTO describes good release practices for Linux and other Open-Source projects. By following these practices, you will make it as easy as possible for users to build your code and use it, and for other developers to understand your code and cooperate with you to improve it.\n- [Open Sources 2.0 : The Continuing Evolution](https://archive.org/details/opensources2.000diborich) (2005) - Open Sources 2.0 is a collection of insightful and thought-provoking essays from today's technology leaders that continues painting the evolutionary picture that developed in the 1999 book, Open Sources: Voices from the Revolution.\n\n</p>\n</div>\n<div dir=\"rtl\" style=\"direction:rtl;text-align:right;\">\n<p>\n\n## ابتکارات مشارکت منبع-باز\n- [Up For Grabs](http://up-for-grabs.net/#/) - Contains projects with beginner friendly issues\n- [First Timers Only](http://www.firsttimersonly.com/) - A list of bugs that are labelled \"first-timers-only\".\n- [First Contributions](https://firstcontributions.github.io/) - Make your first Open Source contribution in 5 minutes. A tool and tutorial to help beginners get started with contributions.\n- [Hacktoberfest](https://hacktoberfest.digitalocean.com/) - A program to encourage Open Source contributions. Earn gifts like t-shirts and stickers by making at least 5 pull requests in the month of October.\n- [24 Pull Requests](https://24pullrequests.com) - 24 Pull Requests is a project to promote Open Source collaboration during the month of December.\n\n</p>\n</div>\n\n    \n<div dir=\"rtl\" style=\"direction:rtl;text-align:right;\">\n<p>\n\n## برنامه‌های منبع باز برای مشارکت\n> یک برنامه، کارآموزی یا کمک هزینه تحصیلی که توسط یک جامعه میزبانی می‌شود تا به تطبیق مشارکت‌کنندگان مبتدی با مربیان و منابعی برای مشارکت در پروژه‌های نرم‌افزار منبع باز کمک کند.\n</p>\n</div>\n\n<div>\n<p>\n    \n- [All Linux Foundation (LF) Mentorships](https://mentorship.lfx.linuxfoundation.org/#projects_all)\n- [Beginner friendly Open Source programs with their timelines](https://github.com/arpit456jain/Open-Source-Programs)\n- [Cloud Native Computing Foundation](https://events.linuxfoundation.org/kubecon-cloudnativecon-north-america/)\n- [FossAsia](https://fossasia.org)\n- [Free Software Foundation (FSF) Internship](https://www.fsf.org/volunteer/internships)\n- [Google Summer of Code](https://summerofcode.withgoogle.com/) -\n    .برنامه‌ای که سالانه توسط گوگل اجرا می‌شود و تمرکز آن جذب دانش‌آموزان بیشتر به توسعه نرم‌افزار منبع باز است\n- [Girlscript Summer of Code](https://gssoc.girlscript.tech/) -\nیک برنامه منبع باز سه ماهه که هر تابستان توسط بنیاد Girlscript انجام می‌شود.\n    با تلاش‌های مداوم، شرکت کنندگان در این چند ماه تحت هدایت مستقیم و مدام مربیان ماهر به پروژه‌های متعددی کمک می‌کنند. با قرار گرفتن در معرض چنین شرایطی، دانش‌آموزان به راحتی شروع به مشارکت در پروژه‌های دنیای واقعی در خانه خود خواهند کرد.\n- [Hacktoberfest](https://hacktoberfest.digitalocean.com)\n- [Hyperledger Mentorship Program](https://wiki.hyperledger.org/display/INTERN) - \n    اگر اهل بلاک چین هستید، این برای شماست. شما می توانید به Hyperledger کمک کنید. این برنامه راهنمایی به شما امکان می دهد تا با توسعه منبع باز Hyperledger آشنا شوید. به شما مربیانی اختصاص داده می شود که در جامعه توسعه دهندگان Hyperledger کاملاً فعال هستند.\n- [LF Networking Mentorship](https://wiki.lfnetworking.org/display/LN/LFN+Mentorship+Program)\n- [Microsoft Reinforcement Learning](https://www.microsoft.com/en-us/research/academic-program/rl-open-source-fest/)\n- [Major League Hacking (MLH) Fellowship](https://fellowship.mlh.io/) - \n    یک جایگزین کارآموزی از راه دور برای فن‌شناسان مشتاق در جایی که می‌سازند یا در پروژه‌های منبع باز مشارکت می‌کنند.\n- [Open Summer of Code](https://osoc.be/students)\n- [Open Mainframe](https://www.openmainframeproject.org/all-projects/mentorship-program) -\n    پروژه Open Mainframeنیز برنامه منبع باز خود را دارد و شاگردان قادر خواهند بود دانش خود را در مورد فناوری مین فریم گسترش دهند.\n    \n- [Outreachy](https://www.outreachy.org)\n- [Processing Foundation Internship](https://processingfoundation.org/fellowships/)\n- [Rails Girls Summer of Code](https://railsgirlssummerofcode.org/) -\n    یک برنامه کمک هزینه جهانی برای زنان و کدنویسان غیر باینری که در آن بر روی پروژه های منبع باز موجود کار می کنند و مهارت های خود را گسترش می دهند.\n- [Redox OS Summer of Code](https://www.redox-os.org/rsoc/) -\n    Redox OS Summer of Code اولین استفاده از کمک های مالی برای پروژه Redox OS است. دانش آموزانی انتخاب می شوند که قبلاً تمایل و توانایی خود را برای مشارکت در سیستم عامل Redox نشان داده اند\n- [Social Summer of Code](https://ssoc.devfolio.co/) -\n    بنیاد اجتماعی این برنامه تابستانی دو ماهه را برای دانش‌آموزان ارائه می‌کند تا با فرهنگ منبع باز آشنا شوند و در جامعه مشارکت کنند. شرکت کنندگان تحت هدایت مربیان با تجربه در پروژه های واقعی مشارکت می کنند.\n- [Season of KDE](https://season.kde.org/) -\n    فصل KDE که توسط جامعه KDE میزبانی می‌شود، یک برنامه ارتباطی برای همه افراد در سراسر جهان است. KDE یک جامعه نرم‌افزار آزاد بین‌المللی است که نرم‌افزار رایگان و منبع باز توسعه می‌دهد و شما می‌توانید از طریق برنامه Season of KDE به KDE کمک کنید.\n    \n</p>\n</div>\n\n<div dir=\"rtl\" style=\"direction:rtl;text-align:right;\">\n<p>\n    \n## مجوز\n    \n    \n<a rel=\"license\" href=\"http://creativecommons.org/licenses/by-sa/4.0/\"><img alt=\"Creative Commons License\" style=\"border-width:0\" src=\"https://i.creativecommons.org/l/by-sa/4.0/88x31.png\" /><br /></a>این کار تحت مجوز <a rel=\"license\" href=\"http://creativecommons.org/licenses/by-sa/4.0/\">Creative Commons Attribution-ShareAlike 4.0 International License</a> منتشر شده است.\n</p>\n</div>\n\n"
  },
  {
    "path": "README-FR.md",
    "content": "<table>\n    <tr>\n        <!-- Do not translate this table -->\n        <td><a href=\"./README.md\"> English </a></td>\n        <td><a href=\"./README-MR.md\"> मराठी </a></td>\n        <td><a href=\"./README-BN.md\"> বাংলা </a></td>\n        <td><a href=\"./README-CN.md\"> 中文 </a></td>\n        <td><a href=\"./README-RU.md\"> русский </a></td>\n        <td><a href=\"./README-RO.md\"> Românesc </a></td>\n        <td><a href=\"./README-IT.md\"> Italiano </a></td>\n        <td><a href=\"./README-ES.md\"> Español </a></td>\n        <td><a href=\"./README-pt-BR.md\"> Português (BR) </a></td>\n        <td><a href=\"./README-DE.md\"> Deutsch </a></td>\n        <td><a href=\"./README-GR.md\"> Ελληνικά </a></td>\n        <td><a href=\"./README-FR.md\"> Français </a></td>\n        <td><a href=\"./README-TR.md\"> Turkish </a></td>\n        <td><a href=\"./README-KO.md\"> 한국어 </a></td>\n    </tr>\n</table>\n\n# Bienvenue aux nouveaux contributeurs Open Source !\n\n[![Pull Requests Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat)](http://makeapullrequest.com)\n[![first-timers-only Friendly](https://img.shields.io/badge/first--timers--only-friendly-blue.svg)](http://www.firsttimersonly.com/)\n[![Check Resources](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml/badge.svg)](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml)\n\nVoici une liste de ressources pour les contributeurs novices de l'Open Source.\n\nSi vous trouvez des ressources additionnelles, veuillez ajouter une contribution (`pull request`).\n\nSi vous avez des questions ou commentaires, veuillez créer un ticket.\n\n**Sommaire**\n\n- [Contribuer à l'Open Source en général](#contribuer-à-lopen-source-en-général)\n- [Recherches directes sur GitHub](#recherches-directes-sur-github)\n- [L'écosystème de contribution de Mozilla](#lécosystème-de-contribution-de-mozilla)\n- [Articles utiles pour les contributeurs novices de l'Open Source](#articles-utiles-pour-les-contributeurs-novices-de-lopen-source)\n- [Utiliser le gestionnaire de version](#utiliser-le-gestionnaire-de-version)\n- [Livres sur l'Open Source](#livres-sur-lopen-source)\n- [Initiatives de contributions à l'Open Source](#initiatives-de-contributions-à-lopen-source)\n- [Licence](#licence)\n\n## Contribuer à l'Open Source en général\n> Articles et ressources qui discutent de la communauté et de la culture open source \n- [Le Guide Définitif pour Contribuer à l'Open Source](https://medium.freecodecamp.org/the-definitive-guide-to-contributing-to-open-source-900d5f9f2282) de [@DoomHammerNG](https://twitter.com/DoomHammerNG)\n- [Une Intro à l'Open Source](https://www.digitalocean.com/community/tutorial_series/an-introduction-to-open-source) - tutoriels de DigitalOcean pour vous mettre sur la bonne voie pour contribuer avec succès dans GitHub.\n- [Issuehub.io](http://issuehub.pro/) - un outil pour chercher les `issues` dans GitHub en les filtrant par label et langage.\n- [Code Triage](https://www.codetriage.com/) - un autre outil pratique pour chercher les dépôts populaires et `issues` filtrés par langage.\n- [Parfait-pour-débutants](https://github.com/MunGell/awesome-for-beginners) - un dépôt GitHub regroupant des projets avec des bugs faciles pour les contributeurs novices, et avec des labels pour les décrire.\n- [Guides de l'Open Source](https://opensource.guide/) - collection de ressources pour les particuliers, communautés et sociétés qui désirent apprendre à gérer et contribuer à un projet Open Source.\n- [45 Issues Github à faire et à ne pas faire](https://hackernoon.com/45-github-issues-dos-and-donts-dfec9ab4b612) - ce qu'il faut faire et ne pas faire sur GitHub.\n- [Guides de GitHub](https://docs.github.com/en) - guides basiques sur comment utiliser GitHub efficacement.\n- [Contribuer à l'Open Source](https://github.com/danthareja/contribute-to-open-source) - apprendre le processus de GitHub en contribuant du code à une simulation de projet.\n- [Guide pour l'Open Source de la Fondation Linux pour l'entreprise](https://www.linuxfoundation.org/resources/open-source-guides) - les guides de la Fondation Linux pour les projets Open Source.\n- [CSS Tricks - Guide de l'étiquette Open Source](https://css-tricks.com/open-source-etiquette-guidebook/) - un guide de l'étiquette Open Source, écrit par [Kent C. Dodds](https://github.com/kentcdodds) et [Sarah Drasner](https://github.com/sdras).\n- [Ressource A à Z pour les étudiants](https://github.com/dipakkr/A-to-Z-Resources-for-Students) - liste organisée de ressources et d'opportunités pour les étudiants universitaires souhaitant apprendre un nouveau langage informatique.\n- [Contribuer à votre premier projet Open Source : une approche pratique](https://blog.devcenter.co/contributing-to-your-first-open-source-project-a-practical-approach-1928c4cbdae) - une approche étape par étape pour contribuer à votre premier projet Open Source, de [Abati Adewale](https://www.acekyd.com).\n- [Pull Request Roulette](http://www.pullrequestroulette.com/) - ce site offre une liste de `pull requests` soumises pour être revues appartenant à des projets Open Source hébergés sur GitHub.\n- [\"Comment contribuer à un projet Open Source sur GitHub\" de Egghead.io](https://egghead.io/courses/how-to-contribute-to-an-open-source-project-on-github) - un guide vidéo expliquant étape par étape comment contribuer à des projets Open Source sur GitHub.\n- [Contribuer à l'Open Source: Un guide de A à Z](https://medium.com/@kevinjin/contributing-to-open-source-walkthrough-part-0-b3dc43e6b720) - ce guide couvre tous les aspects de la contribution Open Source, de la recherche d'un projet approprié à la résolution d'`issues`, en passant par l'intégration de `pull requests`.\n- [\"Comment contribuer à l'Open Source\" par Sarah Drasner](https://css-tricks.com/how-to-contribute-to-an-open-source-project/) - l'autrice entre dans les détails de la contribution Open Source sur GitHub. \n- [\"Comment se lancer dans l'Open Source\" par Sayan Chowdhury](https://hackerearth.com/getstarted-opensource/) - cet article aborde les ressources à disposition des débutants pour la contribution aux projets Open Source sur base de leur langage informatique préféré.\n- [\"Parcourir de bonnes premières `issues` pour se lancer dans l'Open Source\"](https://github.blog/2020-01-22-browse-good-first-issues-to-start-contributing-to-open-source/) - GitHub offre désormais la possibilité aux novices de trouver des `issues` adaptés à leur niveau pour se lancer dans la contribution Open Source.\n- [\"Comment contribuer aux projets Open Source\" par Maryna Z](https://rubygarage.org/blog/how-contribute-to-open-source-projects) -  cet article exhaustif s'adresse aux entreprises (mais reste utile pour les contributeurs individuels) et explique pourquoi et comment contribuer à des projets Open Source.\n\n## Recherches directes sur GitHub\n> Listes de recherches pointant directement vers des « issues » propices à la contribution sur GitHub.\n- [is:issue is:open label:beginner](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Abeginner)\n- [is:issue is:open label:easy](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Aeasy)\n- [is:issue is:open label:first-timers-only](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Afirst-timers-only)\n- [is:issue is:open label:good-first-bug](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Agood-first-bug)\n- [is:issue is:open label:\"good first issue\"](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3A\"good+first+issue\")\n- [is:issue is:open label:starter](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Astarter)\n- [is:issue is:open label:up-for-grabs](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Aup-for-grabs)\n\n## L'écosystème de contribution de Mozilla\n> Mozilla s'engage à améliorer la santé de l'internet. Ce qui apporte des opportunités de contribuer à ses projets open source. \n- [Bons premiers bugs](https://bugzilla.mozilla.org/buglist.cgi?quicksearch=sw:%22[good%20first%20bug]%22&limit=0) - bugs que les développeurs ont identifiés comme de bonnes introductions au projet.\n- [Bugs encadrés](https://bugzilla.mozilla.org/buglist.cgi?quicksearch=mentor%3A%40) - bugs qui ont un mentor assigné qui sera là sur IRC pour vous aider si vous êtes bloqué en essayant de le résoudre.\n- [Bugs Ahoy](http://www.joshmatthews.net/bugsahoy/) - un site dédié à la recherche de bugs sur Bugzilla.\n- [Firefox DevTools](http://firefox-dev.tools/) - un site dédié aux bugs reportés sur l'outil de développement du navigateur Firefox.\n- [Start Mozilla](https://twitter.com/StartMozilla) - un compte Twitter qui publie des problèmes adaptés aux apprentis contributeurs de l'écosystème Mozilla.\n\n## Articles utiles pour les contributeurs novices de l'Open Source\n> Blogues et articles qui aident les nouveaux arrivés à faire leurs premières contributions.\n- [Comment choisir (et contribuer à) votre premier projet Open Source](https://github.com/collections/choosing-projects) par [@GitHub](https://github.com/github)\n- [Comment trouver votre premier bug Open Source à résoudre](https://medium.freecodecamp.org/finding-your-first-open-source-project-or-bug-to-work-on-1712f651e5ba#.slc8i2h1l) par [@Shubheksha](https://github.com/Shubheksha)\n- [Novices exclusivement](https://kentcdodds.com/blog/first-timers-only) par [@kentcdodds](https://github.com/kentcdodds)\n- [Ramenons la gentillesse dans l'Open Source](http://www.hanselman.com/blog/BringKindnessBackToOpenSource.aspx) par [@shanselman](https://github.com/shanselman)\n- [Aborder l'Open Source pour la première fois](https://www.nearform.com/blog/getting-into-open-source-for-the-first-time/) par [@mcdonnelldean](https://github.com/mcdonnelldean)\n- [Comment contribuer à l'Open Source](https://opensource.guide/how-to-contribute/) par [@GitHub](https://github.com/github/opensource.guide)\n- [Comment trouver un bug dans votre code](https://8thlight.com/insights/how-to-find-a-bug-in-your-code) par [@dougbradbury](https://twitter.com/dougbradbury)\n- [Maîtriser le Markdown](https://docs.github.com/features/mastering-markdown/) par [@GitHubGuides](https://docs.github.com/en)\n- [Première mission : Page des contributeurs](https://forcrowd.medium.com/first-mission-contributors-page-df24e6e70705#.2v2g0no29) par [@forCrowd](https://github.com/forCrowd)\n- [Comment effectuer votre première contribution à l'Open Source en seulement 5 minutes](https://medium.freecodecamp.org/how-to-make-your-first-open-source-contribution-in-just-5-minutes-aaad1fc59c9a) par [@roshanjossey](https://medium.freecodecamp.org/@roshanjossey)\n- [Hacktoberfest 2018 : Comment obtenir votre T-shirt gratuit, même si vous êtes un(e) novice du code](https://medium.freecodecamp.org/hacktoberfest-2018-how-you-can-get-your-free-shirt-even-if-youre-new-to-coding-96080dd0b01b) par [@quincylarson](https://medium.freecodecamp.org/@quincylarson)\n- [Un guide amer de l'Open Source](https://medium.com/codezillas/a-bitter-guide-to-open-source-a8e3b6a3c1c4) par [@ken_wheeler](https://medium.com/@ken_wheeler)\n- [Un guide étape par étape pour les développeurs juniors contribuant à l'Open Source pour la première fois](https://hackernoon.com/contributing-to-open-source-the-sharks-are-photoshopped-47e22db1ab86) par [@LetaKeane](http://www.letakeane.com/)\n- [Apprendre Git et GitHub étape par étape (sur Windows)](https://medium.com/@ows_ali/be93518e06dc) par [@ows-ali](https://medium.com/@ows_ali)\n\n## Utiliser le gestionnaire de version\n> Guides et ressources sur l'utilisation de la gestion de contrôle, typiquement Git et GitHub.\n- [Tutoriel vidéo pour Git et Github par l'Université de Harvard](https://www.youtube.com/watch?v=NcoBAfJ6l2Q) - Tutoriel de l'Université de Harvard, dans le cadre de leur cours de développement Web CS50 sur la compréhension de Git et GitHub et l'utilisation des commandes Git.\n- [Penser comme (un) Git](https://think-like-a-git.net/) - introduction à Git pour les \"novices avancés\" qui ont toujours des difficultés, pour vous offrir une stratégie simple pour expérimenter sans risque avec Git.\n- [Démarrage rapide - Configurer Git](https://docs.github.com/en/get-started/quickstart/set-up-git) - Découvrez comment configurer Git localement et configurer l'authentification, ainsi que les prochaines étapes de votre parcours d'apprentissage\n- [Everyday Git](https://git-scm.com/docs/giteveryday) - liste des commandes basiques utiles pour utiliser Git au quotidien.\n- [Oh shit, git!](http://ohshitgit.com/) - comment s'extraire des erreurs courantes de `git` expliquées de manière simple.\n- [Tutoriels Git d'Atlassian](https://www.atlassian.com/git/tutorials/) - tutoriels variés sur comment utiliser `git`.\n- [Aide-mémoire pour GitHub Git](https://education.github.com/git-cheat-sheet-education.pdf) (PDF)\n- [Wiki de freeCodeCamp sur les ressources Git](https://www.freecodecamp.org/forum/t/wiki-git-resources/13136)\n- [GitHub Flow](https://www.youtube.com/watch?v=juLIxo42A_s) (42:06) - Discussion sur comment effectuer une `pull request` dans GitHub.\n- [Ressources pour apprendre GitHub](https://help.github.com/articles/git-and-github-learning-resources/) - Ressources pour apprendre Git et GitHub.\n- [Pro Git](https://git-scm.com/book/en/v2) - Le livre entier Pro Git, écrit par Scott Chacon et Ben Straub et publié par Apress.\n- [Git-it](https://github.com/jlord/git-it-electron) - Application tutoriel étape par étape pour Git.\n- [Règles de vol pour Git](https://github.com/k88hudson/git-flight-rules) - Un guide expliquant quoi faire quand les choses vont mal.\n- [Guide en espagnol pour les novices de Git](https://platzi.github.io/git-slides/#/) - Un guide complet de diapositives sur Git et GitHub expliqué en espagnol.\n- [Git Kraken](https://www.gitkraken.com/git-client) - Application visuelle, multiplateforme et interactive de gestion de version Git.\n- [Git Tips](https://github.com/git-tips/tips) - Une collection des trucs et astuces Git les plus utiles.\n- [Git Best Practices](https://sethrobertson.github.io/GitBestPractices/) - Effectuez régulièrement des `commits`, peaufinez-les plus tard, publiez une seule fois: les meilleurs pratiques Git.\n- [Git Interactive Tutorial](https://learngitbranching.js.org/) - La méthode la plus interactive et visuelle pour apprendre Git.\n- [Aide-mémoire de Git](https://devhints.io/?q=git) - Un ensemble de Aide-mémoires graphiques sur git\n- [Introduction complète à Git et GitHub](https://codeburst.io/git-good-part-a-e0d826286a2a) - Un guide rédigé par Madhav Bahl, que vous devriez consulter si vous êtes un(e) novice de Git ou GitHub. Il couvre GitHub en tant que service ainsi que les concepts de gestion de version Git en détail.\n- [Un tutoriel d'introduction à Git](https://git-scm.com/docs/gittutorial) -Un tutoriel pour les débutants par Git.\n- [First Aid Git ](https://firstaidgit.io/#/) - Une collection consultable des questions Git les plus fréquemment posées. Les réponses à ces questions ont été recueillies à partir de l'expérience personnelle, de Stackoverflow et de la documentation officielle de Git.\n- [Try Git](https://docs.github.com/en/get-started/quickstart/set-up-git) - apprendre Git en 15 minutes depuis votre navigateur gratuitement.\n\n## Livres sur l'Open Source\n> Livres sur tout ce qui est open source: la culture, l'histoire, les meilleures pratiques, etc.\n- [Concevoir un logiciel Open Source](http://producingoss.com/) - \"Producing Open Source Software\" (\"Produire du logiciel Open Source\") est un ouvrage sur l'aspect humain du développement Open Source. Il décrit comment opèrent les projets réussis, les attentes des utilisateurs et développeurs, et la culture du logiciel libre.\n- [Série de livres sur l'Open Source](https://opensource.com/resources/ebooks) - Apprenez-en plus sur l'Open Source en général ainsi que sur le mouvement Open Source croissant grâce à cette série de livres électroniques gratuits de https://opensource.com.\n- [Pratiques de lancement de logiciel](http://en.tldp.org/HOWTO/Software-Release-Practice-HOWTO/) - Ce guide décrit les bonnes pratiques de lancement pour Linux et autres projets Open Source. En suivant ces pratiques, vous faciliterez la tâche des utilisateurs pour construire votre code et l'utiliser, et celle des autres développeurs pour comprendre votre code et coopérer avec vous afin de l'améliorer.\n- [Open Sources 2.0 : L'Évolution Continuelle](https://archive.org/details/opensources2.000diborich) (2005) - Open Sources 2.0  est un recueil d'articles perspicaces et stimulants de leaders technologiques qui continuent sur la lancée de l'image dépeinte dans le livre de 1999, Open Sources: Voices from the Revolution (\"Open Source : Les Voix de la Révolution\").\n- [L'Architecture des Applications Open Source](http://www.aosabook.org/en/git.html) - cet ouvrage aborde la façon dont Git fonctionne \"sous le capot\" pour rendre possible le workflow distribué, et en quoi il diffère des autres logiciels de gestion de version.\n\n- [Open Sources: Les Voix de la Révolution Open Source](https://www.oreilly.com/openbook/opensources/book/) - Recueil de textes écrits par des pionniers de l'Open Source, tels que Linus Torvalds (Linux), Larry Wall (Perl) et Richard Stallman (GNU).\n\n\n## Initiatives de contributions à l'Open Source\n> Listes d'initiatives qui font l'agglomération de « issues » qui sont faciles de contribuer pour un débutant ou des évènements saisonniers.\n- [Up For Grabs](http://up-for-grabs.net/#/) - (\"Bon à prendre\") Contient des projets avec des bugs accessibles aux novices.\n- [First Timers Only](http://www.firsttimersonly.com/) - (\"Débutants seulement\") Une liste de bugs indiqués comme \"first-timers-only\".\n- [First Contributions](https://firstcontributions.github.io/) - (\"Premières contributions\") Effectuez votre première contribution à l'Open Source en 5 minutes. Un outil et tutoriel pour aider les débutants à se lancer dans les contributions.\n- [Hacktoberfest](https://hacktoberfest.digitalocean.com/) - Un programme pour encourager les contributions à l'Open Source. Gagnez des T-shirts et des autocollants en effectuant au moins 5 `pull requests` durant le mois d'octobre.\n- [24 Pull Requests](https://24pullrequests.com) - 24 Pull Requests est un projet axé sur la collaboration Open Source durant le mois de décembre.\n\n## Licence\n> Des programmes et des stages offerts par la communauté pour aider de nouveaux contributeurs à être jumelés avec des mentors et pour avoir accès à des ressources pour contribuer à des logiciels open source.\n<a rel=\"license\" href=\"http://creativecommons.org/licenses/by-sa/4.0/\"><img alt=\"Creative Commons License\" style=\"border-width:0\" src=\"https://i.creativecommons.org/l/by-sa/4.0/88x31.png\" /></a><br />Ce travail est licencié sous une <a rel=\"license\" href=\"http://creativecommons.org/licenses/by-sa/4.0/\">Creative Commons Attribution-ShareAlike 4.0 International License</a>.\n"
  },
  {
    "path": "README-GR.md",
    "content": "<table>\n    <tr>\n        <!-- Do not translate this table -->\n        <td><a href=\"./README.md\"> English </a></td>\n        <td><a href=\"./README-MR.md\"> मराठी </a></td>\n        <td><a href=\"./README-BN.md\"> বাংলা </a></td>\n        <td><a href=\"./README-CN.md\"> 中文 </a></td>\n        <td><a href=\"./README-RU.md\"> русский </a></td>\n        <td><a href=\"./README-RO.md\"> Românesc </a></td>\n        <td><a href=\"./README-IT.md\"> Italiano </a></td>\n        <td><a href=\"./README-ES.md\"> Español </a></td>\n        <td><a href=\"./README-pt-BR.md\"> Português (BR) </a></td>\n        <td><a href=\"./README-DE.md\"> Deutsch </a></td>\n        <td><a href=\"./README-GR.md\"> Ελληνικά </a></td>\n        <td><a href=\"./README-FR.md\"> Français </a></td>\n        <td><a href=\"./README-TR.md\"> Turkish </a></td>\n        <td><a href=\"./README-KO.md\"> 한국어 </a></td>\n    </tr>\n</table>\n\n# Καλώς ήρθατε στη συνεισφορά λογισμικού Ανοικτού Κώδικα!\n\n[![Pull Requests Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat)](http://makeapullrequest.com)\n[![first-timers-only Friendly](https://img.shields.io/badge/first--timers--only-friendly-blue.svg)](http://www.firsttimersonly.com/)\n[![Check Resources](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml/badge.svg)](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml)\n\nΑυτή είνα μία λίστα με υλικό για αρχάριους στη συνεισφορά Ανοικτού Κώδικα.\n\nΑν βρείτε πρόσθετο υλικό, παρακαλούμε να το προσθέσετε με ένα pull request.\n\nΑν έχετε ερωτήσεις ή σχόλια, δημιουργήστε ένα issue.\n\n**Περιεχόμενα**\n- [Γενικά για τη συνεισφορά Ανοικτού Κώδικα](#Γενικά-για-τη-συνεισφορά-Ανοικτού-Κώδικα)\n- [Direct GitHub searches](#direct-github-searches)\n- [Mozilla's contributor ecosystem](#mozillas-contributor-ecosystem)\n- [Χρήσιμα άρθρα για αρχάριους στη συνεισφορά Ανοικτού Κώδικα](#Χρήσιμα-άρθρα-για-αρχάριους-στη-συνεισφορά-Ανοικτού-Κώδικα)\n- [Χρήση Version Control](#Χρήση-Version-Control)\n- [Βιβλία σχετικά με Ανοικτό κώδικα](#Βιβλία-σχετικά-με-Ανοικτό-κώδικα)\n- [Open Source contribution initiatives](#Open-Source-contribution-initiatives)\n- [Άδεια χρήσης](#Άδεια-χρήσης)\n\n## Γενικά για τη συνεισφορά Ανοικτού Κώδικα\n- [The Definitive Guide to Contributing to Open Source](https://medium.freecodecamp.org/the-definitive-guide-to-contributing-to-open-source-900d5f9f2282) by [@DoomHammerNG](https://twitter.com/DoomHammerNG)\n- [Εισαγωγή στον Ανοικτό Κώδικα](https://www.digitalocean.com/community/tutorial_series/an-introduction-to-open-source) - Μαθήματα από την DigitalOcean για συνεισφορά Ανοικτού Κώδικα με επιτυχία, στο GitHub.\n- [Issuehub.io](http://issuehub.pro/) - Ένα εργαλείο που επιτρέπει την αναζήτηση των issues του GitHub για συγκεκριμένες ετικέτες (labels) και γλώσσες προγραμματισμού.\n- [Code Triage](https://www.codetriage.com/) - Άλλο ένα, πολύ καλό, εργαλείο για να βρίσκουμε δημοφιλή repositories και issues διαχωρισμένα ώς προς την γλώσσα προγραμματισμού.\n- [Φοβερό-για-αρχάριους](https://github.com/MunGell/awesome-for-beginners) - Ένα GitHub repository που συγκεντρώνει projects με bugs εύκολα για αρχάριους, εφαρμόζωντας ετικέτες (labels) για να τα περιγράψει.\n- [Οδηγοί για τον Ανοικτό Κώδικα](https://opensource.guide/) - Συλλογή από υλικό για άτομα, κοινότητες και εταιρίες που θέλουν να μάθουν πως να τρέξουν και να συνεισφέρουν σε ένα project Ανοικτού Κώδικα.\n- [45 Github Issues Dos and Don’ts](https://hackernoon.com/45-github-issues-dos-and-donts-dfec9ab4b612) - Do's and Don'ts on GitHub.\n- [Οδηγοί GitHub](https://docs.github.com/en) - Βασικοί οδηγοί για την αποτελεσματική χρήση του GitHub.\n- [Contribute to Open Source](https://github.com/danthareja/contribute-to-open-source) - Μάθε τη ροή που πρέπει να ακολουθείται στο GitHub, μέσω της συνεισφοράς κώδικα σε ένα project προσομείωσης.\n- [Linux Foundation's Open Source Guides for the Enterprise](https://www.linuxfoundation.org/resources/open-source-guides) - Οι οδηγοί του Linux Foundation για τα project Ανοικτού Κώδικα.\n- [CSS Tricks An Open Source Etiquette Guidebook](https://css-tricks.com/open-source-etiquette-guidebook/) - Ένα Open Source Etiquette Guidebook, γραμμένο από τον Kent C. Dodds και την Sarah Drasner.\n- [A to Z Resources for Students](https://github.com/dipakkr/A-to-Z-Resources-for-Students) - Μία λίστα από υλικό και ευκαιρίες για φοιτητές να μάθουν μία νέα γλώσσα προγραμματισμού.\n- [Contributing to your First Open Source Project: A Practical Approach](https://blog.devcenter.co/contributing-to-your-first-open-source-project-a-practical-approach-1928c4cbdae) - Μία βήμα-προς-βήμα προσέγγιση για το πως να συνεισφέρεις σε ένα project Ανοικτού Κώδικα για πρώτη φορά, από τον [Abati Adewale](https://www.acekyd.com).\n- [Pull Request Roulette](http://www.pullrequestroulette.com/) - Μία ιστοσελίδα που απαριθμεί pull requests που έχουν υποβληθεί για έλεγχο σε projects Ανοικτού Κώδικα του GitHub.\n- [\"How to Contribute to an Open Source Project on GitHub\" by Egghead.io](https://egghead.io/courses/how-to-contribute-to-an-open-source-project-on-github) - Ένας βήμα-προς-βήμα βίντεο οδηγός σχετικά με το πως να ξεκινήσει κάποιος να συνεισφέρει σε projects Ανοικτού Κώδικα στο GitHub.\n\n## Direct GitHub searches\nΣυνδέσμοι που μας πάνε απευθείας σε issues του GitHub, που είναι κατάλληλα για να συνεισφέρουμε.\n- [is:issue is:open label:beginner](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Abeginner)\n- [is:issue is:open label:easy](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Aeasy)\n- [is:issue is:open label:first-timers-only](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Afirst-timers-only)\n- [is:issue is:open label:good-first-bug](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Agood-first-bug)\n- [is:issue is:open label:\"good first issue\"](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3A\"good+first+issue\")\n- [is:issue is:open label:starter](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Astarter)\n- [is:issue is:open label:up-for-grabs](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Aup-for-grabs)\n\n## Mozilla's contributor ecosystem\n- [Good First Bugs](https://bugzilla.mozilla.org/buglist.cgi?quicksearch=sw:%22[good%20first%20bug]%22&limit=0) - Bugs που έχουν μαρκαριστεί από προγραμματιστές ως καταλληλα για αρχάριους στο project.\n- [Mentored Bugs](https://bugzilla.mozilla.org/buglist.cgi?quicksearch=mentor%3A%40) - Bugs στα οποία έχει καθοριστεί ένας μέντορας που θα βρίσκεται στο IRC για να σε καθοδηγήσει όταν θα χρειαστείς βοήθεια.\n- [Bugs Ahoy](http://www.joshmatthews.net/bugsahoy/) - Μία ιστοσελίδα ειδική στο να βρίσκει κάποιος bugs στο Bugzilla.\n- [Firefox DevTools](http://firefox-dev.tools/) - Μία ιστοσελίδα ειδική σε bugs για τα εργαλεία προγραμματισμού στο Firefox (Firefox Developer Tools).\n- [Start Mozilla](https://twitter.com/StartMozilla) - Ένας λογαριασμός στο Twitter που δημοσιεύει issues κατάλληλα για αρχάριους στη συνεισφορά Ανοικτού Κώδικα στο Mozilla ecosystem.\n\n## Χρήσιμα άρθρα για αρχάριους στη συνεισφορά Ανοικτού Κώδικα\n- [Πως να διαλέξεις (και να συνεισφέρεις) το πρώτο σου project Ανοικτού Κώδικα](https://github.com/collections/choosing-projects) by [@GitHub](https://github.com/github)\n- [Πως να βρεις το πρώτο σου bug για να διορθώσεις](https://medium.freecodecamp.org/finding-your-first-open-source-project-or-bug-to-work-on-1712f651e5ba#.slc8i2h1l) by [@Shubheksha](https://github.com/Shubheksha)\n- [Μόνο για αρχάριους](https://kentcdodds.com/blog/first-timers-only) by [@kentcdodds](https://github.com/kentcdodds)\n- [Φέρτε πίσω την ευγένεια στις κοινότητες Ανοικτού Κώδικα](http://www.hanselman.com/blog/BringKindnessBackToOpenSource.aspx) by [@shanselman](https://github.com/shanselman)\n- [Μπαίνοντας στον κόσμο του Ανοικτού Κώδικα για πρώτη φορά](https://www.nearform.com/blog/getting-into-open-source-for-the-first-time/) by [@mcdonnelldean](https://github.com/mcdonnelldean)\n- [Πως να συνεισφέρεις σε Ανοικτό Κώδικα](https://opensource.guide/how-to-contribute/) by [@GitHub](https://github.com/github/docs)\n- [Πως να βρεις bugs στον κώδικα σου](https://8thlight.com/insights/how-to-find-a-bug-in-your-code) by [@dougbradbury](https://twitter.com/dougbradbury)\n- [Mastering Markdown](https://docs.github.com/features/mastering-markdown/) by [@GitHubGuides](https://docs.github.com/en)\n- [Πρώτο βήμα: Σελίδα με άτομα που συνεισφέρουν (contributors page)](https://forcrowd.medium.com/first-mission-contributors-page-df24e6e70705#.2v2g0no29) by [@forCrowd](https://github.com/forCrowd)\n- [Πως να συνεισφέρεις σε Ανοικτό Κώδικα για πρώτη φορά, σε μόλις 5 λεπτά](https://medium.freecodecamp.org/how-to-make-your-first-open-source-contribution-in-just-5-minutes-aaad1fc59c9a) by [@roshanjossey](https://medium.freecodecamp.org/@roshanjossey)\n- [Hacktoberfest 2018: Πως μπορείς να πάρεις το δωρεάν μπλουζάκι - ακόμα κι αν είσαι νέος στο προγραμματισμό](https://medium.freecodecamp.org/hacktoberfest-2018-how-you-can-get-your-free-shirt-even-if-youre-new-to-coding-96080dd0b01b) by [@quincylarson](https://medium.freecodecamp.org/@quincylarson)\n- [Ένας πικρόχολος οδηγός στον Ανοικτό Κώδικα](https://medium.com/codezillas/a-bitter-guide-to-open-source-a8e3b6a3c1c4) by [@ken_wheeler](https://medium.com/@ken_wheeler)\n- [Οδηγός βήμα-προς-βήμα πρώτης συνεισφοράς Ανοικτού Κώδικα για junior developers](https://hackernoon.com/contributing-to-open-source-the-sharks-are-photoshopped-47e22db1ab86) by [@LetaKeane](http://www.letakeane.com/)\n- [Μάθε βήμα-προς-βήμα το Git και το GitHub (σε Windows)](https://medium.com/@ows_ali/be93518e06dc) by [@ows-ali](https://medium.com/@ows_ali)\n\n## Χρήση Version Control\n- [Think Like (a) Git](https://think-like-a-git.net/) - Εισαγωγή στο Git για \"έμπειρους πρωτάρηδες\", με σκοπό να τους δώσει μία απλή στρατηγική για να πειραματιστούν με το Git.\n- [Try Git](https://docs.github.com/en/get-started/quickstart/set-up-git) - Μάθε το Git σε 15 λεπτά από τον browser σου, δωρεάν.\n- [Everyday Git](https://git-scm.com/docs/giteveryday) - Χρήσιμες εντολές για την καθημερινή χρήση του Git.\n- [Oh shit, git!](http://ohshitgit.com/) - Πως να αποφύγεις τα συνηθισμένα λάθη στο git.\n- [Atlassian Git Tutorials](https://www.atlassian.com/git/tutorials/) - Διάφοροι οδηγοί για τη χρήση του 'git'.\n- [GitHub Git Cheat Sheet](https://education.github.com/git-cheat-sheet-education.pdf) (PDF)\n- [freeCodeCamp's Wiki on Git Resources](https://www.freecodecamp.org/forum/t/wiki-git-resources/13136)\n- [GitHub Flow](https://www.youtube.com/watch?v=juLIxo42A_s) (42:06) - Συζήτηση για το πως να κάνει κάποιος ένα pull request.\n- [GitHub Learning Resources](https://help.github.com/articles/git-and-github-learning-resources/) - Υλικό για εκμάθηση του Git και GitHub.\n- [Pro Git](https://git-scm.com/book/en/v2) - Ολόκληρο το βιβλίο \"Pro Git\", γραμμένο από τον Scott Chacon και τον Ben Straub που δημοσιεύθηκε από την Apress.\n- [Git-it](https://github.com/jlord/git-it-electron) - Βήμα-προς-βήμα οδηγός για τη Git desktop εφαρμογή.\n- [Flight Rules for Git](https://github.com/k88hudson/git-flight-rules) - Ένας οδηγός σχετικά με το τι κάνω όταν τα πράγματα πάνε στραβά.\n- [A Comprehensive Introduction To Git and GitHub](https://codeburst.io/git-good-part-a-e0d826286a2a) - Ένας οδηγός γραμμένος από τον Madhav Bahl, που πρέπει να δεις αν είσαι νέος στο Git ή στο GitHub. Καλύπτει, με λεπτομέρειες, το GitHub σαν υπηρεσία και έννοιες του Git version control.\n- [Git Guide for Beginners in Spanish](https://platzi.github.io/git-slides/#/) - Ένας πλήρης οδηγός, στα Ισπανικά, με διαφάνειες σχετικές με το git και το GitHub.\n- [Git Kraken](https://www.gitkraken.com/git-client) - Visual, cross-platform, και διαδραστική `git` desktop εφαρμογή για version control.\n\n## Βιβλία σχετικά με Ανοικτό κώδικα\n- [Producing Open Source Software](http://producingoss.com/) - Το \"Producing Open Source Software\" είναι ένα βιβλίο σχετικά με την ανθρώπινη πλευρά της ανάπτυξης Ανοικτού Κώδικα. Περιγράφει πως λειτουργούν τα επιτυχημένα projects, τις προσδοκίες των χρηστών και των προγραμματιστών, και την κουλτουρα του ελεύθερου λογισμικού.\n- [Σειρά βιβλίων Ανοικτού Κώδικα](https://opensource.com/resources/ebooks) - Μάθε περισσότερα για τον Ανοικτό Κώδικα και το αναπτυσσόμενο κίνημα του, μέσα από μια περιεκτική λίστα δωρεάν ηλεκτρονικών βιβλίων στο https://opensource.com.\n- [Software Release Practice HOWTO](http://tldp.org/HOWTO/Software-Release-Practice-HOWTO/) - Αυτός ο οδηγός περιγράφει κάποιες καλές πρακτικές για έκδοση λογισμικού του Linux και άλλα projects Ανοικτού Κώδικα. Ακολουθώντας αυτές τις πρακτικές, κάνετε όσο το δυνατόν ευκολότερο για τους χρήστες να χρησιμοποιήσουν τον κώδικα σας, και για τους προγραμματιστές να τον καταλάβουν και να συνεργαστούν μαζί σας, με σκοπό να τον βελτιώσουν.\n- [Open Sources 2.0 : The Continuing Evolution](https://archive.org/details/opensources2.000diborich) (2005) - Το \"Open Sources 2.0\" είναι μία συλλογή από εύστοχες και παραγωγικές προσπάθειες από τους ηγέτες της σημερινής τεχνολογίας. Συνεχίζει το έργο που ξεκίνησε στο βιβλίο του 1999, \"Open Sources: Voices from the Revolution\".\n\n## Open Source contribution initiatives\n- [Up For Grabs](http://up-for-grabs.net/#/) - Περιέχει projects με φιλικά-για-αρχάριους issues.\n- [First Timers Only](http://www.firsttimersonly.com/) - Μία λίστα από bugs μαρκαρισμένα ως \"first-timers-only\".\n- [First Contributions](https://firstcontributions.github.io/) - Κάνε την πρώτη σου συνεισφορά Ανοικτού Κώδικα σε 5 λεπτά. Ένα εργαλείο και οδηγός που βοηθάει τους νέους στον Ανοικτό Κώδικα να ξεκινήσουν.\n- [Hacktoberfest](https://hacktoberfest.digitalocean.com/) - Ένα πρόγραμμα που παροτρύνει τη συνεισφορά Ανοικτού Κώδικα. Κέρδισε δώρα, όπως μπλουζάκια και αυτοκόλλητα, κάνωντας τουλάχιστον 5 pull request τον Οκτώβριο.\n- [24 Pull Requests](https://24pullrequests.com) - Το \"24 Pull Requests\" είναι ένα προγραμμα που προωθεί τη συνεισφορά Ανοικτού Κώδικα για το μήνα Δεκέμβριο.\n\n## Άδεια χρήσης\n<a rel=\"license\" href=\"http://creativecommons.org/licenses/by-sa/4.0/\"><img alt=\"Creative Commons License\" style=\"border-width:0\" src=\"https://i.creativecommons.org/l/by-sa/4.0/88x31.png\" /></a><br />Αυτό το έργο διανέμεται σύμφωνα με την <a rel=\"license\" href=\"http://creativecommons.org/licenses/by-sa/4.0/\">Creative Commons Attribution-ShareAlike 4.0 International άδεια χρήσης</a>.\n"
  },
  {
    "path": "README-GU.md",
    "content": "<!-- Do not translate this -->\n<details>\n<summary>\n<strong> અન્ય ભાષાઓમાં આ માર્ગદર્શિકા વાંચો </strong>\n</summary>\n    <ul>\n        <li><a href=\"./README.md\"> English </a></li>\n        <li><a href=\"./README-GU.md\">ગુજરાતી</a></li>\n        <li><a href=\"./README-MR.md\"> मराठी </a></li>\n        <li><a href=\"./README-BN.md\"> বাংলা </a></li>\n        <li><a href=\"./README-CN.md\"> 中文 </a></li>\n        <li><a href=\"./README-RU.md\"> русский </a></li>\n        <li><a href=\"./README-RO.md\"> Românesc </a></li>\n        <li><a href=\"./README-IT.md\"> Italiano </a></li>\n        <li><a href=\"./README-ID.md\"> Indonesia </a></li>\n        <li><a href=\"./README-ES.md\"> Español </a></li>\n        <li><a href=\"./README-pt-BR.md\"> Português (BR) </a></li>\n        <li><a href=\"./README-DE.md\"> Deutsch </a></li>\n        <li><a href=\"./README-HE.md\"> עברית </a></li>\n        <li><a href=\"./README-GR.md\"> Ελληνικά </a></li>\n        <li><a href=\"./README-FR.md\"> Français </a></li>\n        <li><a href=\"./README-TR.md\"> Turkish </a></li>\n        <li><a href=\"./README-KO.md\"> 한국어 </a></li>\n        <li><a href=\"./README-JA.md\"> 日本語 </a></li>\n        <li><a href=\"./README-HI.md\"> हिंदी </a></li>\n        <li><a href=\"./README-FA.md\"> فارسی </a></li>\n        <li><a href=\"./README-UR.md\">اردو </a></li>\n        <li><a href=\"./README-AR.md\">اللغة العربية </a></li>\n        <li><a href=\"./README-TA.md\">தமிழ்</a></li>\n        <li><a href=\"./README-NE.md\">नेपाली</a></li>\n    </ul>\n</details>\n<!-- Do not translate this -->\n\n# ઓપન સોર્સ ફાળો આપનારાઓનું સ્વાગત છે!\n\n[![Pull Requests Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat)](https://makeapullrequest.com)\n[![first-timers-only Friendly](https://img.shields.io/badge/first--timers--only-friendly-blue.svg)](https://www.firsttimersonly.com/)\n[![Check Resources](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml/badge.svg)](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml)\n\nઆ એવા લોકો માટે સંસાધનોની સૂચિ છે જેઓ ઓપન સોર્સમાં યોગદાન આપવા માટે નવા છે.\n\nજો તમને વધારાના સંસાધનો મળે, તો કૃપા કરીને પુલ વિનંતીમાં યોગદાન આપો.\n\nજો તમારી પાસે પ્રશ્નો અથવા ટિપ્પણીઓ હોય, તો કૃપા કરીને એક મુદ્દો બનાવો.\n\n**સામગ્રી**\n\n- [સામાન્ય રીતે ઓપન સોર્સમાં યોગદાન આપવું](#સામાન્ય-રીતે-ઓપન-સોર્સમાં-યોગદાન-આપવું)\n- [ડાયરેક્ટ GitHub શોધ](#ડાયરેક્ટ-GitHub-શોધ)\n- [મોઝિલાનું યોગદાનકર્તા ઇકોસિસ્ટમ](#મોઝિલાસ-કોન્ટ્રીબ્યુટર-ઇકોસિસ્ટમ)\n- [નવા ઓપન સોર્સ યોગદાનકર્તાઓ માટે ઉપયોગી લેખો](#ઉપયોગી-લેખ-નવા-ખુલ્લા-સ્રોત-યોગદાનકર્તાઓ-માટે)\n- [સંસ્કરણ નિયંત્રણનો ઉપયોગ કરીને](#સંસ્કરણ-નિયંત્રણનો-ઉપયોગ-કરીને)\n- [ઓપન સોર્સ પુસ્તકો](#ઓપન-સોર્સ-પુસ્તકો)\n- [ઓપન સોર્સ યોગદાન પહેલ](#ઓપન-સોર્સ-કોન્ટ્રીબ્યુશન-પહેલ)\n- [ભાગ લેવા માટે ઓપન સોર્સ પ્રોગ્રામ](#ઓપન-સોર્સ-પ્રોગ્રામ્સ-ટુ-પાર્ટીસિપેટ-ઇન)\n- [લાઇસન્સ](#લાઇસન્સ)\n\n## સામાન્ય રીતે ઓપન સોર્સમાં યોગદાન આપવું\n\n> લેખો અને સંસાધનો કે જે વિશ્વ અને ઓપન સોર્સની સંસ્કૃતિની ચર્ચા કરે છે.\n\n- [ઓપન સોર્સમાં યોગદાન આપવા માટે ચોક્કસ માર્ગદર્શિકા](https://www.freecodecamp.org/news/the-definitive-guide-to-contributing-to-open-source-900d5f9f2282/) દ્વારા [@DoomHammerNG](https://twitter.com/DoomHammerNG).\n- [ઓપન સોર્સનો પ્રસ્તાવના](https://www.digitalocean.com/community/tutorial_series/an-introduction-to-open-source) - GitHub પર અહીં યોગદાન સફળતાના તમારા માર્ગ પર માર્ગદર્શન આપવા માટે DigitalOcean દ્વારા ટ્યુટોરિયલ્સ.\n- [કોડ ટ્રાયજ](https://www.codetriage.com/) - અન્ય, ખરેખર સરસ, લોકપ્રિય ભંડાર અને ભાષા દ્વારા ફિલ્ટર કરાયેલ મુદ્દાઓ શોધવા માટેનું સાધન.\n- [ઓપન સોર્સ સાથે તમારું ભવિષ્ય બનાવો](https://pragprog.com/titles/vbopens/forge-your-future-with-open-source/) ($) - ઓપન સોર્સ, પ્રોજેક્ટ કેવી રીતે શોધવો અને યોગદાન કેવી રીતે શરૂ કરવું તે સમજાવવા માટે સમર્પિત પુસ્તક. સોફ્ટવેર ડેવલપમેન્ટમાં તમામ ભૂમિકાઓનો સમાવેશ, માત્ર પ્રોગ્રામરો જ નહીં.\n- [નવા નિશાળીયા માટે અદ્ભુત](https://github.com/MunGell/awesome-for-beginners) - એક GitHub રેપો કે જે નવા ફાળો આપનારાઓ માટે સારી ભૂલો સાથેના પ્રોજેક્ટને એકઠા કરે છે અને તેનું વર્ણન કરવા માટે લેબલ્સ લાગુ કરે છે.\n- [ઓપન સોર્સ માર્ગદર્શિકાઓ](https://opensource.guide/) - વ્યક્તિઓ, સમુદાયો અને કંપનીઓ માટે સંસાધનોનો સંગ્રહ કે જેઓ ઓપન સોર્સ પ્રોજેક્ટને કેવી રીતે ચલાવવા અને તેમાં યોગદાન આપવું તે શીખવા માંગે છે.\n- [45 Github શું કરવું અને શું ન કરવું તે મુદ્દાઓ](https://hackernoon.com/45-github-issues-dos-and-donts-dfec9ab4b612) - GitHub પર શું કરવું અને શું નહીં.\n- [GitHub માર્ગદર્શિકાઓ](https://docs.github.com/en) - GitHub નો અસરકારક રીતે ઉપયોગ કેવી રીતે કરવો તેની મૂળભૂત માર્ગદર્શિકાઓ.\n- [ઓપન સોર્સમાં યોગદાન આપો](https://github.com/danthareja/contribute-to-open-source) - સિમ્યુલેશન પ્રોજેક્ટમાં કોડનું યોગદાન આપીને GitHub વર્કફ્લો શીખો.\n- [એન્ટરપ્રાઇઝ માટે Linux ફાઉન્ડેશનની ઓપન સોર્સ માર્ગદર્શિકાઓ](https://www.linuxfoundation.org/resources/open-source-guides) - ઓપન સોર્સ પ્રોજેક્ટ માટે Linux ફાઉન્ડેશનની માર્ગદર્શિકા.\n- [CSS Tricks ઓપન સોર્સ એટિક્યુએટ ગાઇડબુક](https://css-tricks.com/open-source-etiquette-guidebook/) - ઓપન સોર્સ એટિક્યુએટ ગાઇડબુક, કેન્ટ સી. ડૉડ્સ અને સારા ડ્રાસનર દ્વારા લખાયેલ.\n- [સ્ટુડેન્ટ્સને મદદગ્રહિત સ્રોતોની એ-ઝિ સૂચિ](https://github.com/dipakkr/A-to-Z-Resources-for-Students) - કોલેજ સ્ટુડેન્ટ્સને નવી કોડિંગ ભાષા શીખવા માટે સ્રોતોની સંગ્રહિત સૂચિ.\n- [પ્રોલ રિક્વેસ્ટ રૂલેટ](http://www.pullrequestroulette.com/) - આ સાઇટના ઓપન સોર્સ પ્રોજેક્ટ્સને હોસ્ટ કરેલા ગિથ્બાબનો પ્રકટ કરવામાં આવેલા પ્રોલ રિક્વેસ્ટ્સની સૂચિ છે.\n- [\"ઓપન સોર્સ પ્રોજેક્ટનાં મદદ કરવાની પ્રક્રિયા\" ઈજ્હેડની દ્વારા](https://egghead.io/courses/how-to-contribute-to-an-open-source-project-on-github) - ઓપન સોર્સ પ્રોજેક્ટ્સમાં મદદ કરવાની પ્રક્રિયાની વીડિયો ગાઇડ.\n- [ઓપન સોર્સમાં યોગદાન: શરૂઆતથી અંત સુધી લાઇવ વૉકથ્રૂ](https://medium.com/@kevinjin/contributing-to-open-source-walkthrough-part-0-b3dc43e6b720) - ઓપન સોર્સ યોગદાનનું આ વૉકથ્રુ યોગ્ય પ્રોજેક્ટ પસંદ કરવાથી, કોઈ મુદ્દા પર કામ કરવાથી, PRને મર્જ કરવા સુધીની દરેક વસ્તુને આવરી લે છે.\n- [સારાહ ડ્રાસનર દ્વારા \"ઓપન સોર્સ પ્રોજેક્ટમાં કેવી રીતે યોગદાન આપવું\"](https://css-tricks.com/how-to-contribute-to-an-open-source-project/) - તેઓ નિટી પર ધ્યાન કેન્દ્રિત કરી રહ્યાં છે -GitHub પર કોઈ બીજાના પ્રોજેક્ટમાં પુલ વિનંતી (PR)નું યોગદાન આપવાનું ગંભીર.\n- સયાન ચૌધરી દ્વારા [\"ઓપન સોર્સ સાથે કેવી રીતે શરૂઆત કરવી\"](https://www.hackerearth.com:443/getstarted-opensource/) - આ લેખ નવા નિશાળીયા માટે તેમના મનપસંદના આધારે ઓપન સોર્સમાં યોગદાન આપવા માટેના સંસાધનોને આવરી લે છે ભાષા રસ.\n- [\"ઓપન સોર્સમાં યોગદાન આપવા માટે પ્રથમ સારા મુદ્દાઓ બ્રાઉઝ કરો\"](https://github.blog/2020-01-22-browse-good-first-issues-to-start-contributing-to-open-source/) - GitHub હવે તમને ઓપન સોર્સમાં યોગદાન આપવાનું શરૂ કરવા માટે સારી પ્રથમ સમસ્યાઓ શોધવામાં મદદ કરે છે.\n- [મેરીના ઝેડ દ્વારા \"ઓપન સોર્સ પ્રોજેક્ટમાં કેવી રીતે યોગદાન આપવું\"](https://rubygarage.org/blog/how-contribute-to-open-source-projects) - આ વ્યાપક લેખ વ્યવસાયો તરફ નિર્દેશિત છે (પરંતુ હજુ પણ ઉપયોગી વ્યક્તિગત યોગદાનકર્તાઓ માટે) જ્યાં તે શા માટે, કેવી રીતે અને કયા ઓપન-સોર્સ પ્રોજેક્ટ્સમાં યોગદાન આપવું તે વિશે વાત કરે છે.\n- [\"પ્રારંભ-અહીં-માર્ગદર્શિકાઓ\" એન્ડ્રે દ્વારા](https://github.com/zero-to-mastery/start-here-guidelines) -\n  ચાલો Git ને ઓપનસોર્સની દુનિયામાં શરૂ કરીએ, ઓપનસોર્સ પ્લેગ્રાઉન્ડમાં શરૂ કરીએ. ખાસ કરીને શિક્ષણ અને વ્યવહારુ અનુભવ હેતુઓ માટે રચાયેલ છે.\n- [NumFocus દ્વારા \"ઓપન સોર્સ સાથે શરૂઆત કરવી\"](https://github.com/numfocus/getting-started-with-open-source) - એક GitHub રેપો જે યોગદાનકર્તાઓને ઓપન-સોર્સમાં પ્રવેશમાં આવતા અવરોધોને દૂર કરવામાં મદદ કરે છે.\n- [\"Opensoure-4-everyone\" by Chryz-hub](https://github.com/chryz-hub/opensource-4-everyone) - ઓપન સોર્સથી સંબંધિત દરેક વસ્તુ પરનો ભંડાર. આ GitHub સભ્યપદ દૃશ્યતા, મૂળભૂત અને એડવાન્સ ગિટ આદેશો સાથે પ્રેક્ટિસ, ઓપન સોર્સ સાથે પ્રારંભ કરવા અને વધુમાં મદદ કરવા માટેનો પ્રોજેક્ટ છે.\n- [\"ઓપન એડવાઈસ\"](http://open-advice.org/) - વિવિધ પ્રકારના ફ્રી સોફ્ટવેર પ્રોજેક્ટ્સમાંથી જ્ઞાન સંગ્રહ. તે પ્રશ્નનો જવાબ આપે છે કે 42 અગ્રણી યોગદાનકર્તાઓએ ક્યારે શરૂ કર્યું તે જાણવું ગમ્યું હશે જેથી તમે કેવી રીતે અને ક્યાં યોગદાન આપો, પછી ભલે તમે મુખ્ય શરૂઆત મેળવી શકો.\n- [\"GitHub Skills\"](https://skills.github.com) - GitHub કૌશલ્ય સાથે તમારી કુશળતાને સ્તર આપો. અમારો મૈત્રીપૂર્ણ બૉટ તમને આનંદદાયક, વ્યવહારુ પ્રોજેક્ટ્સની શ્રેણીમાં લઈ જશે જેથી તમને જરૂર હોય તે કૌશલ્યો સમયસર શીખી શકાય—અને રસ્તામાં મદદરૂપ પ્રતિસાદ શેર કરો.\n- [\"પ્રોજેક્ટો ખોલવામાં નવા આવનારાઓને ફાળો આપનાર બનવામાં મદદ કરવા માટેના દસ સરળ નિયમો\"](https://journals.plos.org/ploscompbiol/article?id=10.1371/journal.pcbi.1007296) - આ લેખ ઘણા સમુદાયોના અભ્યાસ અને સભ્યો, નેતાઓના અનુભવો પર આધારિત નિયમોને આવરી લે છે , અને નિરીક્ષકો.\n- [\"ગિટહબ પર યોગદાન આપવા માટે પગલું-દર-પગલાની માર્ગદર્શિકા\"](https://www.dataschool.io/how-to-contribute-on-github/) - સહાયક વિઝ્યુઅલ્સ અને લિંક્સ સાથે પગલું-દર-પગલાની માર્ગદર્શિકા ઓપન સોર્સ પ્રોજેક્ટમાં યોગદાન આપવાની સમગ્ર પ્રક્રિયા અંગે.\n- [પ્રદુમ્ના સાથે ઓપન સોર્સ](https://github.com/Pradumnasaraf/open-source-with-pradumna) - આ રેપોમાં ઓપન સોર્સ, Git અને GitHub સાથે શીખવા અને તમારી જાતને શરૂ કરવા માટે સંસાધનો અને સામગ્રી શામેલ છે.\n- [\"FOSS કોમ્યુનિટી એક્રોનિમ્સ\"](https://github.com/d-edge/foss-acronyms) - આ રેપોમાં FOSS (ફ્રી અને ઓપન સોર્સ) સમુદાયમાં ઉપયોગમાં લેવાતા સંક્ષિપ્ત શબ્દોની સૂચિ છે, તેમની વ્યાખ્યાઓ અને ઉપયોગો\n- [\"ઓપન સોર્સ ફિએસ્ટા - ઓપન સોર્સ ફિએસ્ટા\"](https://zubi.gitbook.io/open-source-fiesta/) - GitHub રિપોઝીટરીઝમાં કેવી રીતે યોગદાન આપવું તે અંગે પગલું-દર-પગલાની સૂચના અને તેમાં ગિટ આદેશનો સમાવેશ થાય છે. લાઇન ચીટશીટ.\n- [\"ઓપન-સોર્સ સમુદાયમાં યોગદાન આપો\"](https://arijitgoswami.hashnode.dev/contribute-to-the-open-source-community) - ઓપન-સોર્સ સૉફ્ટવેરના ફાયદા, આંતરિક કાર્યને કેવી રીતે સમજવું ઓપન સોર્સ પ્રોજેક્ટ અને પ્રથમ યોગદાન આપો.\n- [\"ઓપન સોર્સ માટે સંપૂર્ણ માર્ગદર્શિકા - કેવી રીતે યોગદાન આપવું\"](https://www.youtube.com/watch?v=yzeVMecydCE) (41:52) - એડી જૌડે સાથે ઓપન સોર્સ સોફ્ટવેરમાં શા માટે અને કેવી રીતે યોગદાન આપવું તે જાણો .\n\n## ડાયરેક્ટ GitHub શોધ\n\n> GitHub પર યોગદાન આપવા માટે યોગ્ય મુદ્દાઓ પર સીધી નિર્દેશ કરતી લિંક્સ શોધો.\n\n- [is:issue is:open label:beginner](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Abeginner&type=issues)\n- [is:issue is:open label:easy](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Aeasy&type=issues)\n- [is:issue is:open label:first-timers-only](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Afirst-timers-only&type=issues)\n- [is:issue is:open label:good-first-bug](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Agood-first-bug&type=issues)\n- [is:issue is:open label:\"good first issue\"](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22&type=issues)\n- [is:issue is:open label:starter](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Astarter&type=issues)\n- [is:issue is:open label:up-for-grabs](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Aup-for-grabs&type=issues)\n- [is:issue is:open label:easy-fix](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Aeasy-fix&type=issues)\n- [is:issue is:open label:\"beginner friendly\"](https://github.com/search?q=beginner+friendly&state=open&type=Issues)\n\n## Mozillaનું યોગદાનકર્તા ઇકોસિસ્ટમ\n\n> Mozilla ફાળો આપનાર ઈકોસિસ્ટમ Mozilla તંદુરસ્ત ઈન્ટરનેટ માટે વચન આપે છે અને તેની સાથે તેના ઓપન સોર્સ પ્રોજેક્ટ્સમાં યોગદાન આપવાની તકો છે.\n\n- [ગુડ ફર્સ્ટ બગ્સ](https://bugzilla.mozilla.org/buglist.cgi?quicksearch=good-first-bug) - બગ્સ કે જે વિકાસકર્તાઓએ પ્રોજેક્ટના સારા પરિચય તરીકે ઓળખ્યા છે.\n- [MDN વેબ ડૉક્સ](https://developer.mozilla.org/en-US/docs/MDN/Contribute) - સામગ્રી સમસ્યાઓ અને પ્લેટફોર્મ બગ્સને ઠીક કરીને વેબ પ્લેટફોર્મના દસ્તાવેજીકરણમાં MDN વેબ ડૉક્સ ટીમને સહાય કરો.\n- [માર્ગદર્શિત બગ્સ](https://bugzilla.mozilla.org/buglist.cgi?quicksearch=mentor%3A%40) - બગ્સ કે જેમાં એક માર્ગદર્શક સોંપાયેલ છે જે તમને કામ કરતી વખતે અટવાઈ જાય ત્યારે તમને મદદ કરવા માટે IRC પર હાજર રહેશે સુધારા પર.\n- [બગ્સ એહોય](https://www.joshmatthews.net/bugsahoy/) - બગઝિલા પર બગ્સ શોધવા માટે સમર્પિત સાઇટ.\n- [Firefox DevTools](https://firefox-dev.tools/) - ફાયરફોક્સ બ્રાઉઝરમાં ડેવલપર ટૂલ્સ માટે ફાઇલ કરવામાં આવેલી બગ્સને સમર્પિત સાઇટ.\n- [મોઝિલા શરૂ કરો](https://twitter.com/StartMozilla) - એક Twitter એકાઉન્ટ જે મોઝિલા ઇકોસિસ્ટમમાં નવા યોગદાનકર્તાઓ માટે યોગ્ય મુદ્દાઓ વિશે ટ્વીટ કરે છે.\n\n## નવા ઓપન સોર્સ યોગદાનકર્તાઓ માટે ઉપયોગી લેખો\n\n> કેવી રીતે પ્રારંભ કરવું તે અંગે નવા યોગદાનકર્તાઓ પર નિર્દેશિત મદદરૂપ લેખો અને બ્લોગ્સ.\n\n- [GitHub પર ઓપન સોર્સમાં યોગદાન આપવાની રીતો શોધવી](https://docs.github.com/en/get-started/exploring-projects-on-github/finding-ways-to-contribute-to-open-source- ઓન-ગીથબ) દ્વારા [@GitHub](https://github.com/github)\n- [ફિક્સ કરવા માટે તમારી પ્રથમ ઓપન સોર્સ બગ કેવી રીતે શોધવી](https://www.freecodecamp.org/news/finding-your-first-open-source-project-or-bug-to-work-on-1712f651e5ba/ ) [@Shubheksha](https://github.com/Shubheksha) દ્વારા\n- [First Timers Only](https://kentcdodds.com/blog/first-timers-only) [@kentcdodds](https://github.com/kentcdodds) દ્વારા\n- [Bring Kindness Back to Open Source](https://web.archive.org/web/20201009150545/https://www.hanselman.com/blog/bring-kindness-back-to-open-source) દ્વારા [ @shanselman](https://github.com/shanselman)\n- [પ્રથમ વખત ઓપન સોર્સમાં પ્રવેશ મેળવવો](https://www.nearform.com/blog/getting-into-open-source-for-the-first-time/) [@mcdonnelldean](https:// /github.com/mcdonnelldean)\n- [કેવી રીતે ઓપન સોર્સમાં યોગદાન આપવું](https://opensource.guide/how-to-contribute/) [@GitHub](https://github.com/github/opensource.guide) દ્વારા\n- [તમારા કોડમાં બગ કેવી રીતે શોધવી](https://8thlight.com/insights/how-to-find-a-bug-in-your-code) દ્વારા [ @dougbradbury](https://twitter.com/dougbradbury)\n- [માર્કડાઉનમાં નિપુણતા મેળવવી](https://docs.github.com/en/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax) [@GitHub](https://github.com/github/docs) દ્વારા\n- [પ્રથમ મિશન: યોગદાનકર્તાઓનું પૃષ્ઠ](https://forcrowd.medium.com/first-mission-contributors-page-df24e6e70705) [@forCrowd](https://github.com/forCrowd) દ્વારા\n- [ફક્ત 5 મિનિટમાં તમારું પ્રથમ ઓપન સોર્સ યોગદાન કેવી રીતે બનાવવું](https://www.freecodecamp.org/news/how-to-make-your-first-open-source-contribution-in-just-5- મિનિટ-aaad1fc59c9a/) [@roshanjossey](https://github.com/Roshanjossey/) દ્વારા\n- [મને હમણાં જ મારો મફત હેકટોબરફેસ્ટ શર્ટ મળ્યો. અહીં એક ઝડપી રીત છે જે તમે તમારું મેળવી શકો છો.](https://www.freecodecamp.org/news/i-just-got-my-free-hacktoberfest-shirt-heres-a-quick-way-you-can-get -yours-fa78d6e24307/) [@quincylarson] દ્વારા(https://www.freecodecamp.org/news/author/quincylarson/)\n- [એક બિટર ગાઈડ ટુ ઓપન સોર્સ](https://medium.com/codezillas/a-bitter-guide-to-open-source-a8e3b6a3c1c4) [@ken_wheeler](https://medium.com/@ken_wheeler) દ્વારા )\n- [પ્રથમ વખત ઓપન સોર્સમાં યોગદાન આપવા માટે જુનિયર ડેવલપરની પગલું-દર-પગલાની માર્ગદર્શિકા](https://hackernoon.com/contributing-to-open-source-the-sharks-are-photoshopped-47e22db1ab86) દ્વારા [ @LetaKeane](https://hackernoon.com/u/letakeane)\n- [Git અને GitHub સ્ટેપ બાય સ્ટેપ (વિન્ડોઝ પર)](https://medium.com/illumination/path-to-learning-git-and-github-be93518e06dc) દ્વારા [@ows-ali](https:/ શીખો /ows-ali.medium.com/)\n- [કેમ ઓપન સોર્સ અને કેવી રીતે?](https://careerkarma.com/blog/open-source-projects-for-beginners/) [@james-gallagher](https://careerkarma.com/blog/author) દ્વારા /જેમ્સગલાગર/)\n- [ઓપન સોર્સ સાથે કેવી રીતે શરૂઆત કરવી - સયાન ચૌધરી દ્વારા](https://www.hackerearth.com/getstarted-opensource/)\n- [@kentcdodds](https://github) દ્વારા [મારે કયા ઓપન-સોર્સમાં યોગદાન આપવું જોઈએ](https://kentcdodds.com/blog/what-open-source-project-should-i-contribute-to) com/kentcdodds)\n- [ફ્રેન્કલિન ઓકોલી દ્વારા](https://developeraspire.hashnode.dev/an-immersive-introductory-guide-to-open-source) (https://twitter.com/ DeveloperAspire)\n- [ઝારા કૂપર] (https://stackoverflow.blog/2020/08/03/getting-started-with-contributing-to-open-source/) દ્વારા [ઓપન સોર્સમાં યોગદાન સાથે પ્રારંભ કરવું](https:// stackoverflow.blog/author/zara-cooper/)\n- [સુદીપ્તો ઘોષ] (https://github.com/pydevsg) દ્વારા [ઓપન-સોર્સ યોગદાન માટે પ્રારંભિક માર્ગદર્શિકા](https://workat.tech/general/article/open-source-contribution-guide-xmhf1k601vdj)\n- [ઓપનસોર્સ](https://opensource.com/life/16/1/8-ways-contribute-open-source-without-writing-code) દ્વારા [ઓપન સોર્સમાં યોગદાન આપવાની 8 બિન-કોડ રીતો](https ://twitter.com/OpenSourceWay)\n- [ઓપન સોર્સ સોફ્ટવેર શું છે? OSS સાદા અંગ્રેજીમાં સમજાવ્યું](https://www.freecodecamp.org/news/what-is-open-source-software-explained-in-plain-english/) [Jessica Wilkins](https://www. freecodecamp.org/news/author/jessica-wilkins/)\n- [ગીટહબ પર ઓપન સોર્સ પ્રોજેક્ટ કેવી રીતે શરૂ કરવો - માય ટ્રેન્ડિંગ રેપો બનાવવા માટેની ટિપ્સ](https://www.freecodecamp.org/news/how-to-start-an-open-source-project-on-github- ટીપ્સ-from-building-my-trending-repo/) દ્વારા [@Rishit-dagli](https://github.com/Rishit-dagli)\n\n## સંસ્કરણ નિયંત્રણનો ઉપયોગ કરીને\n\n> વર્ઝન કંટ્રોલ, ખાસ કરીને Git અને GitHub નો ઉપયોગ કરવા પર વિવિધ સ્તરોના ટ્યુટોરિયલ્સ અને સંસાધનો.\n\n- [હાર્વર્ડ યુનિવર્સિટી દ્વારા ગિટ અને ગીથબ માટેનું વિડિયો ટ્યુટોરિયલ](https://www.youtube.com/watch?v=NcoBAfJ6l2Q) - હાર્વર્ડ યુનિવર્સિટી દ્વારા ટ્યુટોરિયલ, ગિટ અને ગિટહબને સમજવા અને ગિટ સાથે કામ કરવા અંગેના તેમના CS50 વેબ ડેવલપમેન્ટ કોર્સનો ભાગ આદેશો\n- [Think Like (a) Git](https://think-like-a-git.net/) - \"અદ્યતન નવા નિશાળીયા\" માટે ગિટ પરિચય, પરંતુ હજુ પણ સંઘર્ષ કરી રહ્યાં છે, જેથી તમને સુરક્ષિત રીતે પ્રયોગ કરવાની એક સરળ વ્યૂહરચના આપવામાં આવે ગિટ સાથે.\n- [ક્વિકસ્ટાર્ટ - ગિટ સેટ કરો](https://docs.github.com/en/get-started/quickstart/set-up-git) - આગળના પગલાઓ સાથે Git સ્થાનિક રીતે કેવી રીતે સેટ કરવું અને પ્રમાણીકરણ કેવી રીતે સેટ કરવું તે જાણો તમારી શીખવાની યાત્રા પર.\n- [Everyday Git](https://git-scm.com/docs/giteveryday) - રોજિંદા ગિટ માટે આદેશોનો એક ઉપયોગી લઘુત્તમ સેટ.\n- [ઓહ શિટ, ગિટ!](https://ohshitgit.com/) - સાદા અંગ્રેજીમાં વર્ણવેલ સામાન્ય `git` ભૂલોમાંથી કેવી રીતે બહાર નીકળવું; શપથ લીધા વગરના પેજ માટે [Dangit, git!](https://dangitgit.com/) પણ જુઓ.\n- [એટલેસિયન ગિટ ટ્યુટોરિયલ્સ](https://www.atlassian.com/git/tutorials) - `git` નો ઉપયોગ કરવા પર વિવિધ ટ્યુટોરિયલ્સ.\n- [ગીટહબ ગિટ ચીટ શીટ](https://education.github.com/git-cheat-sheet-education.pdf) (PDF)\n- [ફ્રીકોડકેમ્પની વિકી ઓન ગિટ રિસોર્સિસ](https://forum.freecodecamp.org/t/wiki-git-resources/13136)\n- [GitHub Flow](https://www.youtube.com/watch?v=juLIxo42A_s) (42:06) - પુલ વિનંતી કેવી રીતે કરવી તેના પર GitHub ચર્ચા.\n- [ક્વિકસ્ટાર્ટ - ગિટહબ લર્નિંગ રિસોર્સિસ](https://docs.github.com/en/get-started/quickstart/git-and-github-learning-resources) - Git અને GitHub શીખવાના સંસાધનો.\n- [પ્રો ગિટ](https://git-scm.com/book/en/v2) - સમગ્ર પ્રો ગિટ પુસ્તક, સ્કોટ ચાકોન અને બેન સ્ટ્રોબ દ્વારા લખાયેલ અને એપ્રેસ દ્વારા પ્રકાશિત.\n- [Git-it](https://github.com/jlord/git-it-electron) - સ્ટેપ બાય સ્ટેપ ગિટ ટ્યુટોરીયલ ડેસ્કટોપ એપ્લિકેશન.\n- [ગીટ માટે ફ્લાઇટ નિયમો](https://github.com/k88hudson/git-flight-rules) - જ્યારે વસ્તુઓ ખોટી થાય ત્યારે શું કરવું તે અંગેની માર્ગદર્શિકા.\n- [સ્પેનિશમાં શરૂઆત માટે ગિટ ગાઇડ](https://platzi.github.io/git-slides/#/) - ગિટ અને ગિટહબ વિશેની સ્લાઇડ્સની સંપૂર્ણ માર્ગદર્શિકા સ્પેનિશમાં સમજાવવામાં આવી છે. Una guía completa de diapositivas sobre git y GitHub explicadas en Español.\n- [Git Kraken](https://www.gitkraken.com/git-client) - સંસ્કરણ નિયંત્રણ માટે વિઝ્યુઅલ, ક્રોસ-પ્લેટફોર્મ અને ઇન્ટરેક્ટિવ `git` ડેસ્કટૉપ એપ્લિકેશન.\n- [ગિટ ટિપ્સ](https://github.com/git-tips/tips) - સૌથી વધુ ઉપયોગમાં લેવાતી ગિટ ટીપ્સ અને યુક્તિઓનો સંગ્રહ.\n- [Git શ્રેષ્ઠ વ્યવહારો](https://sethrobertson.github.io/GitBestPractices/) - વારંવાર પ્રતિબદ્ધ કરો, પછીથી પરફેક્ટ, એકવાર પ્રકાશિત કરો: Git શ્રેષ્ઠ પ્રેક્ટિસ.\n- [Git Interactive Tutorial](https://learngitbranching.js.org/) - ગિટને સૌથી વિઝ્યુઅલ અને ઇન્ટરેક્ટિવ રીતે શીખો.\n- [ગિટ ચીટ શીટ્સ](https://devhints.io/?q=git) - ગિટ પર ગ્રાફિકલ ચીટ શીટ્સનો સમૂહ.\n- [કમ્પલિટ ગિટ અને ગિટહબ ટ્યુટોરિયલ](https://www.youtube.com/watch?v=apGV9Kg7ics) (1:12:39) - [કુણાલ કુશવાહ] (https://www. youtube.com/channel/UCBGOUQHNNtNGcGzVq5rIXjw).\n- [ગીટનો ટ્યુટોરીયલ પરિચય](https://git-scm.com/docs/gittutorial) - ગિટ દ્વારા પ્રારંભિક લોકો માટેનું ટ્યુટોરીયલ.\n- [ફર્સ્ટ એઇડ ગિટ](https://firstaidgit.io/#/) - સૌથી વધુ વારંવાર પૂછાતા ગિટ પ્રશ્નોનો શોધી શકાય એવો સંગ્રહ. આ પ્રશ્નોના જવાબો વ્યક્તિગત અનુભવ, સ્ટેકઓવરફ્લો અને સત્તાવાર ગિટ દસ્તાવેજોમાંથી એકત્રિત કરવામાં આવ્યા હતા.\n- [સુસાન પોટર દ્વારા ગિટ](https://www.aosabook.org/en/git.html) - ડિસ્ટ્રિબ્યુટેડ વર્કફ્લોને સક્ષમ કરવા માટે કવર હેઠળ ગિટના વિવિધ તકનીકી પાસાઓ કેવી રીતે કાર્ય કરે છે અને તે અન્ય સંસ્કરણ નિયંત્રણ સિસ્ટમોથી કેવી રીતે અલગ છે તે બતાવો (VCSs).\n\n## ઓપન સોર્સ પુસ્તકો\n\n> તમામ બાબતો પરના પુસ્તકો ઓપન સોર્સ: સંસ્કૃતિ, ઇતિહાસ, શ્રેષ્ઠ પ્રથાઓ વગેરે.\n- [પ્રોડ્યુસિંગ ઓપન સોર્સ સૉફ્ટવેર](https://producingoss.com/) - પ્રોડ્યુસિંગ ઓપન સોર્સ સૉફ્ટવેર એ ઓપન સોર્સ ડેવલપમેન્ટની માનવ બાજુ વિશે એક પુસ્તક છે. તે વર્ણવે છે કે કેવી રીતે સફળ પ્રોજેક્ટ કાર્ય કરે છે, વપરાશકર્તાઓ અને વિકાસકર્તાઓની અપેક્ષાઓ અને મફત સૉફ્ટવેરની સંસ્કૃતિ.\n- [ધ આર્કિટેક્ચર ઓફ ઓપન સોર્સ એપ્લીકેશન્સ](https://www.aosabook.org/en/index.html) - ચોવીસ ઓપન સોર્સ એપ્લિકેશનના લેખકો સમજાવે છે કે તેમનું સોફ્ટવેર કેવી રીતે રચાયેલ છે અને શા માટે. વેબ સર્વર્સ અને કમ્પાઈલર્સથી લઈને હેલ્થ રેકોર્ડ મેનેજમેન્ટ સિસ્ટમ્સ, તે તમને વધુ સારા ડેવલપર બનવામાં મદદ કરવા માટે અહીં આવરી લેવામાં આવ્યા છે.\n- [ઓપન સોર્સ બુક સિરીઝ](https://opensource.com/resources/ebooks) - https://opensource.com પરથી મફત ઈબુક્સની વ્યાપક સૂચિ સાથે ઓપન સોર્સ અને વધતી જતી ઓપન સોર્સ ચળવળ વિશે વધુ જાણો.\n- [સૉફ્ટવેર રિલીઝ પ્રેક્ટિસ HOWTO](https://tldp.org/HOWTO/Software-Release-Practice-HOWTO/) - આ HOWTO Linux અને અન્ય ઓપન-સોર્સ પ્રોજેક્ટ્સ માટે સારી રિલીઝ પ્રેક્ટિસનું વર્ણન કરે છે. આ પ્રથાઓને અનુસરીને, તમે વપરાશકર્તાઓ માટે તમારો કોડ બનાવવા અને તેનો ઉપયોગ કરવાનું શક્ય તેટલું સરળ બનાવશો અને અન્ય વિકાસકર્તાઓ તમારા કોડને સમજી શકે અને તેને સુધારવામાં તમારી સાથે સહકાર આપે.\n- [ઓપન સોર્સ 2.0 : ધ કન્ટીન્યુઈંગ ઈવોલ્યુશન](https://archive.org/details/opensources2.000diborich) (2005) - ઓપન સોર્સીસ 2.0 એ આજના ટેક્નોલોજી લીડર્સના સમજદાર અને વિચારપ્રેરક નિબંધોનો સંગ્રહ છે જે ચિત્રકામ ચાલુ રાખે છે. ઉત્ક્રાંતિ ચિત્ર કે જે 1999 પુસ્તક, ઓપન સોર્સિસ: વોઈસ ફ્રોમ ધ રિવોલ્યુશનમાં વિકસિત થયું હતું.\n- [ઓપન સોર્સ: વોઈસ ફ્રોમ ધ ઓપન સોર્સ રિવોલ્યુશન](https://www.oreilly.com/openbook/opensources/book/) - લિનસ ટોરવાલ્ડ્સ (લિનક્સ), લેરી વોલ (પર્લ) જેવા ઓપન સોર્સ અગ્રણીઓના નિબંધો , અને રિચાર્ડ સ્ટોલમેન (GNU).\n\n## ઓપન સોર્સ યોગદાન પહેલ\n\n> પહેલોની સૂચિ જે શિખાઉ માણસને અનુકૂળ મુદ્દાઓ પર અથવા મોસમી ઇવેન્ટ્સ પર કામ કરવા માટે એકત્રિત કરે છે.\n\n- [અપ ફોર ગ્રેબ્સ](https://up-for-grabs.net/) - શિખાઉ માણસ માટે અનુકૂળ મુદ્દાઓ ધરાવતા પ્રોજેક્ટ્સ ધરાવે છે.\n- [પ્રથમ યોગદાન](https://firstcontributions.github.io/) - 5 મિનિટમાં તમારું પ્રથમ ઓપન સોર્સ યોગદાન આપો. નવા નિશાળીયાને યોગદાન સાથે પ્રારંભ કરવામાં મદદ કરવા માટે એક સાધન અને ટ્યુટોરીયલ. [અહીં](https://github.com/firstcontributions/first-contributions) એ સાઇટ માટે GitHub સ્રોત કોડ છે અને રિપોઝીટરીમાં જ યોગદાન આપવાની તક છે.\n- [હેકટોબરફેસ્ટ](https://hacktoberfest.digitalocean.com/) - ઓપન સોર્સ યોગદાનને પ્રોત્સાહિત કરવા માટેનો કાર્યક્રમ. ઓક્ટોબર મહિનામાં ઓછામાં ઓછી 4 પુલ વિનંતીઓ કરીને ટી-શર્ટ અને સ્ટીકર જેવી ભેટો કમાઓ.\n- [24 પુલ વિનંતીઓ](https://24pullrequests.com) - 24 પુલ વિનંતીઓ એ ડિસેમ્બર મહિના દરમિયાન ઓપન સોર્સ સહયોગને પ્રોત્સાહન આપવાનો પ્રોજેક્ટ છે.\n- [Ovio](https://ovio.org) - યોગદાન આપનાર-મૈત્રીપૂર્ણ પ્રોજેક્ટ્સની પસંદ કરેલ પસંદગી સાથેનું પ્લેટફોર્મ. તેની પાસે [શક્તિશાળી ઇશ્યૂ સર્ચ ટૂલ](https://ovio.org/issues) છે અને ચાલો તમે પ્રોજેક્ટ્સ અને સમસ્યાઓને પછીના સમય માટે સાચવીએ.\n- [કોન્ટ્રીબ્યુટ-ટુ-આ-પ્રોજેક્ટ](https://github.com/Syknapse/Contribute-To-This-Project) - આ એક સરળ અને સરળ પ્રોજેક્ટમાં ભાગ લેવા અને મેળવવા માટે પ્રથમ વખત ફાળો આપનારાઓને મદદ કરવા માટેનું ટ્યુટોરિયલ છે. GitHub નો ઉપયોગ કરવામાં આરામદાયક.\n- [ઓપન સોર્સ વેલકમ કમિટી](https://www.oswc.is/) - ઓપન સોર્સ વેલકમ કમિટી (OSWC) નવા આવનારાઓને ઓપન સોર્સની અસાધારણ દુનિયામાં જોડવામાં મદદ કરે છે. આવો અમારી સાથે તમારા ઓપન-સોર્સ પ્રોજેક્ટ સબમિટ કરો!\n\n## ભાગ લેવા માટે ઓપન સોર્સ પ્રોગ્રામ્સ\n\n> ઓપન સોર્સ સોફ્ટવેર પ્રોજેક્ટ્સમાં યોગદાન આપવા માટે શરૂઆતના યોગદાનકર્તાઓને માર્ગદર્શકો અને સંસાધનો સાથે મેચ કરવામાં મદદ કરવા માટે સમુદાય દ્વારા હોસ્ટ કરવામાં આવેલ પ્રોગ્રામ, ઇન્ટર્નશિપ અથવા ફેલોશિપ.\n\n- [ઑલ લિનક્સ ફાઉન્ડેશન (LF) મેન્ટરશિપ્સ](https://mentorship.lfx.linuxfoundation.org/#projects_all)\n- [ક્લાઉડ નેટિવ કમ્પ્યુટિંગ ફાઉન્ડેશન](https://events.linuxfoundation.org/kubecon-cloudnativecon-north-america/)\n- [પ્રારંભિક મૈત્રીપૂર્ણ ઓપન સોર્સ પ્રોગ્રામ્સ તેમની સમયરેખાઓ સાથે](https://github.com/arpit456jain/Open-Source-Programs)\n- [FossAsia](https://fossasia.org)\n- [ફ્રી સૉફ્ટવેર ફાઉન્ડેશન (FSF) ઇન્ટર્નશિપ](https://www.fsf.org/volunteer/internships)\n- [Google સમર ઑફ કોડ](https://summerofcode.withgoogle.com/) - Google દ્વારા વાર્ષિક ધોરણે ચલાવવામાં આવતો પેઇડ પ્રોગ્રામ જે ઓપન-સોર્સ સૉફ્ટવેર ડેવલપમેન્ટમાં વધુ વિદ્યાર્થી વિકાસકર્તાઓને લાવવા પર ધ્યાન કેન્દ્રિત કરે છે.\n- [હેકટોબરફેસ્ટ](https://hacktoberfest.digitalocean.com)\n- [LF નેટવર્કિંગ મેન્ટરશિપ](https://wiki.lfnetworking.org/display/LN/LFN+Mentorship+Program)\n- [માઈક્રોસોફ્ટ રિઇનફોર્સમેન્ટ લર્નિંગ](https://www.microsoft.com/en-us/research/academic-program/rl-open-source-fest/)\n- [ઓપન સમર ઓફ કોડ](https://osoc.be/students)\n- [આઉટરીચી](https://www.outreachy.org)\n- [પ્રોસેસિંગ ફાઉન્ડેશન ઇન્ટર્નશિપ](https://processingfoundation.org/fellowships/)\n- [સોશિયલ સમર ઑફ કોડ](https://ssoc.devfolio.co/) - સોશિયલ ફાઉન્ડેશન વિદ્યાર્થીઓને ઓપન-સોર્સ કલ્ચર વિશે જાણવા અને સમુદાયમાં સામેલ થવા માટે આ બે મહિનાનો ઉનાળાનો પ્રોગ્રામ ઑફર કરે છે. સહભાગીઓ અનુભવી માર્ગદર્શકોના માર્ગદર્શન હેઠળ વાસ્તવિક જીવનના પ્રોજેક્ટ્સમાં યોગદાન આપે છે.\n- [ગર્લસ્ક્રિપ્ટ સમર ઑફ કોડ](https://gssoc.girlscript.tech/) - ગર્લસ્ક્રિપ્ટ ફાઉન્ડેશન દ્વારા દર ઉનાળામાં ત્રણ મહિના સુધી ચાલતો ઓપન-સોર્સ પ્રોગ્રામ. સતત પ્રયત્નો સાથે, સહભાગીઓ આ મહિનાઓમાં કુશળ માર્ગદર્શકોના આત્યંતિક માર્ગદર્શન હેઠળ અસંખ્ય પ્રોજેક્ટ્સમાં યોગદાન આપે છે. આવા એક્સપોઝર સાથે, વિદ્યાર્થીઓ તેમના ઘરની આરામથી વાસ્તવિક દુનિયાના પ્રોજેક્ટ્સમાં યોગદાન આપવાનું શરૂ કરે છે.\n- [રેલ્સ ગર્લ્સ સમર ઓફ કોડ](https://railsgirlssummerofcode.org/) - મહિલાઓ અને બિન-બાઈનરી કોડર્સ માટે વૈશ્વિક ફેલોશિપ પ્રોગ્રામ જ્યાં તેઓ હાલના ઓપન-સોર્સ પ્રોજેક્ટ્સ પર કામ કરે છે અને તેમની કુશળતાને વિસ્તૃત કરે છે.\n- [મેજર લીગ હેકિંગ (એમએલએચ) ફેલોશિપ](https://fellowship.mlh.io/) - મહત્વાકાંક્ષી ટેક્નોલોજિસ્ટ જ્યાં તેઓ ઓપન-સોર્સ પ્રોજેક્ટ બનાવે છે અથવા તેમાં યોગદાન આપે છે તે માટે એક રિમોટ ઇન્ટર્નશિપ વિકલ્પ.\n\n## લાઇસન્સ\n\n<a rel=\"license\" href=\"https://creativecommons.org/licenses/by-sa/4.0/\"><img alt=\"Creative Commons License\" style=\"border-width:0\" src=\"https://licensebuttons.net/l/by-sa/4.0/88x31.png\" /></a><br />આ કાર્યને <a>Creative Commons Attribution-ShareAlike 4.0 International License</a>."
  },
  {
    "path": "README-HE.md",
    "content": "<div dir=\"rtl\" style=\"direction:rtl;text-align:right;\">\n<p>\n<!-- Do not translate this -->\n<details>\n<summary>\n<strong> קרא מדריך זה בשפות אחרות </strong>\n</summary>\n    <ul>\n        <li><a href=\"./README.md\"> English </a></li>\n        <li><a href=\"./README-MR.md\"> मराठी </a></li>\n        <li><a href=\"./README-BN.md\"> বাংলা </a></li>\n        <li><a href=\"./README-CN.md\"> 中文 </a></li>\n        <li><a href=\"./README-RU.md\"> русский </a></li>\n        <li><a href=\"./README-RO.md\"> Românesc </a></li>\n        <li><a href=\"./README-IT.md\"> Italiano </a></li>\n        <li><a href=\"./README-ES.md\"> Español </a></li>\n        <li><a href=\"./README-pt-BR.md\"> Português (BR) </a></li>\n        <li><a href=\"./README-DE.md\"> Deutsch </a></li>\n        <li><a href=\"./README-GR.md\"> Ελληνικά </a></li>\n        <li><a href=\"./README-FR.md\"> Français </a></li>\n        <li><a href=\"./README-KO.md\"> 한국어 </a></li>\n        <li><a href=\"./README-JA.md\"> 日本語 </a></li>\n    </ul>\n</details>\n<!-- Do not translate this -->\n\n</p>\n</div>\n<div dir=\"rtl\" style=\"direction:rtl;text-align:right;\">\n<p>\n\n# ברוכים הבאים תורמי קוד פתוח מתחילים!\n\n[![Pull Requests Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat)](http://makeapullrequest.com)\n[![first-timers-only Friendly](https://img.shields.io/badge/first--timers--only-friendly-blue.svg)](https://www.firsttimersonly.com/)\n[![Check Resources](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml/badge.svg)](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml)\n\nלהלן רשימת מקורות עבור מתכנתים מתחילים המעוניינים לתרום לקוד פתוח\n\nאם תמצאו מקורות נוספים, אנא תרמו על ידי יצירת pull request\n\nאם יש לכם שאלות או הערות, אנא צרו issue חדש\n\n**תוכן עניינים**\n\n- [תרומה לקוד פתוח באופן כללי](#תרומה-לקוד-פתוח-באופן-כללי)\n- [חיפוש ישיר בגיטהאב](#חיפוש-ישיר-בגיטהאב)\n- [אקוסיסטם התורמים של מוזילה](#אקוסיסטם-התורמים-של-מוזילה)\n- [מאמרים שימושיים לתורמי קוד פתוח חדשים](#מאמרים-שימושיים-לתורמי-קוד-פתוח-חדשים)\n- [שימוש ב-Version Control](#שימוש-ב-Version-Control)\n- [ספרים בנושא קוד פתוח](#ספרים-בנושא-קוד-פתוח)\n- [יוזמות לתרומת קוד פתוח](#יוזמות-לתרומת-קוד-פתוח)\n- [רישיון](#רישיון)\n\n</p>\n</div>\n<div dir=\"rtl\" style=\"direction:rtl;text-align:right;\">\n<p>\n\n## תרומה לקוד פתוח באופן כללי\n- [המדריך המלא לתרומה לקוד פתוח](https://www.freecodecamp.org/news/the-definitive-guide-to-contributing-to-open-source-900d5f9f2282/) על ידי [DoomHammerNG@](https://twitter.com/DoomHammerNG)\n- [מבוא לקוד פתוח](https://www.digitalocean.com/community/tutorial_series/an-introduction-to-open-source) - מדריכים על ידי Digital Ocean לתרומה כאן בגיטהאב.\n- [Issuehub.io](http://issuehub.pro/) - כלי לחיפוש issues בגיטהאב לפי תווית ושפה.\n- [Code Triage](https://www.codetriage.com/) - כלי נוסף למציאת repositories ו-issues מסוננים לפי שפה.\n- [Awesome-for-beginners](https://github.com/MunGell/awesome-for-beginners) - גיטהאב repo מצויין האוגר פרוייקטים עם באגים מתאימים לתורמים חדשים. הבאגים מתוייגים עם תוויות מתאימות.\n- [מדריכי קוד פתוח](https://opensource.guide/) - אוסף של מקורות לאנשים, קהילות וחברות הרוצים ללמוד כיצד להפעיל ולתרום לפרוייקט קוד פתוח.\n- [45 גיטהאב issues - עשה ואל תעשה](https://hackernoon.com/45-github-issues-dos-and-donts-dfec9ab4b612) - עשה ואל תעשה בגיטהאב.\n- [מדריכי גיטהאב](https://docs.github.com/en) - מדריכים בסיסיים על איך להשתמש בגיטהאב בצורה אפקטיבית.\n- [תרומה לקוד פתוח](https://github.com/danthareja/contribute-to-open-source) - למדו את הגיטהאב workflow על ידי תרומת קוד לפרויקט סימולציה.\n- [מדריכי קוד פתוח לחברות על ידי קרן לינוקס](https://www.linuxfoundation.org/resources/open-source-guides) - המדריכים של קרן לינוקס לפרויקטים בקוד פתוח.\n- [מדריך קוד פתוח לכללי התנהגות של CSS Tricks](https://css-tricks.com/open-source-etiquette-guidebook/) - מדריך קוד פתוח לכללי התנהגות, מחברים Kent C. Dodds ו-Sarah Drasner.\n- [מקורות לסטודנטים מא׳ עד ת׳](https://github.com/dipakkr/A-to-Z-Resources-for-Students) - רשימת מקורות והזדמנויות ללמידת שפת תכנות חדשה לסטודנטים.\n- [Pull Request Roulette](http://www.pullrequestroulette.com/) - אתר עם רשימת pull requests הנמצאים ב-review השייכים לפרויקטי קוד פתוח בגיטהאב.\n- [״כיצד לתרום לפרויקט קוד פתוח בגיטהאב״ ע״י Egghead.io](https://egghead.io/courses/how-to-contribute-to-an-open-source-project-on-github) - מדריך וידאו המסביר כיצד להתחיל לתרום לפרויקטי קוד פתוח בגיטהאב.\n- [תרומה לקוד פתוח: מדריך לייב מההתחלה עד הסוף](https://medium.com/@kevinjin/contributing-to-open-source-walkthrough-part-0-b3dc43e6b720) - מדריך זה הינו תרומת קוד פתוח המכסה הכול. החל מבחירת פרויקט מתאים, עבודה על issue, למירג׳וג ה-PR לפרויקט.\n- [״כיצד לתרום לפרויקט קוד פתוח״ ע״י Sarah Drasner](https://css-tricks.com/how-to-contribute-to-an-open-source-project/) - מתמקד בפרטים הקטנים של תרומה ל-pull request (PR) בפרויקט של מישהו אחר בגיטהאב.\n- [״כיצד להתחיל עם קוד פתוח״ ע״י Sayan Chowdhury](https://www.hackerearth.com:443/getstarted-opensource/) - מכסה את המקורות המתאימים לתרומה לקוד פתוח למתחילים בהתבסס על שפת התכנות האהובה עליהם.\n- [״חיפוש issue ראשון טוב כדי להתחיל לתרום לקוד פתוח״](https://github.blog/2020-01-22-browse-good-first-issues-to-start-contributing-to-open-source/) - גיטהאב יכול לעזור לך למצוא issue ראשון המתאים למתחילים בקוד פתוח.\n- [״כיצד לתרום לפרויקט קוד פתוח״ ע״י Maryna Z](https://rubygarage.org/blog/how-contribute-to-open-source-projects) - זהו מאמר מקיף המכוון לצד העסקי (אך עדיין שימושי לתורמים יחידים). המאמר מדבר על למה, איך ומה הוא קוד פתוח וכיצד לתרום לו.\n- [\"start-here-guidelines\" ע״י Andrei](https://github.com/zero-to-mastery/start-here-guidelines) - בואו נתחיל בעולם הקוד הפתוח, מתחילים ממגרש המשחקים בקוד פתוח. מותאם במיוחד למטרות לימודיות ומעשיות.\n\n</p>\n</div>\n<div dir=\"rtl\" style=\"direction:rtl;text-align:right;\">\n<p>\n\n## חיפוש ישיר בגיטהאב\nהעזרו בלינקים כדי למצוא issues מתאימים לתרומה בגיטהאב.\n- [is:issue is:open label:beginner](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Abeginner)\n- [is:issue is:open label:easy](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Aeasy)\n- [is:issue is:open label:first-timers-only](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Afirst-timers-only)\n- [is:issue is:open label:good-first-bug](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Agood-first-bug)\n- [is:issue is:open label:\"good first issue\"](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3A\"good+first+issue\")\n- [is:issue is:open label:starter](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Astarter)\n- [is:issue is:open label:up-for-grabs](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Aup-for-grabs)\n\n</p>\n</div>\n<div dir=\"rtl\" style=\"direction:rtl;text-align:right;\">\n<p>\n\n## אקוסיסטם התורמים של מוזילה\n- [באגים ראשונים טובים](https://bugzilla.mozilla.org/buglist.cgi?quicksearch=sw:%22[good%20first%20bug]%22&limit=0) - באגים שמפתחים מצאו שיכולים להתאים בכניסה ראשונית לפרויקט.\n- [באגים עם מנטור](https://bugzilla.mozilla.org/buglist.cgi?quicksearch=mentor%3A%40) - באגים שיש להם מנטורים המשוייכים עליהם, ניתן לפנות אליהם דרך IRC במקרה שנתקעתם במהלך תיקון הבאג.\n- [Bugs Ahoy](https://www.joshmatthews.net/bugsahoy/) - אתר המוקדש כולו למציאת באגים ב-Bugzilla.\n- [Firefox DevTools](http://firefox-dev.tools/) - אתר המוקדש לבאגים של כלי המתכנת (developer tools) של הדפדפן פיירפוקס\n- [Start Mozilla](https://twitter.com/StartMozilla) - חשבון טוויטר המצייץ על issues המתאימים לתורמים חדשים לאקוסיסטם של מוזילה.\n\n</p>\n</div>\n<div dir=\"rtl\" style=\"direction:rtl;text-align:right;\">\n<p>\n\n## מאמרים שימושיים לתורמי קוד פתוח חדשים\n- [כיצד לבחור (ולתרום) לפרויקט הקוד הפתוח הראשון שלך](https://github.com/collections/choosing-projects) ע״י [GitHub@](https://github.com/github)\n- [כיצד למצוא את הבאג הראשון שלך לתיקון בקוד פתוח](https://www.freecodecamp.org/news/finding-your-first-open-source-project-or-bug-to-work-on-1712f651e5ba/) ע״י [Shubheksha@](https://github.com/Shubheksha)\n- [למתחילים בלבד](https://kentcdodds.com/blog/first-timers-only) ע״י [kentcdodds@](https://github.com/kentcdodds)\n- [החזירו טוב לב חזרה לקוד פתוח](https://web.archive.org/web/20201009150545/https://www.hanselman.com/blog/bring-kindness-back-to-open-source) ע״י [shanselman@](https://github.com/shanselman)\n- [נכנסים לקוד פתוח בפעם הראשונה](https://www.nearform.com/blog/getting-into-open-source-for-the-first-time/) ע״י [mcdonnelldean@](https://github.com/mcdonnelldean)\n- [כיצד לתרום לקוד פתוח](https://opensource.guide/how-to-contribute/) ע״י [GitHub@](https://github.com/github/opensource.guide)\n- [כיצד למצוא באג בקוד שלכם](https://8thlight.com/insights/how-to-find-a-bug-in-your-code) ע״י [dougbradbury@](https://twitter.com/dougbradbury)\n- [Mastering Markdown](https://docs.github.com/features/mastering-markdown/) ע״י [GitHub@](https://github.com/github/docs)\n- [משימה ראשונה: עמוד התורמים](https://forcrowd.medium.com/first-mission-contributors-page-df24e6e70705#.2v2g0no29) ע״י [forCrowd@](https://github.com/forCrowd)\n- [כיצד לתרום בפעם הראשונה לקוד פתוח ב-5 דקות](https://www.freecodecamp.org/news/how-to-make-your-first-open-source-contribution-in-just-5-minutes-aaad1fc59c9a/) ע״י [roshanjossey@](https://github.com/Roshanjossey/)\n- [Hacktoberfest 2019: כיצד לקבל חולצה חינם אפילו אם אתם מתכנתים חדשים](https://www.freecodecamp.org/news/hacktoberfest-2018-how-you-can-get-your-free-shirt-even-if-youre-new-to-coding-96080dd0b01b/) ע״י [quincylarson@](https://www.freecodecamp.org/news/author/quincylarson/)\n- [מדריך מר לקוד פתוח](https://medium.com/codezillas/a-bitter-guide-to-open-source-a8e3b6a3c1c4) ע״י [ken_wheeler@](https://medium.com/@ken_wheeler)\n- [מדריך צעד אחר צעד של מתכנת ג׳וניור - כיצד לתרום לקוד פתוח בפעם הראשונה](https://hackernoon.com/contributing-to-open-source-the-sharks-are-photoshopped-47e22db1ab86) ע״י [LetaKeane@](https://hackernoon.com/u/letakeane)\n- [למדו גיט וגיטהאב צעד אחר צעד (על ווינדוס)](https://medium.com/illumination/path-to-learning-git-and-github-be93518e06dc) ע״י [ows-ali@](https://medium.com/@ows_ali)\n- [למה קוד פתוח ואיך?](https://careerkarma.com/blog/open-source-projects-for-beginners/) ע״י [james-gallagher@](https://careerkarma.com/blog/author/jamesgallagher/)\n- [כיצד להתחיל עם קוד פתוח](https://www.hackerearth.com/getstarted-opensource/) ע״י Sayan Chowdhury\n- [לאיזה קוד פתוח כדאי לתרום](https://kentcdodds.com/blog/what-open-source-project-should-i-contribute-to) ע״י Kent C. Dodds\n\n</p>\n</div>\n<div dir=\"rtl\" style=\"direction:rtl;text-align:right;\">\n<p>\n\n## שימוש ב-Version Control\n- [Think Like (a) Git](https://think-like-a-git.net/) - מדריך גיט ל״מתחילים מתקדמים״ מתקשים, המחפשים אסטרטגיה פשוטה להתנסות עם גיט.\n- [Try Git](https://docs.github.com/en/get-started/quickstart/set-up-git) - למדו גיט ב-15 דקות ישירות מהדפדפן בחינם.\n- [Everyday Git](https://git-scm.com/docs/giteveryday) - סט מינימלי שימושי של פקודות לשימוש גיט יומיומי\n- [!Oh shit, git](https://ohshitgit.com/) - כיצד לצאת מטעויות גיט נפוצות, כתוב באנגלית; ראו גם [!Dangit, git](https://dangitgit.com/) עבור עמוד ללא קללות.\n- [מדריכי גיט של Atlassian](https://www.atlassian.com/git/tutorials) - מגוון מדריכים על השימוש בגיט.\n- [שליף לגיטהאב גיט](https://education.github.com/git-cheat-sheet-education.pdf) (PDF)\n- [הויקיפדיה של freeCodeCamp על מקורות גיט](https://forum.freecodecamp.org/t/wiki-git-resources/13136)\n- [GitHub Flow](https://www.youtube.com/watch?v=juLIxo42A_s) - שיחת גיטהאב על כיצד ליצור pull request. מתחיל ב-(42:06)\n- [מקורות הלימוד של גיטהאב](https://docs.github.com/en/free-pro-team@latest/github/getting-started-with-github/git-and-github-learning-resources) - מקורות למידה עבור גיט וגיטהאב.\n- [Pro Git](https://git-scm.com/book/en/v2) - הספר Pro Git בשלמותו, נכתב על ידי Scott Chacon ו-Ben Straub ופורסם על ידי Apress.\n- [Git-it](https://github.com/jlord/git-it-electron) - מדריך גיט לאפליקצית הדסקטופ.\n- [Flight Rules לגיט](https://github.com/k88hudson/git-flight-rules) - מדריך על מה לעשות כשדברים משתבשים.\n- [מדריך גיט בספרדית למתחילים](https://platzi.github.io/git-slides/#/) - מדריך שלם של שקופיות על גיט וגיטהאב בספרדית. Una guía completa de diapositivas sobre git y GitHub explicadas en Español.\n- [Git Kraken](https://www.gitkraken.com/git-client) - אפליקצית דסקטופ לגיט, ויז׳ואלית, אינטרקטיבית ו-cross-platform.\n- [טיפים לגיט](https://github.com/git-tips/tips) - אוסף טיפים וטריקים נפוצים בגיט.\n- [שיטות עבודה מומלצות בגיט](https://sethrobertson.github.io/GitBestPractices/) - בצעו commit לעיתים קרובות, שפרו בהמשך, פרסמו פעם אחת: שיטות העבודה המומלצות בגיט.\n- [מדריך גיט אינטרקטיבי](https://learngitbranching.js.org/) - למדו גיט בדרך הויז׳יאלית והאינטרקטיבית ביותר.\n\n</p>\n</div>\n<div dir=\"rtl\" style=\"direction:rtl;text-align:right;\">\n<p>\n\n## ספרים בנושא קוד פתוח\n- [יצירת תוכנה בקוד פתוח](https://producingoss.com/) - זהו ספר על הצד האנושי של פיתוח קוד פתוח. הספר מתאר כיצד פרויקטים מוצלחים עובדים, ציפיות האנשים והמפתחים ותרבות תוכנה חינמית.\n- [סדרת ספרי קוד פתוח](https://opensource.com/resources/ebooks) - למדו עוד על קוד פתוח ועל תנועת הקוד הפתוח בעזרת רשימה מקיפה של ספרים אלקטרונים מ-https://opensource.com.\n- [Software Release Practice HOWTO](https://tldp.org/HOWTO/Software-Release-Practice-HOWTO/) - מדריך המתאר מהם הכללים לשחרור נכון עבור לינוקס ופרויקטי קוד פתוח אחרים. על ידי שמירה על כללים אלו, תקלו על משתמשים לבנות את הקוד שלכם ולהשתמש בו. כמו כן, מפתחים אחרים יוכלו להבין את הקוד שלכם, לעבוד איתו ולשפר אותו. \n- [קוד פתוח 2.0: אבולוציה מתמשכת](https://archive.org/details/opensources2.000diborich) (2005) - קוד פתוח 2.0 הינו אוסף מאמרים מעמיקים ומעוררי מחשבה של מנהיגי הטכנולוגיה של היום הממשיכים לצבוע את תמונת האבולוציה שפותחה בספר מ-1999, קוד פתוח: קולות מן המהפכה.  \n- [הארכיטקטורה של אפליקציות קוד פתוח](http://www.aosabook.org/en/git.html) - מגוון היבטים המתארים כיצד גיט עובד מתחת למנוע כדי לאפשר workflows מבוזרים וכיצד אלו שונים ממערכות version controls אחרים (VCSs).\n- [קודים פתוחים: קולות ממהפכת הקוד הפתוח](https://www.oreilly.com/openbook/opensources/book/) - מאמרים מחלוצי הקוד הפתוח כמו Linus Torvalds (לינוקס), Larry Wall (פרל) ו-Richard Stallman (GNU).\n\n</p>\n</div>\n<div dir=\"rtl\" style=\"direction:rtl;text-align:right;\">\n<p>\n\n## יוזמות לתרומת קוד פתוח\n- [Up For Grabs](https://up-for-grabs.net/) - מכיל פרויקטים עם issues המתאימים למתחילים.\n- [First Timers Only](https://www.firsttimersonly.com/) - רשימה של באגים המתוייגים כ-״first-timers-only\".\n- [First Contributions](https://firstcontributions.github.io/) - בצעו את התרומה הראשונה שלכם לקוד פתוח תוך 5 דקות. כלי ומדריך שיעזור למתחילים לתרום. תוכלו למצוא את קוד המקור של האתר [כאן](https://github.com/firstcontributions/first-contributions), נצלו את ההזדמנות לתרום ל-repository עצמו.\n- [Hacktoberfest](https://hacktoberfest.digitalocean.com/) - תוכנית לעידוד תרומה לקוד פתוח. זכו בפרסים כגון חולצות ומדבקות על ידי פתיחת לפחות 4 pull requests במהלך חודש אוקטובר.\n- [24 Pull Requests](https://24pullrequests.com) - הפרויקט 24 Pull Requests הינו פרויקט לעידוד שיתוף פעולה בקוד פתוח במהלך חודש אוקטובר.\n\n</p>\n</div>\n<div dir=\"rtl\" style=\"direction:rtl;text-align:right;\">\n<p>\n\n## רישיון\n<a rel=\"license\" href=\"https://creativecommons.org/licenses/by-sa/4.0/\"><img alt=\"Creative Commons License\" style=\"border-width:0\" src=\"https://licensebuttons.net/l/by-sa/4.0/88x31.png\" /></a><br />פרוייקט זה נכתב תחת רישיון \n\n<a rel=\"license\" href=\"https://creativecommons.org/licenses/by-sa/4.0/\">Creative Commons Attribution-ShareAlike 4.0 International License</a>.\n\n</p>\n</div>\n"
  },
  {
    "path": "README-HI.md",
    "content": "<!-- Do not translate this -->\n<details>\n<summary>\n<strong>इस गाइड को दूसरी languages में पढ़ें</strong>\n</summary>\n    <ul>\n        <li><a href=\"./README.md\"> English </a></li>\n        <li><a href=\"./README-CN.md\"> 中文 </a></li>\n        <li><a href=\"./README-RU.md\"> русский </a></li>\n        <li><a href=\"./README-RO.md\"> Românesc </a></li>\n        <li><a href=\"./README-IT.md\"> Italiano </a></li>\n        <li><a href=\"./README-ES.md\"> Español </a></li>\n        <li><a href=\"./README-pt-BR.md\"> Português (BR) </a></li>\n        <li><a href=\"./README-DE.md\"> Deutsch </a></li>\n        <li><a href=\"./README-GR.md\"> Ελληνικά </a></li>\n        <li><a href=\"./README-FR.md\"> Français </a></li>\n        <li><a href=\"./README-KO.md\"> 한국어 </a></li>\n        <li><a href=\"./README-JA.md\"> 日本語 </a></li>\n        <li><a href=\"./README-MR.md\">मराठी</a></li>\n        <li><a href=\"./README-HI.md\"> हिंदी </a></li>\n    </ul>\n</details>\n<!-- Do not translate this -->\n\n# नए Open Source Contributors का स्वागत है!\n\n[![अनुरोध का स्वागत करें](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat)](http://makeapullrequest.com)\n[![पहली बार केवल अनुकूल](https://img.shields.io/badge/first--timers--only-friendly-blue.svg)](https://www.firsttimersonly.com/)\n[![Check Resources](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml/badge.svg)](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml)\n\n\nये एक list है resources की नए लोगों के लिए है जो Open Source में contribute करना चाहते हैं।\n\nअगर आपको और resources मिलते हैं, तो please एक pull request के through contribute करें।\n\nअगर आपके पास questions या comments हैं, तो please एक issue create करें।\n\n**Table of Contents**\n\n- [General open source में contribution करना](#contributing-to-open-source-in-general)\n- [सीधा GitHub पर खोजें](#direct-github-searches)\n- [Mozilla का contributor ecosystem](#mozillas-contributor-ecosystem)\n- [नए Open Source योगदानकर्ताओं के लिए उपयोगी लेख](#useful-articles-for-new-open-source-contributors)\n- [संस्करण नियंत्रण का उपयोग करना](#using-version-control)\n- [Open Source पुस्तकें](#open-source-books)\n- [Open Source योगदान पहल](#open-source-contribution-initiatives)\n- [लाइसेंस](#license)\n\n## सामान्य रूप से Open Source में योगदान करना\nArticles और resources जो Open Source की दुनिया और culture के बारे में discuss करते हैं।\n- [Open Source में योगदान करने के लिए निश्चित गाइड](https://www.freecodecamp.org/news/the-definitive-guide-to-contributing-to-open-source-900d5f9f2282/) by [@DoomHammerNG](https://twitter.com/DoomHammerNG)\n- [Open Source का एक परिचय](https://www.digitalocean.com/community/tutorial_series/an-introduction-to-open-source) - GitHub पर आपकी सफलता में आपका मार्गदर्शन करने के लिए DigitalOcean द्वारा ट्यूटोरियल।\n- [Issuehub.io](http://issuehub.io/) - लेबल और भाषा द्वारा GitHub मुद्दों को खोजने के लिए एक उपकरण।\n- [Code Triage](https://www.codetriage.com/) - एक tool है जो popular repositories और issues को language के हिसाब से filter करता है।\n- [Awesome-for-beginners](https://github.com/MunGell/awesome-for-beginners) - एक GitHub repo जो projects को collect करता है जिनमें नए contributors के लिए अच्छे bugs होते हैं, और labels apply करता है उन्हें describe करने के लिए।\n- [Open Source Guides](https://opensource.guide/) - उन व्यक्तियों, समुदायों और कंपनियों के लिए resources का संग्रह है, जो Open Source project(s) को चलाना और उनमे योगदान करना चाहते हैं।\n- [45 Github Issues Dos and Don’ts](https://hackernoon.com/45-github-issues-dos-and-donts-dfec9ab4b612) -GitHub के Do's और Don'ts।\n- [GitHub Guides](https://docs.github.com/en) - GitHub का प्रभावी रूप से उपयोग करने के बारे में बुनियादी गाइड।\n- [Contribute to Open Source](https://github.com/danthareja/contribute-to-open-source) - Simulation project में code contribute करके GitHub workflow सीखें।\n- [Linux Foundation's Open Source Guides for the Enterprise](https://www.linuxfoundation.org/resources/open-source-guides) - Open Source projects के लिए Linux Foundation के guides।\n- [CSS Tricks An Open Source Etiquette Guidebook](https://css-tricks.com/open-source-etiquette-guidebook/) - केंट सी। डोड्स एंड सारा ड्रैसनर द्वारा लिखित एक Open Source शिष्टाचार गाइडबुक।\n- [A to Z Resources for Students](https://github.com/dipakkr/A-to-Z-Resources-for-Students) - कॉलेज के छात्रों के लिए नई coding language सीखने के लिए संसाधनों और अवसरों की क्यूरेटेड सूची।\n- [Pull Request Roulette](http://www.pullrequestroulette.com/) - इस साइट में GitHub पर होस्ट किए गए Open Source प्रोजेक्ट से संबंधित समीक्षा के लिए प्रस्तुत pull requestsों की एक सूची है।\n- [\"How to Contribute to an Open Source Project on GitHub\" by Egghead.io](https://egghead.io/courses/how-to-contribute-to-an-open-source-project-on-github) - GitHub पर Open Source परियोजनाओं में योगदान कैसे शुरू करें, इसका सम्पूर्ण video guide।\n- [Contributing to Open Source: A Live Walkthrough from Beginning to End](https://medium.com/@kevinjin/contributing-to-open-source-walkthrough-part-0-b3dc43e6b720) - ये पूर्वाभ्यास Open Source contribution का पूरा process cover करता है, suitable project चुनने से लेकर, issue पर काम करना, और PR merge होने तक।\n- [\"How to Contribute to Open Source Project by\" Sarah Drasner](https://css-tricks.com/how-to-contribute-to-an-open-source-project/) - ये GitHub पर किसी और के project में pull request (PR) contribute करने की बारीकियों पर focus करता है।\n- [\"How to get started with Open Source by\" Sayan Chowdhury](https://www.hackerearth.com:443/getstarted-opensource/) - ये article शुरुआती लोगों के लिए open source में contribute करने के लिए उनकी पसंदीदा भाषा रुचि के आधार पर resources cover करता है।\n- [\"Browse good first issues to start contributing to open source\"](https://github.blog/2020-01-22-browse-good-first-issues-to-start-contributing-to-open-source/) - GitHub अब आपको अच्छे first issues ढूंढने में मदद करता है जिससे आप open source में contribute करना शुरू कर सकें।\n- [\"How to Contribute to Open Source Project\" by Maryna Z](https://rubygarage.org/blog/how-contribute-to-open-source-projects) - ये detailed article businesses के लिए निर्देशित है (लेकिन individual contributors के लिए भी उपयोगी है) जहाँ ये बात करता है कि क्यों, कैसे, और कौनसे open-source projects में contribute करें।\n- [\"start-here-guidelines\" by Andrei](https://github.com/zero-to-mastery/start-here-guidelines) - GitHub की दुनिया में शुरुआत करें, विशेष रूप से education और practical experience के लिए designed है।\n\n## सीधा GitHub पर खोजें\nखोज परिणाम जो सीधे GitHub पर योगदान करने के लिए उपयुक्त मुद्दों की ओर इशारा करते हैं।\n- [is:issue is:open label:beginner](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Abeginner)\n- [is:issue is:open label:easy](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Aeasy)\n- [is:issue is:open label:first-timers-only](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Afirst-timers-only)\n- [is:issue is:open label:good-first-bug](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Agood-first-bug)\n- [is:issue is:open label:\"good first issue\"](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3A\"good+first+issue\")\n- [is:issue is:open label:starter](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Astarter)\n- [is:issue is:open label:up-for-grabs](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Aup-for-grabs)\n\n## Mozilla का contributor ecosystem\nMozilla healthy internet का वादा करता है और इसके साथ, अपने open-source projects में contribute करने के अवसर प्रदान करता है।\n\n- [Good First Bugs](https://bugzilla.mozilla.org/buglist.cgi?quicksearch=sw:%22[good%20first%20bug]%22&limit=0) - बग जो डेवलपर्स ने परियोजना के लिए एक अच्छा परिचय के रूप में पहचाना है।\n- [Mentored Bugs](https://bugzilla.mozilla.org/buglist.cgi?quicksearch=mentor%3A%40) - bugs जिनमें एक mentor assigned है जो आपको IRC पर help करेगा अगर आप fix पर काम करते हुए फंस जाये तो।\n- [Bugs Ahoy](https://www.joshmatthews.net/bugsahoy/) - एक site जो Bugzilla पर bugs ढूंढने के लिए समर्पित है।\n- [Firefox DevTools](http://firefox-dev.tools/) - एक site जो Firefox browser में developer tools के लिए filed bugs को dedicated है।\n- [Start Mozilla](https://twitter.com/StartMozilla) - एक Twitter account जो Mozilla ecosystem में नए contributors के लिए fit issues के बारे में tweets करता है।\n\n## नए Open Source Contributors के लिए उपयुक्त articles\n- अपने पहले open source project को कैसे choose करें (और contribute करें)(https://github.com/collections/choosing-projects) by [@GitHub](https://github.com/github)\n- [कैसे ठीक करने के लिए अपना पहला Open Source बग ढूंढें](https://www.freecodecamp.org/news/finding-your-first-open-source-project-or-bug-to-work-on-1712f651e5ba/) by [@Shubheksha](https://github.com/Shubheksha)\n- [केवल पहले टाइमर](https://kentcdodds.com/blog/first-timers-only) by [@kentcdodds](https://github.com/kentcdodds)\n- [Open Source पर दया लाएं](https://web.archive.org/web/20201009150545/https://www.hanselman.com/blog/bring-kindness-back-to-open-source) by [@shanselman](https://github.com/shanselman)\n- [पहली बार Open Source में हो रही है](https://www.nearform.com/blog/getting-into-open-source-for-the-first-time/) by [@mcdonnelldean](https://github.com/mcdonnelldean)\n- [Open Source के लिए योगदान कैसे करें](https://opensource.guide/how-to-contribute/) by [@GitHub](https://github.com/github/opensource.guide)\n- [कैसे अपने कोड में एक बग को खोजने के लिए](https://8thlight.com/insights/how-to-find-a-bug-in-your-code) by [@dougbradbury](https://twitter.com/dougbradbury)\n- [मास्टरींग मार्कडाउन](https://docs.github.com/features/mastering-markdown/) by [@GitHub](https://github.com/github/docs)\n- [पहला मिशन: योगदानकर्ता पृष्ठ](https://forcrowd.medium.com/first-mission-contributors-page-df24e6e70705#.2v2g0no29) by [@forCrowd](https://github.com/forCrowd)\n- [सिर्फ 5 मिनट में अपना पहला Open Source योगदान कैसे करें](https://www.freecodecamp.org/news/how-to-make-your-first-open-source-contribution-in-just-5-minutes-aaad1fc59c9a/) by [@roshanjossey](https://github.com/Roshanjossey/)\n- [Hacktoberfest 2019: आप अपनी मुफ्त शर्ट कैसे प्राप्त कर सकते हैं - भले ही आप कोडिंग में नए हों](https://www.freecodecamp.org/news/hacktoberfest-2018-how-you-can-get-your-free-shirt-even-if-youre-new-to-coding-96080dd0b01b/) by [@quincylarson](https://www.freecodecamp.org/news/author/quincylarson/)\n- [एक बिटर गाइड टू Open Source](https://medium.com/codezillas/a-bitter-guide-to-open-source-a8e3b6a3c1c4) by [@ken_wheeler](https://medium.com/@ken_wheeler)\n- [पहली बार Open Source में योगदान करने के लिए एक जूनियर डेवलपर का चरण-दर-चरण गाइड](https://hackernoon.com/contributing-to-open-source-the-sharks-are-photoshopped-47e22db1ab86) by [@LetaKeane](https://hackernoon.com/u/letakeane)\n- [Git और GitHub स्टेप बाय स्टेप (विंडोज पर) सीखें](https://medium.com/illumination/path-to-learning-git-and-github-be93518e06dc) by [@ows-ali](https://medium.com/@ows_ali)\n- [Open Source और क्यों?](https://careerkarma.com/blog/open-source-projects-for-beginners/) by [@james-gallagher](https://careerkarma.com/blog/author/jamesgallagher/)\n- [Open Source से कैसे शुरुआत करें- बाय सयान चौधरी](https://www.hackerearth.com/getstarted-opensource/)\n- [मुझे किस ओपन-सोर्स में योगदान देना चाहिए?](https://kentcdodds.com/blog/what-open-source-project-should-i-contribute-to) by Kent C. Dodds\n\n## संस्करण नियंत्रण का उपयोग करना\n- [Think Like (a) Git](https://think-like-a-git.net/) - \"उन्नत शुरुआती\" के लिए Git परिचय, लेकिन अभी भी संघर्ष कर रहे हैं, ताकि आप सुरक्षित रूप से git के साथ प्रयोग करने के लिए एक सरल रणनीति दे सकें।\n- [Try Git](https://docs.github.com/en/get-started/quickstart/set-up-git) - अपने ब्राउज़र में मुफ्त में 15 मिनट में Git सीखें।\n- [Everyday Git](https://git-scm.com/docs/giteveryday) - हर दिन Git के लिए कमांड का एक उपयोगी न्यूनतम सेट.\n- [Oh shit, git!](https://ohshitgit.com/) - सामान्य अंग्रेजी में वर्णित सामान्य `गिट` गलतियों से कैसे बाहर निकलें; पृष्ठ के लिए [शपथ, गिट!](https://dangitgit.com/) को बिना शपथ ग्रहण के भी देखें।\n- [Atlassian Git Tutorials](https://www.atlassian.com/git/tutorials) - `git` का उपयोग करने पर विभिन्न ट्यूटोरियल।\n- [GitHub Git Cheat Sheet](https://education.github.com/git-cheat-sheet-education.pdf) (PDF)\n- [freeCodeCamp's Wiki on Git Resources](https://forum.freecodecamp.org/t/wiki-git-resources/13136)\n- [GitHub Flow](https://www.youtube.com/watch?v=juLIxo42A_s) (42:06) - GitHub pull request करने के तरीके पर बात करता है।\n- [GitHub Learning Resources](https://docs.github.com/en/free-pro-team@latest/github/getting-started-with-github/git-and-github-learning-resources) - Git और GitHub सीखने के संसाधन।\n- [Pro Git](https://git-scm.com/book/en/v2) - संपूर्ण प्रो गिट पुस्तक, स्कॉट चाकोन और बेन स्ट्राब द्वारा लिखित और एप्रेस द्वारा प्रकाशित।\n- [Git-it](https://github.com/jlord/git-it-electron) - स्टेप बाय स्टेप गिट ट्यूटोरियल डेस्कटॉप ऐप।\n- [Flight Rules for Git](https://github.com/k88hudson/git-flight-rules) -जब चीजें गलत हो जाती हैं तो क्या करना है इसके बारे में एक गाइड।\n- [Git Guide for Beginners in Spanish](https://platzi.github.io/git-slides/#/) - Git और GitHub के बारे में स्लाइड्स का एक पूरा गाइड स्पेनिश में समझाया गया है। ऊना गुइया कम्पला दे दीपोसाइटिवस सोब्रे गिट वाई गिथहब एक्सपिकाडास एन Español।\n- [Git Kraken](https://www.gitkraken.com/git-client) - संस्करण नियंत्रण के लिए विज़ुअल, क्रॉस-प्लेटफ़ॉर्म, और इंटरैक्टिव `गिट` डेस्कटॉप एप्लिकेशन।\n- [Git Tips](https://github.com/git-tips/tips) - सबसे अधिक इस्तेमाल किए जाने वाले गिट टिप्स और ट्रिक्स का संग्रह।\n- [Git Best Practices](https://sethrobertson.github.io/GitBestPractices/) - कमिट अदर, परफेक्ट बाद, पब्लिश वन्स: बेस्ट प्रैक्टिस।\n- [Git Interactive Tutorial](https://learngitbranching.js.org/) - सबसे दृश्य और इंटरैक्टिव तरीके से Git सीखें।\n\n## Open Source पुस्तकें\n- [Producing Open Source Software](https://producingoss.com/) - Open Source software का निर्माण Open Source डेवलपमेंट के मानवीय पक्ष के बारे में एक किताब है। यह वर्णन करता है कि सफल परियोजनाएं कैसे संचालित होती हैं, उपयोगकर्ताओं और डेवलपर्स की अपेक्षाएं, और मुफ्त software की संस्कृति।\n- [Open Source Book Series](https://opensource.com/resources/ebooks) - Open Source और बढ़ते Open Source आंदोलन के बारे में अधिक जानकारी के लिए https://opensource.com से मुफ्त ई-बुक्स की एक व्यापक सूची के साथ जानें।\n- [Software Release Practice HOWTO](https://en.tldp.org/HOWTO/Software-Release-Practice-HOWTO/) - यह HOWTO लिनक्स और अन्य ओपन-सोर्स परियोजनाओं के लिए अच्छी रिलीज प्रथाओं का वर्णन करता है। इन प्रथाओं का पालन करके, आप उपयोगकर्ताओं को अपना कोड बनाने और इसका उपयोग करने के लिए जितना संभव हो उतना आसान बना देंगे, और अन्य डेवलपर्स आपके कोड को समझने के लिए और इसे बेहतर बनाने के लिए आपके साथ contribute करेंगे।\n- [Open Sources 2.0 : The Continuing Evolution](https://archive.org/details/opensources2.000diborich) (2005) - Open Source २.० आज के प्रौद्योगिकी नेताओं के व्यावहारिक और विचारोत्तेजक निबंधों का एक संग्रह है, जो 1999 की पुस्तक, Open Source: द रिव्यूज़ इन द रिवोल्यूशनरी में विकसित हुई विकासवादी तस्वीर को जारी रखता है।\n- [The Architecture of Open Source Applications](http://www.aosabook.org/en/git.html) - वितरित वर्कफ़्लोज़ को सक्षम करने के लिए कवर के तहत Git के विभिन्न पहलू काम करते हैं, और यह कैसे अन्य संस्करण नियंत्रण प्रणालियों (VCS) से भिन्न होता है।\n- [Open Sources: Voices from the Open Source Revolution](https://www.oreilly.com/openbook/opensources/book/) - लिनस टॉर्वाल्ड्स (लिनक्स), लैरी वॉल (पर्ल), और रिचर्ड स्टेलमैन (जीएनयू) जैसे ओपन-सोर्स अग्रदूतों से निबंध।\n\n## Open Source contribution initiatives\nInitiatives और programs जो contributors को Open Source projects में participate करने के लिए encourage करते हैं।\n\n- [Up For Grabs](https://up-for-grabs.net/) - शुरुआत के अनुकूल मुद्दों के साथ परियोजनाएं शामिल हैं\n- [First Timers Only](https://www.firsttimersonly.com/) - bugs की एक सूची जिसे \"first-timers-only\" लेबल किया जाता है।\n- [First Contributions](https://firstcontributions.github.io/) - 5 मिनट में अपना पहला Open Source योगदान दें। एक उपकरण और ट्यूटोरियल शुरुआती योगदान करने में मदद करने के लिए। [यहाँ](https://github.com/firstcontributions/first-contributions) साइट के लिए GitHub स्रोत कोड है और स्वयं भंडार में योगदान करने का अवसर है।\n- [Hacktoberfest](https://hacktoberfest.digitalocean.com/) - Open Source योगदान को प्रोत्साहित करने के लिए एक कार्यक्रम। अक्टूबर के महीने में कम से कम 4 pull requests करके टी-शर्ट और स्टिकर जैसे उपहार जिते।\n- [24 Pull Requests](https://24pullrequests.com) -24 pull requests दिसंबर महीने के दौरान Open Source contribute को बढ़ावा देने के लिए एक परियोजना है।\n\n## लाइसेंस\n<a rel=\"license\" href=\"https://creativecommons.org/licenses/by-sa/4.0/\"><img alt=\"Creative Commons License\" style=\"border-width:0\" src=\"https://licensebuttons.net/l/by-sa/4.0/88x31.png\" /></a><br />इस काम के तहत लाइसेंस प्राप्त है। <a rel=\"license\" href=\"https://creativecommons.org/licenses/by-sa/4.0/\">क्रिएटिव कॉमन्स एट्रिब्यूशन-शेयरअलाइल 4.0 इंटरनेशनल लाइसेंस</a>।\n"
  },
  {
    "path": "README-HY.md",
    "content": "<table>\r\n    <tr>\r\n        <!-- Do not translate this table -->\r\n        <td><a href=\"./README.md\"> English </a></td>\r\n        <td><a href=\"./README-MR.md\"> मराठी </a></td>\r\n        <td><a href=\"./README-BN.md\"> বাংলা </a></td>\r\n        <td><a href=\"./README-CN.md\"> 中文 </a></td>\r\n        <td><a href=\"./README-RU.md\"> русский </a></td>\r\n        <td><a href=\"./README-RO.md\"> Românesc </a></td>\r\n        <td><a href=\"./README-IT.md\"> Italiano </a></td>\r\n        <td><a href=\"./README-ES.md\"> Español </a></td>\r\n        <td><a href=\"./README-pt-BR.md\"> Português (BR) </a></td>\r\n        <td><a href=\"./README-DE.md\"> Deutsch </a></td>\r\n        <td><a href=\"./README-GR.md\"> Ελληνικά </a></td>\r\n        <td><a href=\"./README-FR.md\"> Français </a></td>\r\n        <td><a href=\"./README-TR.md\"> Turkish </a></td>\r\n        <td><a href=\"./README-KO.md\"> 한국어 </a></td>\r\n        <td><a href=\"./README-HY.md\"> Armenian </a></td>\r\n    </tr>\r\n</table>\r\n\r\n# Բարի գալուստ open source կոդի նոր աջակիցներին!\r\n\r\n[![Приглашение](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat)](http://makeapullrequest.com)\r\n[![только для первоклассных пользователей](https://img.shields.io/badge/first--timers--only-friendly-blue.svg)](http://www.firsttimersonly.com/)\r\n[![Check Resources](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml/badge.svg)](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml)\r\n\r\nԱյստեղ ներկայացված են սկսնակների համար նախատեսված ռեսուրսների ցանկը, ովքեր ցանկություն ունեն մասնակցելու open source պրոեյկտներին:\r\n\r\nԵթե դուք կգտնեք հավելյալ ռեսուրսներ, խնդրում եմ աավելացրեք այն և բացեք pull request.\r\n\r\nԵթե դուք ունեք հարցեր կամ մեկնաբանություններ, ստեղծեք issue.\r\n\r\n**Բովանդակություն**\r\n\r\n- [Կատարեք ձեր ներդրումը սկզբնական բաց կոդում (անգլերեն հոդվածներ)](#Внесение-вклада-в-открытый-исходный-код-%28статьи-на-английском%29)\r\n- [Որոնում GitHub-ում](#Прямой-поиск-на-GitHub)\r\n- [Mozilla Էկոհամակարգը](#экосистема-вкладчика-Mozilla)\r\n- [Օգտակար հոդվածներ բաց կոդի սկսնակ հեղինակների համար](#Полезные-статьи-для-новых-авторов-с-открытым-исходным-кодом)\r\n- [Տարբերակների վերահսկման օգտագործումը](#Использование-контроля-версий)\r\n- [Գրքեր սկզբնական բաց կոդով](#Книги-с-открытым-исходным-кодом)\r\n- [Լիցենզիա](#Лицензия)\r\n\r\n## Կատարեք ձեր ներդրումը սկզբնական բաց կոդում (անգլերեն հոդվածներ)\r\n\r\n> Հոդվածներ և նյութեր, որոնք քննարկում են Open Source աշխարհը և կուլտուրան:\r\n\r\n- [Ամբողջական ուղեցույց, ինչպես աջակցել սկզբնական բաց կոդին](https://medium.freecodecamp.org/the-definitive-guide-to-contributing-to-open-source-900d5f9f2282) հեղինակ՝ [@DoomHammerNG](https://twitter.com/DoomHammerNG)\r\n- [Սկզբնական բաց կոդի ներածություն](https://www.digitalocean.com/community/tutorial_series/an-introduction-to-open-source) - Վարպետության դասեր DigitalOcean-ի կողմից, որոնք կօգնեն ձեզ հաջողությամբ մասնակցություն ունենալ open source պրոյեկտներին GitHub-ում:\r\n- [SourceSort](https://www.sourcesort.com) - Սկզբնական բաց կոդով պրոյեկտների հավաքածու, որոնք ունեն աջակցության կարիք, որոնման հնարավորությամբ և այնպիսի չափորոշիչներով, ինչպիսիք են առաոջին PR-ների ընդունման մակարդակը և արձագանքման ժամանակը, որոնք կարող են ունենալ որոշիչ նշանակություն նոր մասնակիցների համար:\r\n- [Issuehub.io](http://issuehub.pro/) - GitHub issue-ների որոնման գործիք, ըստ պիտակի և ծրագրավորման լեզվի:\r\n- [Code Triage](https://www.codetriage.com/) - Եվս մեկ գործիք հայտնի ռեպոզիտորիանների և issue-ների որոնման համար ըստ ծրագրավորման լեզվի:\r\n- [Awesome-for-beginners](https://github.com/MunGell/awesome-for-beginners) - GitHub ռեպոզիտորիա, որը հավաքում է պրոյեկտներ սկսնակների համար մատչելի սխալներով(bag) և օգտագործում է պիտակներ դրանք նկարագրելու համար:\r\n- [Подборка ресурсов open source](https://opensource.guide/) - Ռեսուրսների հավաքաածու այն մարդկանց, խմբերի և կազմակերպությունների համար, ովքեր ցանկանում են սովորել աջակցություն ունենալ open source պրոյեկտներում:\r\n- [Ինչպես է պետք և ինչպես պետք չէ - 45 օրինակ](https://hackernoon.com/45-github-issues-dos-and-donts-dfec9ab4b612) - Ինչպես է պետք և ինչպես պետք չէ վարվել GitHub-ում.\r\n- [GitHub հինմական ուղեցույց](https://docs.github.com/en) - Հիմնական ուղեցույց, ինչպես արդյունավետ օգտագործել GitHub-ը:\r\n- [Մասնակցեք open source պրոյեկտներում](https://github.com/danthareja/contribute-to-open-source) - Ընկալեք GitHub-ում աշխատանքային ընթացքը, ավելացրեք կոդ սիմուլյատոր պրոյեկտում:\r\n- [Linux Foundation's Open Source Guides for the Enterprise](https://www.linuxfoundation.org/resources/open-source-guides) - Linux Foundation-ի կողմից տրված ուղեցույց սկզբնական բաց կոդի մասին՝ կազմակերպությունների համար:\r\n- [CSS Tricks An Open Source Etiquette Guidebook](https://css-tricks.com/open-source-etiquette-guidebook/) - Ուղեցույց սկզբնական բաց կոդի հետ աշխատանքային էթիկետի մասին Kent C. Dodds և Sarah Drasner-ի կողմից:\r\n- [Ռեսուրսներ ուսանողների համար՝ սկզբից մինչև վերջ](https://github.com/dipakkr/A-to-Z-Resources-for-Students) - Նոր ծրագրավորման լեզու սովորելու համար նախատեսված Ռեսուրսների և հնարավորությունների ցանկ ուսանողների համար:\r\n- [Օpen source պրոյեկտում ձեր առաջին ներդրումը. պրակտիկ մոտեցում](https://blog.devcenter.co/contributing-to-your-first-open-source-project-a-practical-approach-1928c4cbdae) - Քայլ առ քայլ ուղեցույց, ինչպես կատարել ձեր առաոջին քայլը Open Source պրոյեկտում [Abati Adewale](https://www.acekyd.com) - կողմից.\r\n- [Pull Request Roulette](http://www.pullrequestroulette.com/) - Pull Request-ների ցանկը որոնք վերաբերվում են GitHub-ում գտնվող Open Source պրոյեկտներին:\r\n- [Ինչպես աջակցել բաց սկզբնական կոդով պրոյեկտին GitHub-ում՝ Egghead.io-ի կողմից](https://egghead.io/courses/how-to-contribute-to-an-open-source-project-on-github) - Մանրամասն վիդեո ուղեցույց, ինչպես կատարել առաջին քայլը GitHub Open Source պրոյեկտում:\r\n- [Ծրագրային ապահովումը Open Source-ում. Ճանապարհը՝ սկզբից մինչև վերջ](https://medium.com/@kevinjin/contributing-to-open-source-walkthrough-part-0-b3dc43e6b720) - Սա մանրամասն ուղեցույց է, որտեղ ներկայացվում է ամեն ինչ open source-ի մասին. սկսած համապատասխան պրոյեկտի ընտրությունից, աշխատանք issue-ների վրա, մինչև pull request (PR):\r\n- [<< Ինչպես աջակցել Open Source պրոյեկտին >> Sarah Drasner-ի կողմից](https://css-tricks.com/how-to-contribute-to-an-open-source-project/) - Նրանք կենտրոնանում են GitHub-ում ինչ-որ մեկի պրոյեկտի վրա pull request բացելու մանրամասնությունների վրա:\r\n- [<< Ինչպես սկսել Open Source պրոյեկտ >> Sayan Chowdhury-ի կողմից](https://www.hackerearth.com:443/getstarted-opensource/) - Այս հոդվածում ներկայացված են ռեսուրսներ սկսնակների համար, ինչպես կատարել ներդրում open source-ում իրենց հետաքրքրություններին և սիրելի ծրագրավորման լեզուներին համապատասխան:\r\n- [<<Աչքի անցկացրեք առաջին issue-ները, open source-ում աշխատելու համար>>](https://github.blog/2020-01-22-browse-good-first-issues-to-start-contributing-to-open-source/) - GitHub-ը կօգնի քեզ գտնել առաջին մատչելի issue-ները, որպեսզի սկսես քո աջակցությունը:\r\n- [<< Ինչպես աջակցել Open Source պրոյեկտին >> Maryna Z-ի կողմից](https://rubygarage.org/blog/how-contribute-to-open-source-projects) - Այս հոդվածը օգտակար է հատկապես բիզնեսի համար (բայց օգտակար է նաև այլ ծրագրավորողների համար), այստեղ խոսվում է այն մասին, ինչպես երբ և ինչ են վաստակում open source պրոյեկտներում:\r\n- [\"start-here-guidelines\" by Andrei](https://github.com/zero-to-mastery/start-here-guidelines) - Եկեք սկսենք Git-ից, open source խաղային հարթակից: Հատուկ ստեղծված սովորելու և պրակտիկ փորձ ձեռք բերելու համար:\r\n- [<< Բաց կոդի հետ աշխատանքի սկիզբը>> NumFocus-ի կողմից](https://github.com/numfocus/getting-started-with-open-source) - Այս ռեպոզիտորիան օգնում է ծրագրավորողներին հաղթահարել open source մուտք գործելու բոլոր խոչընդոտները:\r\n- [<<Բաց կոդ բոլորի համար>> Chryz-hub-ի կողմից](https://github.com/chryz-hub/opensource-4-everyone) - Այս ռեպոզիտորիայում կարող եք գտնել ամեն ինչ կապված բաց կոդի հետ: Այս պրոյեկտը ստեղծվել է որպեսզի օգնի փորձ ձեռք բերել GitHub-ի հիմնական և տարածված հրամաններով աշխատանքում, սկսել աշխատանք կոդի հետ և այլն:\r\n- [\"Open Advice\"](http://open-advice.org/) - Գիտելիքների հավաքածու տարբեր աղբյուրներից: Այն պատասխանում է այն հարցին, թե ինչ կցանկանային իմանալ պրոյեկտի 42 հողինակավոր մասնակիցները սկսելուց առաջ, որպեսզի դուք կարողանաք առաջնահերթություն ստանալ անկախ նրանից, թե ինչպես և որտեղ եք ներդրում անում:\r\n- [\"GitHub Skills\"](https://skills.github.com) - Բարձրացրեք ձեր հմտությունները GitHub Skills-ի միջոցով: Մեր ընկերասեր բոտը ձեզ կտանի մի շարք զվարճալի, գործնական նախագծերի միջով, կօգնի կարճ ժամանակում սովորել ձեզ անհրաժեշտ հմտությունները և այդ ընթացքում կկիսվի օգտակար կարծիքներով:\r\n- [<<10 պարզ կանոն որոնք կօգնեն սկսնակներին դառնալ contributor բաց պրոյեկտներում>>](https://doi.org/10.1371/journal.pcbi.1007296) - Այս հոդվածը ներառում է կանոններ, որոնք հիմնված են բազմաթիվ խմբերի ուսումնասիրությունների և տարբեր լիդերների և դիտորդների փորձի վրա:\r\n- [<<Քայլ առ քայլ ուղեցույց GitHub-ում աջակցության համար>>](https://www.dataschool.io/how-to-contribute-on-github/) - Քայլ առ քայլ ուղեցույց open source պրոյեկտների աջակցության համար, տարբեր հղումներով և վիզուալ պատկերներով:\r\n- [Open Source with Pradumna](https://github.com/Pradumnasaraf/open-source-with-pradumna) - Այս ռեպոզիտորիան պարունակում է ռեսուրսներ և նյութեր, որպեսզի ինքնուրույն սկսեք աշխատանքը Open Source, Git, և GitHub-ի հետ:\r\n- [\"FOSS Community Acronyms\"](https://github.com/d-edge/foss-acronyms) - Այս ռեպոզիտորիան պարունակում է հապավումների ցանկ իրենց նշանակության և օգտագործման հետ մեկտեղ, որոնք օգտագործվում են FOSS (Free and Open Source) հասարակությունում:\r\n- [\"Open Source Fiesta - Open Source Fiesta\"](https://zubi.gitbook.io/open-source-fiesta/) - Քայլ առ քայլ ուղեցույց ինչպես աջակցել GitHub ռեպոզիտորիաներին, այն պարունակում է նաև git հրամանների նշումներ:\r\n- [<<6 լավագույն փորձ, ինչպես կառավարել Pull Request-ների ստեղծումը և հետադարձ կապը>>](https://doordash.engineering/2022/08/23/6-best-practices-to-manage-pull-request-creation-and-feedback/) Jenna Kiyasu-ի կողմից, software engineer DoorDash Engineering ընկերությունում.\r\n- [\"Contribute to the Open-Source Community\"](https://arijitgoswami.hashnode.dev/contribute-to-the-open-source-community) - Օpen-source ծրագրի առավելությունները, ինչպես հասկանալ open-source պրոյեկտի ներքին աշխատանքը և կատարել առաջին ներդրումը:\r\n- [\"Complete Guide to Open Source - How to Contribute\"](https://www.youtube.com/watch?v=yzeVMecydCE) (41:52) - Սովորել ինչու և ինչպես ներդրում կատարել open source ծրագրում Eddie Jaoude-ի հետ:\r\n\r\n## Որոնումներ GitHub-ում\r\n\r\n> Որոնման հղումներ GitHub-ում, որոնք հարմար են աջակցության համար:\r\n\r\n- [is:issue is:open label:beginner](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Abeginner&type=issues)\r\n- [is:issue is:open label:easy](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Aeasy&type=issues)\r\n- [is:issue is:open label:first-timers-only](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Afirst-timers-only&type=issues)\r\n- [is:issue is:open label:good-first-bug](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Agood-first-bug&type=issues)\r\n- [is:issue is:open label:\"good first issue\"](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22&type=issues)\r\n- [is:issue is:open label:starter](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Astarter&type=issues)\r\n- [is:issue is:open label:up-for-grabs](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Aup-for-grabs&type=issues)\r\n- [is:issue is:open label:easy-fix](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Aeasy-fix&type=issues)\r\n- [is:issue is:open label:\"beginner friendly\"](https://github.com/search?q=beginner+friendly&state=open&type=Issues)\r\n\r\n## Մոզիլլայի աջակիցների Էկոհամակարգը\r\n\r\n> Mozilla֊ն տալիս է հնարավորություն աջակցելու իր open source պրոյեկտներին\r\n\r\n- [Good First Bugs](https://bugzilla.mozilla.org/buglist.cgi?quicksearch=good-first-bug) - Կոդի սխալներ, որոնք դեվելոփերների կողմից համարվել են լավ սկիզբ պրոյեկտին ծանոթանալու համար։\r\n- [MDN Web Docs](https://developer.mozilla.org/en-US/docs/MDN/Contribute) - Օգնեք MDN Web Docs թիմին վեբ հարթակի դոկումենտացիայի ստեղծման, պլատֆորմի բագերի վերացման և կոնտենտի հետ կապված սխալների վերացման հարցում։\r\n- [Mentored Bugs](https://bugzilla.mozilla.org/buglist.cgi?quicksearch=mentor%3A%40) - Բագեր, որոնք ունեն մենթոր ով գտնվում է IRC օնլայն չատում և պատրաստ է ձեզ օգնել եթե դուք դժվարանում եք առաջ շարժվել։\r\n- [Bugs Ahoy](https://www.joshmatthews.net/bugsahoy/) - Կայք, որը նախատեսված է Bugzilla֊ով բագեր գտնելու համար։\r\n- [Firefox DevTools](https://firefox-dev.tools/) - Կայք, որը նախատեսված է Firefox բրաուզերի՝ բագեր գտնելու դեվելոփերների համար նախատեսված գործիքներին։\r\n- [What Can I Do For Mozilla](https://whatcanidoformozilla.org/) - Պարզեք, թե ինչի վրա կարող եք աշխատել՝ պատասխանելով ձեր հմտությունների և հետաքրքրությունների վերաբերյալ մի շարք հարցերի:\r\n- [Start Mozilla](https://twitter.com/StartMozilla) - Twitter-ի հաշիվ, որը թվիթ է գրում Mozilla-ի էկոհամակարգում նոր ներդրողների համար ընկալելի խնդիրների մասին:\r\n\r\n## Օգտակար հոդվածներ Open Source֊ի նոր աջակիցների համար\r\n\r\n> Օգտակար հոդվածներ և բլոգներ՝ ինչպես սկսել Open Source֊ի աջակցությունը\r\n\r\n- [Գտնել ուղիներ գիտհաբում open source֊ի աջակցության համար](https://docs.github.com/en/get-started/exploring-projects-on-github/finding-ways-to-contribute-to-open-source-on-github) by [@GitHub](https://github.com/github)\r\n- [ Ինչպես ընտրել(և աջակցել) ձեր առաջին Open Source պրոյեկտը](https://github.com/collections/choosing-projects) by [@GitHub](https://github.com/collections)\r\n- [Ինչպես գնտել ձեր առաջին Open Source բագը](https://www.freecodecamp.org/news/finding-your-first-open-source-project-or-bug-to-work-on-1712f651e5ba/) by [@Shubheksha](https://github.com/Shubheksha)\r\n- [ՄԻայն սկսնակների համար](https://kentcdodds.com/blog/first-timers-only) by [@kentcdodds](https://github.com/kentcdodds)\r\n- [Վերդարձրեք բարությունը Open Source֊ին](https://web.archive.org/web/20201009150545/https://www.hanselman.com/blog/bring-kindness-back-to-open-source) by [@shanselman](https://github.com/shanselman)\r\n- [Երբ առաջին անգամ մտնում ես Open Source](https://www.nearform.com/blog/getting-into-open-source-for-the-first-time/) by [@mcdonnelldean](https://github.com/mcdonnelldean)\r\n- [Ինչպես աջակցել Open Source֊ին](https://opensource.guide/how-to-contribute/) by [@GitHub](https://github.com/github/opensource.guide)\r\n- [Ինչպես գտնել բագը ձեր կոդում](https://8thlight.com/insights/how-to-find-a-bug-in-your-code) by [@dougbradbury](https://twitter.com/dougbradbury)\r\n- [Յուրացրեք Markdown֊ը](https://docs.github.com/en/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax) by [@GitHub](https://github.com/github/docs)\r\n- [Առաջին առաջադրանքը։ Աջակիցների էջ](https://forcrowd.medium.com/first-mission-contributors-page-df24e6e70705) by [@forCrowd](https://github.com/forCrowd)\r\n- [Ինչպես կատարել ձեր առաջին Open Source աջակցությունը, ընդամենը 5 րոպեում](https://www.freecodecamp.org/news/how-to-make-your-first-open-source-contribution-in-just-5-minutes-aaad1fc59c9a/) by [@roshanjossey](https://github.com/Roshanjossey/)\r\n- [Ես ձեռք եմ բերել իմ անվճար Hacktoberfest շապիկը․ Ահա արագ ճանապարհ ինչպես կարող եք նույնը անել դուք ](https://www.freecodecamp.org/news/i-just-got-my-free-hacktoberfest-shirt-heres-a-quick-way-you-can-get-yours-fa78d6e24307/) by [@quincylarson](https://www.freecodecamp.org/news/author/quincylarson/)\r\n- [Open Source ուղեցույց](https://medium.com/codezillas/a-bitter-guide-to-open-source-a8e3b6a3c1c4) by [@ken_wheeler](https://medium.com/@ken_wheeler)\r\n- [Քայլ առ քայլ ուղեցույց սկսնակ ծրագրավորողների համար, ինչպես աջակցել Open Source֊ին](https://hackernoon.com/contributing-to-open-source-the-sharks-are-photoshopped-47e22db1ab86) by [@LetaKeane](https://hackernoon.com/u/letakeane)\r\n- [Սովորեք գիտը և գիտհաբը քայլ առ քայլ](https://medium.com/illumination/path-to-learning-git-and-github-be93518e06dc) by [@ows-ali](https://ows-ali.medium.com/)\r\n- [Ինչու՞ Open Source և ինչպես՞](https://careerkarma.com/blog/open-source-projects-for-beginners/) by [@james-gallagher](https://careerkarma.com/blog/author/jamesgallagher/)\r\n- [Ինչպես սկսել աջակցել Open Source֊ին - Sayan Chowdhury֊ի կողմից](https://www.hackerearth.com/getstarted-opensource/)\r\n- [Ինչ Open Source պրոյեկտի ես պետք է աջակցեմ](https://kentcdodds.com/blog/what-open-source-project-should-i-contribute-to) by [@kentcdodds](https://twitter.com/kentcdodds)\r\n- [Open-source հետաքրքիր ուղեցույց](https://developeraspire.hashnode.dev/an-immersive-introductory-guide-to-open-source) by [Franklin Okolie](https://twitter.com/DeveloperAspire)\r\n- [Սկսել open source֊ի աջակցությունը](https://stackoverflow.blog/2020/08/03/getting-started-with-contributing-to-open-source/) by [Zara Cooper](https://stackoverflow.blog/author/zara-cooper/)\r\n- [Սկսնակների ուղեցույց open source֊ի աջակցության համար](https://workat.tech/general/article/open-source-contribution-guide-xmhf1k601vdj) by [Sudipto Ghosh](https://github.com/pydevsg)\r\n- [8 եղանակ, ինչպես աջակցել open source֊ին առանց կոդ գրելու](https://opensource.com/life/16/1/8-ways-contribute-open-source-without-writing-code) by [OpenSource](https://twitter.com/OpenSourceWay)\r\n- [Ինչ է open source ծրագիրը։OSS֊ի բացատրությունը պարզ անգլերենով](https://www.freecodecamp.org/news/what-is-open-source-software-explained-in-plain-english/) by [Jessica Wilkins](https://www.freecodecamp.org/news/author/jessica-wilkins/)\r\n- [Ինչպես սկսել Open Source պրոյեկտ գիտհաբում ֊ խորհուրդներ թրենդային ռեպոզիտորիա ստեղծելու մասին ](https://www.freecodecamp.org/news/how-to-start-an-open-source-project-on-github-tips-from-building-my-trending-repo/) by [@Rishit-dagli](https://github.com/Rishit-dagli)\r\n\r\n# Տարբերակների վերահսկման օգտագործումը\r\n\r\n> Տարբեր մակարդակների դասեր և ռեսուրսներ տարբերակների վերահսկման օգտագործման մասին, մասնավորպաես Git֊ի և GitHub֊ի։\r\n\r\n- [Video tutorial for Git and Github by Harvard University](https://www.youtube.com/watch?v=NcoBAfJ6l2Q) - Դաս Harvard ինստիտիտուտի կողմից, հատված նրանց CS50 Web Development կուրսից Git֊ը և GitHub֊ը հասկանալու և նրանցով աշխատելու համար։\r\n- [Think Like (a) Git](https://think-like-a-git.net/) - Գիտ ներածություն առաջադեմ սկսնակների համար, թե ինչպես ապահով կերպով փորձարկումներ անել գիտում։\r\n- [Quickstart - Set up Git](https://docs.github.com/en/get-started/quickstart/set-up-git) - Սովորեք ինչպես տեղադրել գիտ֊ը լոկալ համակարգում, անցնել աուտենտիֆիկացիա։\r\n- [Everyday Git](https://git-scm.com/docs/giteveryday) - Գիտ օգտակար հրամանների ցանկ, որոնք անհրաժեշտ են ամենօրյա օգտագործման համար։\r\n- [Oh shit, git!](https://ohshitgit.com/) - Ինչպես խուսափել տարածված `git` սխալներից ; Կարող եք տեսնել նաև հետևյալ էջերը [Dangit, git!](https://dangitgit.com/).\r\n- [Atlassian Git Tutorials](https://www.atlassian.com/git/tutorials) - տարբեր դասեր `git֊ի` օգտագործման մասին.\r\n- [GitHub Git Cheat Sheet](https://education.github.com/git-cheat-sheet-education.pdf) (PDF)\r\n- [freeCodeCamp's Wiki on Git Resources](https://forum.freecodecamp.org/t/wiki-git-resources/13136)\r\n- [GitHub Flow](https://www.youtube.com/watch?v=juLIxo42A_s) (42:06) - Ինչպես ստեղծել pull request Գիտհաբում։\r\n- [Quickstart - GitHub Learning Resources](https://docs.github.com/en/get-started/quickstart/git-and-github-learning-resources) - Git և GitHub ուսանելու ռեսուրսներ.\r\n- [Pro Git](https://git-scm.com/book/en/v2) - Գիրք ամբողջությամբ գիտի մասին։\r\n- [Git-it](https://github.com/jlord/git-it-electron) ֊ Քայլ առ քայլ ուղեցույց, թե ինճպես աշխատել desktop app֊ի հետ գիտով։\r\n- [Flight Rules for Git](https://github.com/k88hudson/git-flight-rules) - Ինչպես վարվել, երբ ինչ որ բան չի ընթանում նախատեսված կերպով։\r\n- [Git Guide for Beginners in Spanish](https://platzi.github.io/git-slides/#/) - Իսպաներեն ուղեցույց git֊ի և GitHub֊ի մասին։\r\n- [Git Kraken](https://www.gitkraken.com/git-client) - Վիզուալ, միջպլատֆորմային և ինտերակտիվ «git» հավելված՝ տարբերակների վերահսկման համար:\r\n- [Git Tips](https://github.com/git-tips/tips) - Collection of most commonly used git tips and tricks.\r\n- [Git Best Practices](https://sethrobertson.github.io/GitBestPractices/) - Commit Often, Perfect Later, Publish Once: Git Best Practices.\r\n- [Git Interactive Tutorial](https://learngitbranching.js.org/) - Learn Git in the most visual and interactive way.\r\n- [Git Cheat Sheets](https://devhints.io/?q=git) - Ավելի հաճախ օգտագործվող գիտ հնարքների և խորհուրդների հավաքածու։\r\n- [Complete Git and GitHub Tutorial](https://www.youtube.com/watch?v=apGV9Kg7ics) (1:12:39) - Ամբողջական Git և GitHub ուղեցույց [Kunal Kushwaha֊ի կողմից](https://www.youtube.com/channel/UCBGOUQHNNtNGcGzVq5rIXjw).\r\n- [A Tutorial Introduction to Git](https://git-scm.com/docs/gittutorial) - Սկսնակների ուղեցույց Git֊ի կողմից.\r\n- [First Aid Git](https://firstaidgit.io/#/) - Git-ի ամենահաճախ տրվող հարցերի հավաքածու: Այս հարցերի պատասխանները հավաքվել են անձնական փորձից, Stackoverflow-ից և Git-ի պաշտոնական փաստաթղթերից:\r\n- [Git by Susan Potter](https://www.aosabook.org/en/git.html) - Ցույց տվեք, թե ինչպես են Git-ի տարբեր տեխնիկական ասպեկտները աշխատում թաքնված՝ որպեսզի ապահովեն տարբեր աշխատանքային պրոցեսների ընթացքը, և ինչպես է այն տարբերվում այլ տարբերակների կառավարման համակարգերից (VCS):\r\n\r\n## Open Source գրքեր\r\n\r\n> Գրքեր Open Source֊ի մասին. Մշակույթ, պատմություն, լավագույն պրակտիկա և այլն:\r\n\r\n- [Producing Open Source Software](https://producingoss.com/) - Open Source ծրագրային ապահովման արտադրությունը գիրք է Open Source մշակման մարդկային կողմի մասին: Այն նկարագրում է, թե ինչպես են գործում հաջող նախագծերը, օգտատերերի և մշակողների ակնկալիքները և ազատ ծրագրային ապահովման մշակույթը:\r\n- [The Architecture of Open Source Applications](https://www.aosabook.org/en/index.html) - 24 open source հավելվածների հեղինակները բացատրում են թե ինչպես է կառուցված իրենց ծրագիրը և ինչու։ Սկսած web server֊ներից և compiler֊ներից մինչև առողջապահական գրառումների կառավարման համակարգեր, որոնք ներկայացված են այստեղ՝ օգնելու ձեզ դառնալ ավելի լավ ծրագրավորող:\r\n- [Open Source Book Series](https://opensource.com/resources/ebooks) - Իմացեք ավելին Open Source֊ի և Open Source աճող շարժման մասին՝ անվճար էլեկտրոնային գրքերի eBooks֊ի միջոցով https://opensource.com.\r\n- [Software Release Practice HOWTO](https://tldp.org/HOWTO/Software-Release-Practice-HOWTO/) - Այս HOWTO֊ն նկարագրում է Linux֊ի նախագծերի թողարկման լավ պրակտիկաների ինչպես նաև այլ Open-Source պրոյեկտների մասին։ Հետևելով այս գործելաոճին, դուք հնարավորինս կհեշտացնեք օգտատերերի համար ստեղծել ձեր կոդը և օգտագործել այն, իսկ մյուս ծրագրավորողներին կհասկանան ձեր կոդը և կհամագործակցեն ձեզ հետ՝ այն բարելավելու համար:\r\n- [Open Sources 2.0 : The Continuing Evolution](https://archive.org/details/opensources2.000diborich) (2005) - Open Sources 2.0-ն խորաթափանց և մտածելու տեղիք տվող էսսեների հավաքածու է այսօրվա տեխնոլոգիական առաջատարներից, որոնք շարունակում են նկարել էվոլյուցիոն պատկերը, որը ձևավորվել է 1999թ.՝ «Open Sources. ձայներ հեղափոխությունից» գրքում:\r\n- [Open Sources: Voices from the Open Source Revolution](https://www.oreilly.com/openbook/opensources/book/) - Էսսեներ open-source պիոներների կողմից, ինչպիսիք են Լինուս Տորվալդսը (Linux), Լարի Ուոլը (Perl) և Ռիչարդ Սթոլմանը (GNU):\r\n\r\n## Open Source ներդրման նախաձեռնություններ\r\n\r\n> Նախաձեռնությունների ցանկ, որոնք համախմբում են սկսնակ ընկերական խնդիրները նրանց վրա աշխատելու համար։\r\n\r\n- [Up For Grabs](https://up-for-grabs.net/) - Պարունակում է պրոյեկտներ սկսնակ ընկերական խնդիրներով։\r\n- [First Contributions](https://firstcontributions.github.io/) - Կատարեք ձեր առաջին open source ներդրումը 5 րոպեում: Գործիք և ձեռնարկ, որը կօգնի սկսնակներին սկսել ներդրումներ կատարել։ [Այստեղ](https://github.com/firstcontributions/first-contributions) GitHub-ի սկզբնաղբյուրն է կայքի համար և հնարավորություն՝ ներդրում ունենալ հենց ռեպոզիտորիայում:\r\n- [First Timers Only](https://www.firsttimersonly.com/) - Սխալների ցանկ, որոնք պիտակավորված են «միայն առաջին անգամ» ներդրողների համար:\r\n- [Hacktoberfest](https://hacktoberfest.digitalocean.com/) - Open Source ներդրումները խրախուսող ծրագիր: Ստացեք նվերներ, օրինակ՝ շապիկներ և պիտակներ՝ հոկտեմբերին կատարելով առնվազն 4 pull requests:\r\n- [24 Pull Requests](https://24pullrequests.com) - 24 Pull Requests-ը նախագիծ է, որը խթանում է բաց կոդով համագործակցությունը դեկտեմբեր ամսվա ընթացքում:\r\n- [Ovio](https://ovio.org) - Հարթակ՝ ներդրողների համար հարմար նախագծերի ընտրությամբ. Այն ունի [խնդիրների որոնման հզոր գործիք](https://ovio.org/issues) և թույլ է տալիս պահպանել նախագծերն ու խնդիրները հետագայի համար:\r\n- [Contribute-To-This-Project](https://github.com/Syknapse/Contribute-To-This-Project) - Սա ձեռնարկ է, որն օգնում է առաջին անգամ մասնակցողներին մասնակցել պարզ և հեշտ նախագծին և հարմարավետ զգալ GitHub-ից օգտվելիս:\r\n- [Open Source Welcome Committee](https://www.oswc.is/) - Open Source Welcome Committee (OSWC) օգնում է նորեկներին միանալ Open Source արտասովոր աշխարհին: Եկեք ներկայացրեք ձեր Open Source նախագծերը մեզ հետ:\r\n\r\n## Open Source ծրագրերին մասնակցությունը\r\n\r\n> Ծրագիր, պրակտիկա կամ կրթաթոշակ, որը կազմակերպվում է համայնքի կողմից, որպեսզի օգնի սկսնակ մասնակիցներին համապատասխանեցնել մենթորներին և ռեսուրսներին, որպեսզի կատարեն իրենց ներդրումը open source նախագծերում:\r\n\r\n- [All Linux Foundation (LF) Mentorships](https://mentorship.lfx.linuxfoundation.org/#projects_all)\r\n- [Սկսնակների համար հարմար open source ծրագրեր իրենց ժամանակացույցով](https://github.com/arpit456jain/Open-Source-Programs)\r\n- [Cloud Native Computing Foundation](https://events.linuxfoundation.org/kubecon-cloudnativecon-north-america/)\r\n- [FossAsia](https://fossasia.org)\r\n- [Free Software Foundation (FSF) Internship](https://www.fsf.org/volunteer/internships)\r\n- [Google Summer of Code](https://summerofcode.withgoogle.com/) - An annually run paid program by Google focused on bringing more student developers into open-source software development.Google-ի կողմից ամեն տարի իրականացվող վճարովի ծրագիր, որն ուղղված է ավելի շատ ուսանող դեվելոփերների ներգրացել open-source ծրագրային ապահովման գործում:\r\n- [Girlscript Summer of Code](https://gssoc.girlscript.tech/) - Երեք ամիս տևողությամբ Open-Source ծրագիր, որն իրականացվում է ամեն ամառ Girlscript հիմնադրամի կողմից: Այս ամիսների ընթացքում մասնակիցները հմուտ մենթորների ղեկավարության ներքո կատարում են իրենց ներդրումները բազմաթիվ նախագծերում: Այսպիսի աշխատանքից հետո ուսանողները սկսում են իրենց տներից նպաստել իրական աշխարհի նախագծերին:\r\n- [Hacktoberfest](https://hacktoberfest.digitalocean.com)\r\n- [Hyperledger Mentorship Program](https://wiki.hyperledger.org/display/INTERN) - Եթե դուք զբաղվում եք բլոկչեյնով, սա ձեզ համար է: Դուք կարող եք նպաստել Hyperledger-ին: Այս մենթորության ծրագիրը թույլ է տալիս գործնական ծանոթանալ Hyperledger-ի բաց կոդով մշակմանը: Ձեզ կհատկացվեն մենթորներ, ովքեր բավականին ակտիվ են Hyperledger ծրագրավորողների համայնքում:\r\n- [LF Networking Mentorship](https://wiki.lfnetworking.org/display/LN/LFN+Mentorship+Program)\r\n- [Microsoft Reinforcement Learning](https://www.microsoft.com/en-us/research/academic-program/rl-open-source-fest/)\r\n- [Major League Hacking (MLH) Fellowship](https://fellowship.mlh.io/) - Հեռավոր պրակտիկայի այլընտրանք տեխնոլոգների համար, որտեղ նրանք կառուցում են կամ նպաստում բաց open-source նախագծերին:\r\n- [Open Summer of Code](https://osoc.be/students)\r\n- [Open Mainframe](https://www.openmainframeproject.org/all-projects/mentorship-program) - Open Mainframe Project-ն ունի նաև իր open-source ծրագիրը, և ուսանողները կկարողանան ընդլայնել իրենց գիտելիքները հիմնական տեխնոլոգիայի վերաբերյալ:\r\n- [Outreachy](https://www.outreachy.org)\r\n- [Processing Foundation Internship](https://processingfoundation.org/fellowships/)\r\n- [Rails Girls Summer of Code](https://railsgirlssummerofcode.org/) - Համաշխարհային կրթաթոշակային ծրագիր կանանց և ոչ երկուական կոդավորողների համար, որտեղ նրանք աշխատում են գոյություն ունեցող open-source նախագծերի վրա և ընդլայնում իրենց հմտությունները:\r\n- [Redox OS Summer of Code](https://www.redox-os.org/rsoc/) - Redox OS Summer of Code-ը Redox OS նախագծին նվիրատվությունների օգտագործումն է: Ընտրվում են այն ուսանողները, ովքեր արդեն իսկ ցանկություն և կարողություն են դրսևորել՝ նպաստելու Redox OS-ին\r\n- [Social Summer of Code](https://ssoc.devfolio.co/) - Սոցիալական հիմնադրամն առաջարկում է այս երկամսյա ամառային ծրագիրը ուսանողներին սովորելու open-source մշակույթը և ներգրավվելու համայնքում: Մասնակիցները մասնակցում են իրական կյանքի նախագծերին` փորձառու մենթորների ղեկավարությամբ:\r\n- [Season of KDE](https://season.kde.org/) - KDE-ի սեզոնը, որը հյուրընկալվում է KDE համայնքի կողմից, իրազեկման ծրագիր է բոլոր անհատների համար ամբողջ աշխարհում: KDE-ն ազատ ծրագրային ապահովման միջազգային համայնք է, որը մշակում է open-source ծրագրակազմ, և դուք կարող եք նպաստել KDE-ին KDE-ի սեզոնի ծրագրի միջոցով:\r\n\r\n## Լիցենզիա\r\n\r\n<a rel=\"license\" href=\"https://creativecommons.org/licenses/by-sa/4.0/\"><img alt=\"Creative Commons License\" style=\"border-width:0\" src=\"https://licensebuttons.net/l/by-sa/4.0/88x31.png\" /></a><br />Այս աշխատանքը լիցենզավորված է <a rel=\"license\" href=\"https://creativecommons.org/licenses/by-sa/4.0/\">Creative Commons Attribution-ShareAlike 4.0 International License</a>.\r\n"
  },
  {
    "path": "README-ID.md",
    "content": "<table>\n    <tr>\n        <!-- Do not translate this table -->\n        <td><a href=\"./README.md\"> English </a></td>\n        <td><a href=\"./README-MR.md\"> मराठी </a></td>\n        <td><a href=\"./README-BN.md\"> বাংলা </a></td>\n        <td><a href=\"./README-CN.md\"> 中文 </a></td>\n        <td><a href=\"./README-RU.md\"> русский </a></td>\n        <td><a href=\"./README-RO.md\"> Românesc </a></td>\n        <td><a href=\"./README-IT.md\"> Italiano </a></td>\n        <td><a href=\"./README-ES.md\"> Español </a></td>\n        <td><a href=\"./README-pt-BR.md\"> Português (BR) </a></td>\n        <td><a href=\"./README-DE.md\"> Deutsch </a></td>\n        <td><a href=\"./README-GR.md\"> Ελληνικά </a></td>\n        <td><a href=\"./README-FR.md\"> Français </a></td>\n        <td><a href=\"./README-TR.md\"> Turkish </a></td>\n        <td><a href=\"./README-ID.md\">Bahasa Indonesia</a></td>\n    </tr>\n</table>\n\n# Selamat Datang Kontributor _Open Source_ Untuk Pemula!\n\n[![Pull Requests Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat)](http://makeapullrequest.com)\n[![first-timers-only Friendly](https://img.shields.io/badge/first--timers--only-friendly-blue.svg)](https://www.firsttimersonly.com/)\n[![Check Resources](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml/badge.svg)](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml)\n\nBerikut ini adalah list sumber daya untuk para pemula yang baru pertama kali berkontribusi untuk proyek Open Source.\n\nJika Anda menemukan sumber tambahan lain yang bermanfaat, silahkan berkontribusi dengan membuat pull request baru.\n\nJika Anda memiliki pertanyaan atau komentar, silahkan membuat issue baru.\n\n**Daftar Isi**\n\n- [Berkontribusi Ke Open Source Secara Umum](#berkontribusi-ke-open-source-secara-umum)\n- [Pencarian Proyek Open Source Di Github Secara Langsung](#pencarian-proyek-open-source-di-github-secara-langsung)\n- [Ekosistem Kontributor Mozilla](#ekosistem-kontributor-mozilla)\n- [Artikel Bermanfaat Untuk Para Kontributor Proyek Open Source](#artikel-bermanfaat-untuk-para-kontributor-proyek-open-source)\n- [Menggunakan Version Control](#menggunakan-version-control)\n- [Buku-buku Tentang Open Source](#buku-buku-tentang-open-source)\n- [Kontribusi Inisiatif Open Source](#kontribusi-inisiatif-open-source)\n- [Lisensi](#lisensi)\n\n## Berkontribusi Ke Open Source Secara Umum\n\n- [The Definitive Guide to Contributing to Open Source](https://www.freecodecamp.org/news/the-definitive-guide-to-contributing-to-open-source-900d5f9f2282/) ditulis oleh [@DoomHammerNG](https://twitter.com/DoomHammerNG).\n- [An Intro to Open Source](https://www.digitalocean.com/community/tutorial_series/an-introduction-to-open-source) - Pedoman dari DigitalOcean sebagai panduan untuk menggapai keberhasilan dalam berkontribusi di GitHub.\n- [Issuehub.io](http://issuehub.pro/) - Situs web untuk melakukan pencarian GitHub issue berdasarkan label dan bahasa.\n- [Code Triage](https://www.codetriage.com/) - Situs web yang baik untuk mencari issue dan repositori populer lewat penyaring bahasa pemrograman.\n- [Awesome-for-beginners](https://github.com/MunGell/awesome-for-beginners) - Sebuah repositori GitHub yang berisi proyek dengan bug ringan untuk para kontributor baru, dan menggunakan label sebagai penjelasannya.\n- [Open Source Guides](https://opensource.guide/) - Koleksi sumber daya untuk individu, komunitas, dan perusahaan yang berniat untuk mempelajari bagaimana menjalankan dan berkontribusi pada proyek Open Source.\n- [45 Github Issues Dos and Don’ts](https://hackernoon.com/45-github-issues-dos-and-donts-dfec9ab4b612) - Hal yang diperbolehkan dan tidak diperbolehkan di GitHub.\n- [GitHub Guides](https://docs.github.com/en) - Pengantar dasar dalam pengunaan GitHub secara efektif.\n- [Contribute to Open Source](https://github.com/danthareja/contribute-to-open-source) - Pelajari alur kerja GitHub dengan berkontribusi ke proyek simulasi.\n- [Linux Foundation's Open Source Guides for the Enterprise](https://www.linuxfoundation.org/resources/open-source-guides) - Pengantar yang dibuat oleh Linux Foundation mengenai proyek Open Source.\n- [CSS Tricks An Open Source Etiquette Guidebook](https://css-tricks.com/open-source-etiquette-guidebook/) - Sebuah buku pengantar etiket dalam berkontribusi ke Open Source, ditulis oleh Kent C. Dodds dan Sarah Drasner.\n- [A to Z Resources for Students](https://github.com/dipakkr/A-to-Z-Resources-for-Students) - Daftar sumber daya dan peluang untuk para mahasiswa untuk mempelajari bahasa pemrograman baru.\n- [Pull Request Roulette](http://www.pullrequestroulette.com/) - Situs web ini memiliki daftar proyek Open Source pada GitHub, berisi pull request yang membutuhkan review.\n- [\"How to Contribute to an Open Source Project on GitHub\" by Egghead.io](https://egghead.io/courses/how-to-contribute-to-an-open-source-project-on-github) - Panduan video bertahap tentang cara mulai berkontribusi pada proyek Open Source di GitHub.\n- [Contributing to Open Source: A Live Walkthrough from Beginning to End](https://medium.com/@kevinjin/contributing-to-open-source-walkthrough-part-0-b3dc43e6b720) - Artikel ini berisi pembahasan mengenai aktifitas yang dapat dilakukan di proyek Open Source, dimulai dari memilih proyek mana yang cocok untuk anda, memperbaiki issue, atau membuat PR hingga berhasil digabungkan (merge).\n- [\"How to Contribute to Open Source Project by\" Sarah Drasner](https://css-tricks.com/how-to-contribute-to-an-open-source-project/) - Pembahasan ini terfokus pada seluk-beluk berkontribusi dengan pull request (PR) ke suatu proyek di Github.\n- [\"How to get started with Open Source by\" Sayan Chowdhury](https://www.hackerearth.com:443/getstarted-opensource/) - Artikel ini membahas sumber daya untuk berkontribusi ke Open Source bagi para pemula berdasarkan minat bahasa favorit mereka.\n- [\"Browse good first issues to start contributing to open source\"](https://github.blog/2020-01-22-browse-good-first-issues-to-start-contributing-to-open-source/) - GitHub sekarang dapat membantu Anda menemukan issue pertama yang baik untuk mulai berkontribusi ke Open Source.\n- [\"How to Contribute to Open Source Project\" by Maryna Z](https://rubygarage.org/blog/how-contribute-to-open-source-projects) - Artikel ini membahas tentang mengapa, bagaimana, dan apa saja proyek Open Source yang bisa anda berikan kontribusi. Artikel ini secara luas ditujukan untuk organisasi bisnis (yang juga berguna untuk para individual).\n- [\"start-here-guidelines\" by Andrei](https://github.com/zero-to-mastery/start-here-guidelines) -\n  Mari mulai menggunakan Git dalam dunia Open Source, mulai dari Opensource Playground. Dirancang khusus untuk tujuan edukasi and pengalaman praktis.\n - [\"Getting Started with Open Source\" by NumFocus](https://github.com/numfocus/getting-started-with-open-source) - Sebuah repo GitHub yang membantu kontributor untuk mengatasi kendala masuk ke dalam proyek Open Source.\n- [\"Opensoure-4-everyone\" by Chryz-hub ](https://github.com/chryz-hub/opensource-4-everyone) - Sebuah repositori mengenai seluruh hal yang berkaitan dengan proyek Open Source. Repositori ini membahas transparansi keanggotaan Github, belajar perintah-perintah Git dari level pemula dan mahir, memulai proyek Open Source, dan lain sebagainya.\n\n\n## Pencarian Proyek Open Source Di Github Secara Langsung\n\nLink pencarian yang mengarah langsung ke _issue_ yang sesuai untuk berkontribusi di GitHub.\n\n- [is:issue is:open label:beginner](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Abeginner)\n- [is:issue is:open label:easy](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Aeasy)\n- [is:issue is:open label:first-timers-only](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Afirst-timers-only)\n- [is:issue is:open label:good-first-bug](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Agood-first-bug)\n- [is:issue is:open label:\"good first issue\"](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3A\"good+first+issue\")\n- [is:issue is:open label:starter](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Astarter)\n- [is:issue is:open label:up-for-grabs](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Aup-for-grabs)\n\n## Ekosistem Kontributor Mozilla\n\n- [Good First Bugs](https://bugzilla.mozilla.org/buglist.cgi?quicksearch=sw:%22[good%20first%20bug]%22&limit=0) - Kumpulan bug yang telah diidentifikasi oleh para pengembang perangkat lunak dan baik digunakan sebagai pengenalan pada proyek.\n- [MDN Web Docs](https://developer.mozilla.org/en-US/docs/MDN/Contribute) - Membantu tim dokumentasi laman MDN untuk mendokumentasikan halaman web dengan memperbaiki isu pada konten dan bug.\n- [Mentored Bugs](https://bugzilla.mozilla.org/buglist.cgi?quicksearch=mentor%3A%40) - Berisi kumpulan bug yang dipedomankan oleh mentor dan mereka nantinya membantu anda untuk memperbaiki bug jika anda merasa kesulitan.\n- [Bugs Ahoy](https://www.joshmatthews.net/bugsahoy/) - Sebuah situs web yang didedikasikan untuk menemukan bug pada bugzilla.\n- [Firefox DevTools](http://firefox-dev.tools/) - Sebuah situs web yang didedikasikan sebagai alat inspeksi kode untuk pengembang perangkan lunak peramban firefox.\n- [Start Mozilla](https://twitter.com/StartMozilla) - Akun twitter yang membuat tweet tentang issue yang muncul dan cocok untuk kontibutor baru di ekosistem Mozilla.\n\n## Artikel Bermanfaat Untuk Para Kontributor Proyek Open Source\n\n- [How to choose (and contribute to) your first Open Source project](https://github.com/collections/choosing-projects) ditulis oleh [@GitHub](https://github.com/github)\n- [How to find your first Open Source bug to fix](https://www.freecodecamp.org/news/finding-your-first-open-source-project-or-bug-to-work-on-1712f651e5ba/) ditulis oleh [@Shubheksha](https://github.com/Shubheksha)\n- [First Timers Only](https://kentcdodds.com/blog/first-timers-only) ditulis oleh [@kentcdodds](https://github.com/kentcdodds)\n- [Bring Kindness Back to Open Source](https://web.archive.org/web/20201009150545/https://www.hanselman.com/blog/bring-kindness-back-to-open-source) ditulis oleh [@shanselman](https://github.com/shanselman)\n- [Getting into Open Source for the First Time](https://www.nearform.com/blog/getting-into-open-source-for-the-first-time/) ditulis oleh [@mcdonnelldean](https://github.com/mcdonnelldean)\n- [How to Contribute to Open Source](https://opensource.guide/how-to-contribute/) ditulis oleh [@GitHub](https://github.com/github/opensource.guide)\n- [How to Find a Bug in Your Code](https://8thlight.com/insights/how-to-find-a-bug-in-your-code) ditulis oleh [@dougbradbury](https://twitter.com/dougbradbury)\n- [Mastering Markdown](https://docs.github.com/features/mastering-markdown/) ditulis oleh [@GitHub](https://github.com/github/docs)\n- [First mission: Contributors page](https://forcrowd.medium.com/first-mission-contributors-page-df24e6e70705#.2v2g0no29) ditulis oleh [@forCrowd](https://github.com/forCrowd)\n- [How to make your first Open Source contribution in just 5 minutes](https://www.freecodecamp.org/news/how-to-make-your-first-open-source-contribution-in-just-5-minutes-aaad1fc59c9a/) ditulis oleh [@roshanjossey](https://github.com/Roshanjossey/)\n- [Hacktoberfest 2019: How you can get your free shirt — even if you’re new to coding](https://www.freecodecamp.org/news/hacktoberfest-2018-how-you-can-get-your-free-shirt-even-if-youre-new-to-coding-96080dd0b01b/) ditulis oleh [@quincylarson](https://www.freecodecamp.org/news/author/quincylarson/)\n- [A Bitter Guide To Open Source](https://medium.com/codezillas/a-bitter-guide-to-open-source-a8e3b6a3c1c4) ditulis oleh [@ken_wheeler](https://medium.com/@ken_wheeler)\n- [A junior developer’s step-by-step guide to contributing to Open Source for the first time](https://hackernoon.com/contributing-to-open-source-the-sharks-are-photoshopped-47e22db1ab86) ditulis oleh [@LetaKeane](https://hackernoon.com/u/letakeane)\n- [Learn Git and GitHub Step By Step (on Windows)](https://medium.com/illumination/path-to-learning-git-and-github-be93518e06dc) ditulis oleh [@ows-ali](https://medium.com/@ows_ali)\n- [Why Open Source and How?](https://careerkarma.com/blog/open-source-projects-for-beginners/) ditulis oleh [@james-gallagher](https://careerkarma.com/blog/author/jamesgallagher/)\n- [How to get started with Open Source - Ditulis oleh Sayan Chowdhury](https://www.hackerearth.com/getstarted-opensource/)\n- [What open-source should I contribute to](https://kentcdodds.com/blog/what-open-source-project-should-i-contribute-to) ditulis oleh Kent C. Dodds\n- [An immersive introductory guide to Open-source](https://developeraspire.hashnode.dev/an-immersive-introductory-guide-to-open-source) ditulis oleh [Franklin Okolie](https://twitter.com/DeveloperAspire)\n- [Getting started with contributing to open source](https://stackoverflow.blog/2020/08/03/getting-started-with-contributing-to-open-source/) ditulis oleh [Zara Cooper](https://stackoverflow.blog/author/zara-cooper/)\n- [Beginner's guide to open-source contribution](https://workat.tech/general/article/open-source-contribution-guide-xmhf1k601vdj) ditulis oleh [Sudipto Ghosh](https://github.com/pydevsg)\n- [8 non-code ways to contribute to open source](https://opensource.com/life/16/1/8-ways-contribute-open-source-without-writing-code) ditulus oleh [OpenSource](https://twitter.com/OpenSourceWay)\n\n## Menggunakan Version Control\n\n- [Think Like (a) Git](https://think-like-a-git.net/) - Pengenalan Git untuk pemula tingkat lanjut yang masih kesulitan agar dapat mempelajari strategi yang simpel untuk bereksperimen dengan Git secara aman.\n- [Try Git](https://docs.github.com/en/get-started/quickstart/set-up-git) - Belajar Git dalam 15 menit dari Browser secara gratis.\n- [Everyday Git](https://git-scm.com/docs/giteveryday) - Kumpulan perintah yang berguna untuk pemakaian Git dalam sehari-hari.\n- [Oh shit, git!](https://ohshitgit.com/) - bagaimana cara menghindari kesalahan umum saat mengunakan `git`, dideskripsikan dalam Bahasa Inggris; baca juga [Dangit, git!](https://dangitgit.com/) untuk situs web tanpa kata kasar.\n- [Atlassian Git Tutorials](https://www.atlassian.com/git/tutorials) - Berbagai petunjuk dalam menggunakan `git`.\n- [GitHub Git Cheat Sheet](https://education.github.com/git-cheat-sheet-education.pdf) (PDF)\n- [freeCodeCamp's Wiki on Git Resources](https://forum.freecodecamp.org/t/wiki-git-resources/13136)\n- [GitHub Flow](https://www.youtube.com/watch?v=juLIxo42A_s) (42:06) - GitHub menjelaskan bagaimana cara membuat pull request.\n- [GitHub Learning Resources](https://docs.github.com/en/free-pro-team@latest/github/getting-started-with-github/git-and-github-learning-resources) - Sumber pembelajaran Git dan GitHub.\n- [Pro Git](https://git-scm.com/book/en/v2) - Buku berjudul Pro Git, ditulis oleh Scott Chacon dan Ben Straub dan dipublikasikan oleh Apress.\n- [Git-it](https://github.com/jlord/git-it-electron) - Langkah-langkah penggunaan Git desktop.\n- [Flight Rules for Git](https://github.com/k88hudson/git-flight-rules) - Pedoman tentang apa yang harus dilakukan ketika suatu hal tidak berjalan dengan baik.\n- [Git Guide for Beginners in Spanish](https://platzi.github.io/git-slides/#/) - Panduan lengkap berupa slides tentang git dan GitHub dijelaskan dalam bahasa Spanyol. Una guía completa de diapositivas sobre git y GitHub explicadas en Español.\n- [Git Kraken](https://www.gitkraken.com/git-client) - Aplikasi desktop `git` visual, lintas platform, dan interaktif untuk version control.\n- [Git Tips](https://github.com/git-tips/tips) - Kumpulan tips dan trik git yang paling sering digunakan.\n- [Git Best Practices](https://sethrobertson.github.io/GitBestPractices/) - Sering meng-_commit_, Sempurnakan Nanti, Publikasikan Sekali: Praktik Terbaik Mengunakan Git.\n- [Git Interactive Tutorial](https://learngitbranching.js.org/) - Pelajari Git dengan cara yang paling visual dan interaktif.\n\n## Buku-buku Tentang Open Source\n\n- [Producing Open Source Software](https://producingoss.com/) - Producing Open Source Software merupakan sebuah buku tentang sisi manusia dalam pengelolaan proyek Open Source. Buku ini mendeskripsikan bagaimana sebuah proyek dengan sukses beroperasi, ekspektasi pengguna dan pengelola proyek, dan kultur dari perangkat lunak gratis.\n- [Open Source Book Series](https://opensource.com/resources/ebooks) - Pelajari lebih lanjut tentang Open Source dan mengembangkan kampanye Open Source dengan daftar susunan eBook gratis dari https://opensource.com.\n- [Software Release Practice HOWTO](https://tldp.org/HOWTO/Software-Release-Practice-HOWTO/) - HOWTO ini mendeskripsikan praktik rilis program yang baik untuk Linux dan proyek Open Source lainnya. Dengan mengikuti praktik ini, anda akan dengan mudah memberitahukan pengguna lain untuk membangun kode anda serta menggunakannya, dan memudahkan pengembang lain untuk memahami kode anda lalu bekerjasama untuk memperbaikinya.\n- [Open Sources 2.0 : The Continuing Evolution](https://archive.org/details/opensources2.000diborich) (2005) - Open Sources 2.0 adalah kumpulan esai berwawasan dan menggugah pemikiran dari para pemimpin teknologi saat ini yang terus melukiskan gambaran evolusi yang dikembangkan dalam buku 1999, Open Sources: Voices from the Revolution.\n- [The Architecture of Open Source Applications](http://www.aosabook.org/en/git.html) - Menunjukkan bagaimana aspek Git bekerja untuk memahami prinsip kerja, dan bagaimana perbedaan Git dengan version control systems (VCSs) lainnya.\n- [Open Sources: Voices from the Open Source Revolution](https://www.oreilly.com/openbook/opensources/book/) - Esai yang ditulis oleh pelopor Open Source seperti Linus Torvalds (Linux), Larry Wall (Perl), and Richard Stallman (GNU).\n\n## Kontribusi Inisiatif Open Source\n\n- [Up For Grabs](https://up-for-grabs.net/) - Berisi proyek dengan issue yang ramah untuk pemula.\n- [First Timers Only](https://www.firsttimersonly.com/) - Daftar bug yang diberi label \"first-timers-only\".\n- [First Contributions](https://firstcontributions.github.io/) - Buat kontribusi Open Source pertama anda dalam 5 menit. Sebuah alat dan panduan yang membantu para pemula untuk mulai berkontribusi. [Berikut](https://github.com/firstcontributions/first-contributions) adalah source code dari GitHub, anda juga berkesempatan untuk berkontribusi ke repositori itu sendiri.\n- [Hacktoberfest](https://hacktoberfest.digitalocean.com/) - Sebuah program yang mendorong kontribusi Open Source. Dapatkan hadiah seperti kaos dan stiker dengan membuat setidaknya 4 pull request di bulan Oktober.\n- [24 Pull Requests](https://24pullrequests.com) - 24 Pull Requests adalah sebuah proyek untuk mempromosikan kolaborasi Open Source menjelang bulan Desember.\n- [Ovio](https://ovio.org) - Sebuah platform berisi proyek yang bersifat contributor-friendly. Platform ini memiliki [mesin pencarian issue](https://ovio.org/issues) dan dapat menyimpan issue untuk ditandai serta diselesaikan nantinya.\n\n## Lisensi\n\n<a rel=\"license\" href=\"https://creativecommons.org/licenses/by-sa/4.0/\"><img alt=\"Creative Commons License\" style=\"border-width:0\" src=\"https://licensebuttons.net/l/by-sa/4.0/88x31.png\" /></a><br />Karya ini berlisensi di bawah <a rel=\"license\" href=\"https://creativecommons.org/licenses/by-sa/4.0/\">Creative Commons Attribution-ShareAlike 4.0 International License</a>."
  },
  {
    "path": "README-IT.md",
    "content": "<table>\n    <tr>\n        <!-- Do not translate this table -->\n        <td><a href=\"./README.md\"> English </a></td>\n        <td><a href=\"./README-MR.md\"> मराठी </a></td>\n        <td><a href=\"./README-BN.md\"> বাংলা </a></td>\n        <td><a href=\"./README-CN.md\"> 中文 </a></td>\n        <td><a href=\"./README-RU.md\"> русский </a></td>\n        <td><a href=\"./README-RO.md\"> Românesc </a></td>\n        <td><a href=\"./README-IT.md\"> Italiano </a></td>\n        <td><a href=\"./README-ES.md\"> Español </a></td>\n        <td><a href=\"./README-pt-BR.md\"> Português (BR) </a></td>\n        <td><a href=\"./README-DE.md\"> Deutsch </a></td>\n        <td><a href=\"./README-GR.md\"> Ελληνικά </a></td>\n        <td><a href=\"./README-FR.md\"> Français </a></td>\n        <td><a href=\"./README-TR.md\"> Turkish </a></td>\n        <td><a href=\"./README-KO.md\"> 한국어 </a></td>\n        <td><a href=\"./README-HE.md\"> עברית </a></td>\n    </tr>\n</table>\n\n# Benvenuti, nuovi open source contributors!\n\n[![Pull Requests Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat)](http://makeapullrequest.com)\n[![first-timers-only Friendly](https://img.shields.io/badge/first--timers--only-friendly-blue.svg)](http://www.firsttimersonly.com/)\n[![Check Resources](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml/badge.svg)](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml)\n\nQuesto è un elenco di risorse per chi è nuovo nel contribuire all'open source.\n\nSe trovi risorse aggiuntive, ti preghiamo di contribuire con una pull request.\n\nSe hai domande o commenti, per favore crea un issue.\n\n**Sommario**\n- [Contribuire all'open source in generale](#contribuire-allopen-source-in-generale)\n- [Ricerche GitHub dirette](#ricerche-github-dirette)\n- [L'ecosistema del contributor di Mozilla](#lecosistema-del-contributore-di-mozilla)\n- [Articoli utili per i nuovi contributors all'open source](#articoli-utili-per-i-nuovi-contributors-allopen-source)\n- [L'uso del version control](#luso-del-version-control)\n- [Libri sull'Open Source](#libri-sullopen-source)\n- [Iniziative per contribuire all Open Source](#iniziative-per-contribuire-all-open-source)\n- [Licenza](#licenza)\n\n## Contribuire all'open source in generale\n\n- [Un'introduzione all'open source](https://www.digitalocean.com/community/tutorial_series/an-introduction-to-open-source) - Tutorial di DigitalOcean per guidarti nel modo di contribuire con successo qui su GitHub.\n- [In palio](http://up-for-grabs.net/#/) - un elenco di progetti con issues per principianti.\n- [Issuehub.io](http://issuehub.pro/) - uno strumento per cercare issues in GitHub per etichetta e lingua.\n- [Code Triage](https://www.codetriage.com/) - un altro strumento, davvero interessante, per trovare repositories e issues popolari filtrati per lingua.\n- [Solo per principianti](http://www.firsttimersonly.com/) - un elenco di bugs etichettati come \"first-timer-only(Solo per i principianti)\".\n- [La tua prima Pull Request](https://twitter.com/yourfirstpr) - issues adatte per iniziare su GitHub che possono essere facilmente affrontate dai nuovi contributors.\n- [Awesome-for-beginners(Meraviglioso-per-principianti)](https://github.com/MunGell/awesome-for-beginners) - una repository GitHub che raccoglie progetti con bug buoni per nuovi contributors e a cui applica etichette per descriverli.\n- [Guide per l'Open Source Guides](https://opensource.guide/) - Raccolta di risorse per singoli, comunità e aziende che desiderano imparare come eseguire e contribuire ad un progetto open source.\n- [Cosa fare e non fare per risolvere questi 45 problemi con Github](https://hackernoon.com/45-github-issues-dos-and-donts-dfec9ab4b612) - Cosa fare e non fare su GitHub.\n- [Guide GitHub](https://docs.github.com/en) - guide di base su come utilizzare GitHub in modo efficace.\n- [Il primo contributo](https://firstcontributions.github.io/) - Crea il tuo primo contributo open source in 5 minuti. Uno strumento ed un tutorial per aiutare i principianti ad iniziare a contribuire.\n- [Contribuisci all'open source](https://github.com/danthareja/contribute-to-open-source) - Impara il flusso di lavoro GitHub contribuendo con il codice ad un progetto simulato.\n- [Guide all'open source di Linux Foundation per le Aziende](https://www.linuxfoundation.org/resources/open-source-guides) - Le guide della Fondazione Linux per progetti open source.\n- [Trucchi CSS: una guida all'etichetta per l'open source](https://css-tricks.com/open-source-etiquette-guidebook/) - Una guida all'etichetta nell'open source, scritta da Kent C. Dodds e Sarah Drasner.\n\n## Ricerche GitHub dirette\n\n- [is:issue is:open label:beginner](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Abeginner) per principianti\n- [is:issue is:open label:easy](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Aeasy) facile\n- [is:issue is:open label:first-timers-only](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Afirst-timers-only) solo per i principianti\n- [is:issue is:open label:good-first-bug](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Agood-first-bug) bug buoni per principianti\n- [is:issue is:open label:\"good first issue\"](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3A\"good+first+issue\") issues buone per principianti\n- [is:issue is:open label:starter](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Astarter) per iniziare\n- [is:issue is:open label:up-for-grabs](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Aup-for-grabs) in palio\n\n## L'ecosistema del contributore di Mozilla\n\n- [bug adatti ad iniziare](https://bugzilla.mozilla.org/buglist.cgi?quicksearch=sw:%22[good%20first%20bug]%22&limit=0) - bug che gli sviluppatori hanno identificato come una buona introduzione al progetto.\n- [Bug con mentori](https://bugzilla.mozilla.org/buglist.cgi?quicksearch=mentor%3A%40) - bug a cui è stato assegnato un mentore che sarà presente su IRC per aiutarti quando rimani bloccato mentre lavori sulla correzione.\n- [Bugs Ahoy](http://www.joshmatthews.net/bugsahoy/) - un sito dedicato alla ricerca di bug su Bugzilla.\n- [Strumenti Firefox per programmatori/sviluppatori DevTools](http://firefox-dev.tools/) - un sito dedicato ai bug archiviati per gli strumenti di sviluppo nel browser Firefox.\n- [Avvia Mozilla](https://twitter.com/StartMozilla) - un account Twitter che pubblica argomenti adatti per i contributors nuovi dell'ecosistema Mozilla.\n\n## Articoli utili per i nuovi contributors all'open source\n\n- [\"Come scegliere (e contribuire) al tuo primo progetto open source\"](https://github.com/collections/choosing-projects) di [@GitHub](https://github.com/github)\n- [\"Come trovare il tuo primo bug open source da correggere\"](https://medium.freecodecamp.org/finding-your-first-open-source-project-or-bug-to-work-on-1712f651e5ba#.slc8i2h1l) di [@Shubheksha](https://github.com/Shubheksha)\n- [\"Solo per i principianti\"](https://kentcdodds.com/blog/first-timers-only) di [@kentcdodds](https://github.com/kentcdodds)\n- [\"Porta la gentilezza nell'open source\"](http://www.hanselman.com/blog/BringKindnessBackToOpenSource.aspx) di [@shanselman](https://github.com/shanselman)\n- [\"Entrare nell'Open Source per la prima volta\"](https://www.nearform.com/blog/getting-into-open-source-for-the-first-time/) di [@mcdonnelldean](https://github.com/mcdonnelldean)\n- [\"Come contribuire all'open source\"](https://opensource.guide/how-to-contribute/) di [@GitHub](https://github.com/github/opensource.guide)\n- [\"Come trovare un bug nel codice\"](https://8thlight.com/insights/how-to-find-a-bug-in-your-code) by [@dougbradbury](https://twitter.com/dougbradbury)\n- [\"Padroneggiare il Markdown\"](https://docs.github.com/features/mastering-markdown/) di [@GitHubGuides](https://docs.github.com/en)\n- [\"La prima missione: La pagina dei contributors\"](https://forcrowd.medium.com/first-mission-contributors-page-df24e6e70705#.2v2g0no29) di [@forCrowd](https://github.com/forCrowd)\n- [\"Come rendere il tuo primo contributo open source in soli 5 minuti\"](https://medium.freecodecamp.org/how-to-make-your-first-open-source-contribution-in-just-5-minutes-aaad1fc59c9a) di [@roshanjossey](https://medium.freecodecamp.org/@roshanjossey)\n- [\"Hacktoberfest 2018: Come puoi ottenere la tua maglietta gratis — anche se sei nuovo nella programazione\"](https://medium.freecodecamp.org/hacktoberfest-2018-how-you-can-get-your-free-shirt-even-if-youre-new-to-coding-96080dd0b01b) di [@quincylarson](https://medium.freecodecamp.org/@quincylarson)\n\n## L'uso del version control\n\n- [Pensa come (un) Git (stupido)](https://think-like-a-git.net/) - L'Introduzione a Git per \"principianti avanzati\", che hanno ancora qualche difficoltà, al fine di darti una semplice strategia per sperimentare in sicurezza con git.\n- [Prova Git](https://docs.github.com/en/get-started/quickstart/set-up-git) - Impara Git in 15 minuti dal tuo browser gratuitamente.\n- [Git di tutti i giorni](https://git-scm.com/docs/giteveryday) - Un utile set minimo di comandi per Git da usare ogni giorno.\n- [Oh mio Dio, git!](http://ohshitgit.com/) - come uscire dagli errori di `git` comuni descritti in inglese semplice.\n- [Atlassian Git Tutoriali](https://www.atlassian.com/git/tutorials/) - vari tutorial sull'uso di `git`.\n- [Promemoria di Git](https://education.github.com/git-cheat-sheet-education.pdf) (PDF)\n- [Wiki di freeCodeCamp sulle risorse di Git](https://www.freecodecamp.org/forum/t/wiki-git-resources/13136)\n- [Il flusso di GitHub](https://www.youtube.com/watch?v=juLIxo42A_s) (42:06) - GitHub parla di come effettuare una pull request.\n- [Risorse per l'apprendimento di GitHub](https://help.github.com/articles/git-and-github-learning-resources/) - Risorse per l'apprendimento di Git e GitHub.\n- [Pro Git](https://git-scm.com/book/en/v2) - L'intero libro di Pro Git, scritto da Scott Chacon e Ben Straub e pubblicato da Apress.\n- [Git-it](https://github.com/jlord/git-it-electron) - Tutorial Git desktop app passo per passo.\n- [Regole di ingaggio per Git](https://github.com/k88hudson/git-flight-rules) - Una guida su cosa fare quando le cose vanno male.\n- [Un'introduzione completa a Git e GitHub](https://codeburst.io/git-good-part-a-e0d826286a2a) - Una guida scritta da Madhav Bahl, che dovresti vedere se sei nuovo di Git o GitHub. Copre GitHub come un servizio e i concetti di controllo della versione con Git in dettaglio.\n\n## Libri sull'Open Source\n\n- [Produrre Open Source Software](http://producingoss.com/) - Produrre Open Source Software è un libro sul lato umano dello sviluppo dell'open source. Descrive il funzionamento dei progetti di successo, le aspettative degli utenti e degli sviluppatori e la cultura del software libero.\n- [Serie di libri di Open Source](https://opensource.com/resources/ebooks) - Impara ulteriormente sull'open source e il crescente movimento open source con un elenco completo di libri digitali/eBook gratuiti da https://opensource.com.\n- [Le Pratiche sul COME rilasciare il Software](http://en.tldp.org/HOWTO/Software-Release-Practice-HOWTO/) - Questo HOWTO descrive le buone abitudini di rilascio per Linux e altri progetti open-source. Seguendo queste pratiche, renderete il più semplice possibile per gli utenti compilare il vostro codice e usarlo, e per gli altri sviluppatori capire il vostro codice e collaborare con voi per migliorarlo.\n- [Open Sources 2.0: L'Evoluzione della Contribuzione](https://archive.org/details/opensources2.000diborich) (2005) - Open Sources 2.0 è una raccolta di saggi penetranti e stimolanti dei leader tecnologici di oggi che continua a dipingere un quadro evolutivo sviluppato nel libro del 1999, Open Sources: Le voci della rivoluzione.\n\n## Iniziative per contribuire all Open Source\n\n- [Disponibili](https://up-for-grabs.net/) - un elenco di progetti con problemi per i principianti.\n- [Solo per principianti](https://www.firsttimersonly.com/) - Lista di bug etichettati come \"first-timers-only\".\n- [Primi contributi](https://firstcontributions.github.io/) - Fai il tuo primo contributo Open Source in 5 minuti. Uno strumento e un tutorial per aiutare i principianti ad iniziare a contribuire. [Qui](https://github.com/firstcontributions/first-contributions) si trova il codice sorgente Github per il sito e l'opportunità per contribuire al repository stesso.\n- [Hacktoberfest](https://hacktoberfest.digitalocean.com/) - Un evento per incoraggiare i contributi Open Source. Guadagna regali come magliette e adesivi facendo almento 4 pull request nel mese di ottobre.\n- [24 Pull Requests](https://24pullrequests.com) - 24 Pull Requests è un progetto per promuovere la collaborazione Open Source durante il mese di dicembre.\n\n## Licenza\n\n<a rel=\"license\" href=\"http://creativecommons.org/licenses/by-sa/4.0/\"><img alt=\"Creative Commons License\" style=\"border-width:0\" src=\"https://i.creativecommons.org/l/by-sa/4.0/88x31.png\" /></a><br />Questo lavoro è concesso in licenza con una <a rel=\"license\" href=\"http://creativecommons.org/licenses/by-sa/4.0/\">Creative Commons Attribution-ShareAlike 4.0 International License</a>.\n"
  },
  {
    "path": "README-JA.md",
    "content": "<table>\n    <tr>\n        <!-- Do not translate this table -->\n        <td><a href=\"./README.md\"> English </a></td>\n        <td><a href=\"./README-MR.md\"> मराठी </a></td>\n        <td><a href=\"./README-BN.md\"> বাংলা </a></td>\n        <td><a href=\"./README-CN.md\"> 中文 </a></td>\n        <td><a href=\"./README-RU.md\"> русский </a></td>\n        <td><a href=\"./README-RO.md\"> Românesc </a></td>\n        <td><a href=\"./README-IT.md\"> Italiano </a></td>\n        <td><a href=\"./README-ES.md\"> Español </a></td>\n        <td><a href=\"./README-pt-BR.md\"> Português (BR) </a></td>\n        <td><a href=\"./README-JA.md\"> 日本語 </a></td>\n    </tr>\n</table>\n\n# オープンソース貢献初心者のみなさんようこそ!\n\n[![Pull Requests Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat)](http://makeapullrequest.com)\n[![first-timers-only Friendly](https://img.shields.io/badge/first--timers--only-friendly-blue.svg)](http://www.firsttimersonly.com/)\n[![Check Resources](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml/badge.svg)](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml)\n\nこれはオープンソース貢献が初めての方のためのリストです。\n\n他のリソースを見つけた場合、プルリクを送ってください。\n\n質問やコメントがありましたら、 issueを作成してください。\n\n## 目次\n\n- [オープンソース貢献初心者のみなさんようこそ!](#オープンソース貢献初心者のみなさんようこそ!)\n  - [目次](#目次)\n  - [通常のオープンソースへの貢献](#通常のオープンソースへの貢献)\n  - [Github上で直接検索](#Github上で直接検索)\n  - [Mozillaの貢献エコシステム](#Mozillaの貢献エコシステム)\n  - [オープンソース貢献初心者に有益な記事](#オープンソース貢献初心者に有益な記事)\n  - [バージョン管理の使用](#バージョン管理の使用)\n  - [オープンソースの本](#オープンソースの本)\n  - [オープンソース貢献取り組み](#オープンソース貢献取り組み)\n  - [ライセンス](#ライセンス)\n\n## 通常のオープンソースへの貢献\n- [信頼性の高いオープンソース貢献のガイド](https://medium.freecodecamp.org/the-definitive-guide-to-contributing-to-open-source-900d5f9f2282) by [@DoomHammerNG](https://twitter.com/DoomHammerNG)\n- [オープンソース入門](https://www.digitalocean.com/community/tutorial_series/an-introduction-to-open-source) - DigitalOceanによるGithubの貢献で成功するためのチュートリアル\n- [Issuehub.io](http://issuehub.pro/) - ラベルと言語でGithubのIssuesを検索するためのツール\n- [Code Triage](https://www.codetriage.com/) - その他の言語フィルターによって人気のレポジトリーを探すための良いツール、\n- [初心者向けの素晴らしいもの](https://github.com/MunGell/awesome-for-beginners) - オープンソース貢献初心者のために良いバクを蓄えていおり、説明のラベルが付いているレポジトリー\n- [オープンソースガイド](https://opensource.guide/) - オープンソースに貢献の仕方を覚えたい個人、コミュニティ、企業向けのレポジトリーまとめ\n- [GithubのIssuesの45個のすること・してはいけないこと](https://hackernoon.com/45-github-issues-dos-and-donts-dfec9ab4b612) - GitHubですること・してはいけないこと\n- [GitHubガイド](https://docs.github.com/en) - GitHubを効率的に使用するための基礎ガイド\n- [オープンソース貢献](https://github.com/danthareja/contribute-to-open-source) - シュミレーションプロジェクトに貢献して、GitHubの作業の流れを学ぼう\n- [Linux Foundationの企業向けオープンソースガイド](https://www.linuxfoundation.org/resources/open-source-guides/) - オープンソースプロジェクトのLinux Foundationガイド\n- [オープンソースでのエチケットガイドブック、CSS裏技](https://css-tricks.com/open-source-etiquette-guidebook/) - Kent C. Dodds と Sarah Drasnerによるオープンソースでのエチケットガイドブック\n- [学生のためのA〜Z順のリソース](https://github.com/dipakkr/A-to-Z-Resources-for-Students) - 新しいプログラミング言語を勉強している学生のための選りすぐりのリソース・機会のリスト\n- [最初のオープンソースプロジェクトへの貢献、実践的アプローチ、実践的アプローチ](https://blog.devcenter.co/contributing-to-your-first-open-source-project-a-practical-approach-1928c4cbdae) - [Abati Adewale](https://www.acekyd.com)による、最初のオープンソースプロジェクトへの貢献するための順を追ったアプローチ\n- [プルリクエストルーレット](http://www.pullrequestroulette.com/) - このサイトにはGithub上のオープンソースプロジェクトにレビューしたプルリクエストのリストがある\n- [\"Egghead.ioによるGitHubでのオープンソースプロジェクト始め方ガイド](https://egghead.io/courses/how-to-contribute-to-an-open-source-project-on-github) - GitHubでオープンソースプロジェクトの貢献の始め方、順を追ったガイド動画\n\n## Github上で直接検索\nGithub上での貢献に適切な問題を表示しているリンクを直接探してください\n- [is:issue is:open label:beginner](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Abeginner)\n- [is:issue is:open label:easy](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Aeasy)\n- [is:issue is:open label:first-timers-only](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Afirst-timers-only)\n- [is:issue is:open label:good-first-bug](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Agood-first-bug)\n- [is:issue is:open label:\"good first issue\"](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3A\"good+first+issue\")\n- [is:issue is:open label:starter](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Astarter)\n- [is:issue is:open label:up-for-grabs](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Aup-for-grabs)\n\n## Mozillaの貢献エコシステム\n- [初心者向けバグ](https://bugzilla.mozilla.org/buglist.cgi?quicksearch=sw:%22[good%20first%20bug]%22&limit=0) - 開発者がプロジェクトに良い導入だと認識しているバグ\n- [Mentored Bugs](https://bugzilla.mozilla.org/buglist.cgi?quicksearch=mentor%3A%40) - bugs that have a mentor assigned who will be there on IRC to help you when you get stuck while working on fix.\n- [Bugs Ahoy](http://www.joshmatthews.net/bugsahoy/) - Bugzillaでバグをさがすための献身的なサイト\n- [Firefox開発者ツールs](http://firefox-dev.tools/) - Firefoxブラウザの開発者ツール用のバグに献身的なサイト\n- [Mozillaをはじめよう](https://twitter.com/StartMozilla) - Mozillaエコシステム初心者の貢献者に最適な問題についてツイートするツイッターアカウント\n\n## オープンソース貢献初心者に有益な記事\n- [最初のオープンソースの選び方（貢献の仕方)](https://github.com/collections/choosing-projects) by [@GitHub](https://github.com/github/docs)\n- [オープンソースで修正するバグの最初の見つけ方](https://medium.freecodecamp.org/finding-your-first-open-source-project-or-bug-to-work-on-1712f651e5ba#.slc8i2h1l) by [@Shubheksha](https://github.com/Shubheksha)\n- [初心者限定](https://kentcdodds.com/blog/first-timers-only) by [@kentcdodds](https://github.com/kentcdodds)\n- [オープンソースに優しさを](http://www.hanselman.com/blog/BringKindnessBackToOpenSource.aspx) by [@shanselman](https://github.com/shanselman)\n- [初めてのオープンソース参加](https://www.nearform.com/blog/getting-into-open-source-for-the-first-time/) by [@mcdonnelldean](https://github.com/mcdonnelldean)\n- [オープンソースの貢献方法](https://opensource.guide/how-to-contribute/) by [@GitHub](https://github.com/github)\n- [自分のコードのバグの見つけ方](https://8thlight.com/blog/doug-bradbury/2016/06/29/how-to-find-bug-in-your-code.html) by [@dougbradbury](https://twitter.com/dougbradbury)\n- [Markdownをマスターする](https://docs.github.com/features/mastering-markdown/) by [@GitHubGuides](https://docs.github.com/en)\n- [最初のミッション: 貢献者のページ](https://forcrowd.medium.com/first-mission-contributors-page-df24e6e70705#.2v2g0no29) by [@forCrowd](https://github.com/forCrowd)\n- [たった5分で最初のオープンソース貢献を行う方法](https://medium.freecodecamp.org/how-to-make-your-first-open-source-contribution-in-just-5-minutes-aaad1fc59c9a) by [@roshanjossey](https://medium.freecodecamp.org/@roshanjossey)\n- [Hacktoberfest 2018: コーディング初心者の人が無料シャツの手に入れる仕方](https://medium.freecodecamp.org/hacktoberfest-2018-how-you-can-get-your-free-shirt-even-if-youre-new-to-coding-96080dd0b01b) by [@quincylarson](https://medium.freecodecamp.org/@quincylarson)\n- [オープンソースへの辛辣なガイド](https://medium.com/codezillas/a-bitter-guide-to-open-source-a8e3b6a3c1c4) by [@ken_wheeler](https://medium.com/@ken_wheeler)\n- [若手開発者が初めてオープンソースに貢献するための順を追ったガイド](https://hackernoon.com/contributing-to-open-source-the-sharks-are-photoshopped-47e22db1ab86) by [@LetaKeane](http://www.letakeane.com/)\n- [Windowsで順を追ってGitとGitHubを学ぼう](https://medium.com/@ows_ali/be93518e06dc) by [@ows-ali](https://medium.com/@ows_ali)\n\n## バージョン管理の使用\n- [Gitのように考えよう](https://think-like-a-git.net/) - 少し前進したけどまだ奮闘中の初心者へ、Gitを安全に経験できるための簡単な作戦を与えるためのGit紹介\n- [Gitを使ってみよう](https://docs.github.com/en/get-started/quickstart/set-up-git) - 無料でブラウザを使って、15分でGitを学ぼう\n- [Gitの日々](https://git-scm.com/docs/giteveryday) - 毎日のGit生活のために必要な最低限の役立つコマンド一覧\n- [gitめ…](http://ohshitgit.com/) - gitで良く起こるミスを阻止する方法について、英語で説明\n- [アトラシアン社のGitチュートリアル](https://www.atlassian.com/git/tutorials/) - various tutorials on using `git`.\n- [GitHubとGitのチートシート](https://education.github.com/git-cheat-sheet-education.pdf) (PDF)\n- [GitリソースにあるfreeCodeCampのWiki](https://www.freecodecamp.org/forum/t/wiki-git-resources/13136)\n- [GitHub Flow](https://www.youtube.com/watch?v=juLIxo42A_s) (42:06) - GitHubによる、プルリクエストの送り方の説明\n- [GitHub Learning Resources](https://help.github.com/articles/git-and-github-learning-resources/) - GitとGitHub学習者用のリソース\n- [Pro Git](https://git-scm.com/book/en/v2) - The entire Pro Git book, written by Scott Chacon and Ben Straub and published by Apress.\n- [Git-it](https://github.com/jlord/git-it-electron) - Gitデスクトップアプリのための順を追ったチュートリアル\n- [Gitの規約](https://github.com/k88hudson/git-flight-rules) - 間違っていた際にすべきことについてのガイド\n- [GitとGitHubの総合的な紹介](https://codeburst.io/git-good-part-a-e0d826286a2a) - Madhav Bahlによる、GitやGitHubの初心者なら見るべきガイド。GitHubでのバージョン管理の概念やサービルの詳細まで網羅されています。\n- [スペイン語の初心者向けGitガイド](https://platzi.github.io/git-slides/#/) - スペイン語で説明されたGitやGitHubのスライドの完全ガイド。Una guía completa de diapositivas sobre git y GitHub explicadas en Español.\n- [Git Kraken](https://www.gitkraken.com/git-client) - バージョン管理のためのビジュアル、クロスプラットフォーム、対話型gitデスクトップアプリケーション\n\n## オープンソースの本\n- [オープンソースソフトウェアの作成](http://producingoss.com/) - オープンソースのソフトウェアを作成することは、オープンソース開発の人間味のある面についての本です。プロジェクトがどのように行われ成功したか、ユーザーと開発者の期待、無料ソフトウェアの文化について説明しています。\n- [オープンソースのシリーズ本](https://opensource.com/resources/ebooks) - https://opensource.com にある無料電子書籍の幅広いリストを使って、オープンソースやオープンソース活動の成長についてもっと学ぼう\n- [ソフトウェアのリリース練習の仕方](http://en.tldp.org/HOWTO/Software-Release-Practice-HOWTO/) - このハウツーはLinuxと他のオープンソースプロジェクトのための良いリリースの実践方法を説明しています。これらの実跡を追えば、ユーザーがコードをビルドしたら使用すること、または他の開発者が改善のために協力することやコードの意味を理解することができるだけ簡単にできるようになる\n- [Open Sources 2.0 : 貢献の進化](https://archive.org/details/opensources2.000diborich) (2005) - Open Sources 2.0は1999年に作り出された「pen Sources: Voices from the Revolution」という本の進化を描き続けている今日の技術指導者の見識と刺激的なエッセイの集約です\n\n## オープンソース貢献取り組み\n- [Up For Grabs](http://up-for-grabs.net/#/) - 初心者向けissuesのプロジェクト内容\n- [初心者限定](http://www.firsttimersonly.com/) - \"初めての方のみ\"とラベル付けされているバグのリスト\n- [最初の貢献](https://firstcontributions.github.io/) - 5分で最初のオープンソース貢献をしよう。初心者がオープンソース貢献をはじめるために役に立つツールとチュートリアル一覧\n- [Hacktoberfest](https://hacktoberfest.digitalocean.com/) - オープンソース貢献を推奨するためのプロジェクト。10月中に最低5個のプルリクを送り、Tシャツやシールのプレゼントを手に入れよう\n- [24プルリクエスト](https://24pullrequests.com) - 21プルリクエストは12月の間オープンソース活動を促進するためのプロジェクトです\n\n## ライセンス\n<a rel=\"license\" href=\"http://creativecommons.org/licenses/by-sa/4.0/\"><img alt=\"Creative Commons License\" style=\"border-width:0\" src=\"https://i.creativecommons.org/l/by-sa/4.0/88x31.png\" /></a><br />この取り組みは以下にライセンスされています <a rel=\"license\" href=\"http://creativecommons.org/licenses/by-sa/4.0/\">Creative Commons Attribution-ShareAlike 4.0 International License</a>.\n"
  },
  {
    "path": "README-KO.md",
    "content": "<!-- Do not translate this -->\n<details>\n<summary>\n<strong> 언어 변경 </strong>\n</summary>\n    <ul>\n        <li><a href=\"./README.md\"> English </a></li>\n        <li><a href=\"./README-MR.md\"> मराठी </a></li>\n        <li><a href=\"./README-BN.md\"> বাংলা </a></li>\n        <li><a href=\"./README-CN.md\"> 中文 </a></li>\n        <li><a href=\"./README-RU.md\"> русский </a></li>\n        <li><a href=\"./README-RO.md\"> Românesc </a></li>\n        <li><a href=\"./README-IT.md\"> Italiano </a></li>\n        <li><a href=\"./README-ES.md\"> Español </a></li>\n        <li><a href=\"./README-pt-BR.md\"> Português (BR) </a></li>\n        <li><a href=\"./README-DE.md\"> Deutsch </a></li>\n        <li><a href=\"./README-GR.md\"> Ελληνικά </a></li>\n        <li><a href=\"./README-FR.md\"> Français </a></li>\n        <li><a href=\"./README-TR.md\"> Turkish </a></li>\n        <li><a href=\"./README-KO.md\"> 한국어 </a></li>\n    </ul>\n</details>\n<!-- Do not translate this -->\n\n\n# 새로운 오픈 소스 컨트리뷰터분들을 환영합니다!\n\n[![Pull Requests Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat)](http://makeapullrequest.com)\n[![first-timers-only Friendly](https://img.shields.io/badge/first--timers--only-friendly-blue.svg)](http://www.firsttimersonly.com/)\n[![Check Resources](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml/badge.svg)](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml)\n\n아래는 오픈 소스에 기여를 시작하고자 하는 사람들을 위한 리소스 목록입니다.\n\n만약 새로운 리소스를 찾았다면, pull request 를 통해 기여해주세요.\n\n질문이나 남기실 말이 있다면, 새로운 이슈를 남겨주세요.\n\n**목차**\n\n- [일반적으로 오픈 소스에 기여하기](#일반적으로-오픈-소스에-기여하기)\n- [GitHub에서 직접 검색하기](#GitHub에서-직접-검색하기)\n- [Mozilla의 컨트리뷰터 생태계](#Mozilla의-컨트리뷰터-생태계)\n- [새로운 오픈 소스 컨트리뷰터를 위한 유용한 기사](#새로운-오픈-소스-컨트리뷰터를-위한-유용한-기사)\n- [버전 관리 사용하기](#버전-관리-사용하기)\n- [오픈 소스 서적](#오픈-소스-서적)\n- [오픈 소스 기여 시작하기](#오픈-소스-기여-시작하기)\n- [라이선스](#라이선스)\n\n## 일반적으로 오픈 소스에 기여하기\n- [오픈소스란 무엇인가요?](https://hamonikr.org/oss/51202) - 국내 오픈소스 \n- [The Definitive Guide to Contributing to Open Source](https://medium.freecodecamp.org/the-definitive-guide-to-contributing-to-open-source-900d5f9f2282) by [@DoomHammerNG](https://twitter.com/DoomHammerNG)\n- [An Intro to Open Source](https://www.digitalocean.com/community/tutorial_series/an-introduction-to-open-source) - DigitalOcean의 GitHub에서 기여를 성공할 수 있는 방법을 안내하는 튜토리얼\n- [SourceSort](https://www.sourcesort.com) - 도움을 필요로 하는 검색가능한 오픈 소스 프로젝트들의 모음집, 새로운 컨트리뷰터들에게 중요한 첫번째 PR 승인률과 반응 시간과 같은 수치들을 갖추고 있음\n- [Issuehub.io](http://issuehub.pro/) - 라벨과 언어로 GitHub 이슈들을 찾는 도구\n- [Code Triage](https://www.codetriage.com/) - 언어별로 필터링된 인기 있는 레파지토리와 이슈들을 찾는 또 다른 좋은 도구\n- [Awesome-for-beginners](https://github.com/MunGell/awesome-for-beginners) - 새로운 컨트리뷰터를 위한 좋은 버그와 해당 버그를 설명하는 라벨을 모아둔 GitHub 레포지토리 \n- [Open Source Guides](https://opensource.guide/) - 오픈소스 프로젝트를 운영하고 기여하는 방법을 배우고 싶어하는 개인, 커뮤니티, 회사를 위한 리소스들의 모음집\n- [45 Github Issues Dos and Don’ts](https://hackernoon.com/45-github-issues-dos-and-donts-dfec9ab4b612) - GitHub에서 해야 할 것과 하지 말아야 할 것\n- [GitHub Guides](https://docs.github.com/en) - GitHub를 효과적으로 사용하는 방법에 대한 기본 가이드\n- [Contribute to Open Source](https://github.com/danthareja/contribute-to-open-source) - 시뮬레이션 프로젝트의 코드에 기여함으로서 GitHub 워크플로우 배우기\n- [Linux Foundation's Open Source Guides for the Enterprise](https://www.linuxfoundation.org/resources/open-source-guides) - Linux Foundation의 오픈 소스 프로젝트 가이드\n- [CSS Tricks An Open Source Etiquette Guidebook](https://css-tricks.com/open-source-etiquette-guidebook/) - Kent C. Dodds와 Sarah Drasner의 오픈 소스 에티켓 가이드 북\n- [A to Z Resources for Students](https://github.com/dipakkr/A-to-Z-Resources-for-Students) - 새로운 컴퓨터 언어를 배우는 대학생들을 위한 기회와 리소스가 정리된 목록 \n- [Contributing to your First Open Source Project: A Practical Approach](https://blog.devcenter.co/contributing-to-your-first-open-source-project-a-practical-approach-1928c4cbdae) - [Abati Adewale](https://www.acekyd.com)의 첫 번째 오픈 소스 프로젝트에 기여하기 위한 단계별 접근 방식\n- [Pull Request Roulette](http://www.pullrequestroulette.com/) - GitHub에서 호스팅 되는 오픈 소스 프로젝트의 리뷰를 필요로 하는 제출된 pull request들의 리스트가 정리된 사이트\n- [\"How to Contribute to an Open Source Project on GitHub\" by Egghead.io](https://egghead.io/courses/how-to-contribute-to-an-open-source-project-on-github) - GitHub의 오픈 소스 프로젝트에 기여를 시작하는 방법에 대한 단계별 비디오 가이드\n- [Contributing to Open Source: A Live Walkthrough from Beginning to End](https://medium.com/@kevinjin/contributing-to-open-source-walkthrough-part-0-b3dc43e6b720) - 적절한 프로젝트를 선택하는 것부터, 이슈 해결, PR 병합하기까지 모든것을 다루는 단계별 오픈 소스 기여 연습\n- [\"How to Contribute to Open Source Project by\" Sarah Drasner](https://css-tricks.com/how-to-contribute-to-an-open-source-project/) - 다른 사람들의 Github의 프로젝트에 PR을 기여하는 것의 핵심에 중점을 두고 있습니다.\n- [\"How to get started with Open Source by\" Sayan Chowdhury](https://hackerearth.com/getstarted-opensource/) - 초보자들이 좋아하는 언어에 대한 흥미를 바탕으로 오픈 소스에 기여하기 위한 리소스들을 다룬 글입니다.\n\n## GitHub에서 직접 검색하기\nGitHub에서 기여할 만한 적절한 이슈를 직접적으로 가리키는 검색 링크입니다.\n- [is:issue is:open label:beginner](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Abeginner)\n- [is:issue is:open label:easy](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Aeasy)\n- [is:issue is:open label:first-timers-only](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Afirst-timers-only)\n- [is:issue is:open label:good-first-bug](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Agood-first-bug)\n- [is:issue is:open label:\"good first issue\"](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3A\"good+first+issue\")\n- [is:issue is:open label:starter](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Astarter)\n- [is:issue is:open label:up-for-grabs](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Aup-for-grabs)\n\n## Mozilla의 컨트리뷰터 생태계\n- [Good First Bugs](https://bugzilla.mozilla.org/buglist.cgi?quicksearch=sw:%22[good%20first%20bug]%22&limit=0) - 개발자들이 프로젝트에 대한 좋은 경험이라고 판단한 버그들\n- [Mentored Bugs](https://bugzilla.mozilla.org/buglist.cgi?quicksearch=mentor%3A%40) - 수정 작업을 하다가 막혔을 때 도와줄 수 있는 멘토가 IRC에 있는 버그들\n- [Bugs Ahoy](http://www.joshmatthews.net/bugsahoy/) - Bugzilla 에서 버그를 찾기 위한 사이트\n- [Firefox DevTools](http://firefox-dev.tools/) - Firefox browser의 개발자 도구에 대해 접수된 버그에 대한 사이트 \n- [Start Mozilla](https://twitter.com/StartMozilla) - Mozilla 생태계를 처음 접하는 컨트리뷰터에게 적합한 이슈를 트윗하는 트위터 계정\n\n## 새로운 오픈 소스 컨트리뷰터를 위한 유용한 기사\n- [How to choose (and contribute to) your first Open Source project](https://github.com/collections/choosing-projects) by [@GitHub](https://github.com/github)\n- [How to find your first Open Source bug to fix](https://medium.freecodecamp.org/finding-your-first-open-source-project-or-bug-to-work-on-1712f651e5ba#.slc8i2h1l) by [@Shubheksha](https://github.com/Shubheksha)\n- [First Timers Only](https://kentcdodds.com/blog/first-timers-only) by [@kentcdodds](https://github.com/kentcdodds)\n- [Bring Kindness Back to Open Source](http://www.hanselman.com/blog/BringKindnessBackToOpenSource.aspx) by [@shanselman](https://github.com/shanselman)\n- [Getting into Open Source for the First Time](https://www.nearform.com/blog/getting-into-open-source-for-the-first-time/) by [@mcdonnelldean](https://github.com/mcdonnelldean)\n- [How to Contribute to Open Source](https://opensource.guide/how-to-contribute/) by [@GitHub](https://github.com/github/opensource.guide)\n- [How to Find a Bug in Your Code](https://8thlight.com/insights/how-to-find-a-bug-in-your-code) by [@dougbradbury](https://twitter.com/dougbradbury)\n- [Mastering Markdown](https://docs.github.com/features/mastering-markdown/) by [@GitHubGuides](https://docs.github.com/en)\n- [First mission: Contributors page](https://forcrowd.medium.com/first-mission-contributors-page-df24e6e70705#.2v2g0no29) by [@forCrowd](https://github.com/forCrowd)\n- [How to make your first Open Source contribution in just 5 minutes](https://medium.freecodecamp.org/how-to-make-your-first-open-source-contribution-in-just-5-minutes-aaad1fc59c9a) by [@roshanjossey](https://medium.freecodecamp.org/@roshanjossey)\n- [Hacktoberfest 2019: How you can get your free shirt — even if you’re new to coding](https://medium.freecodecamp.org/hacktoberfest-2018-how-you-can-get-your-free-shirt-even-if-youre-new-to-coding-96080dd0b01b) by [@quincylarson](https://medium.freecodecamp.org/@quincylarson)\n- [A Bitter Guide To Open Source](https://medium.com/codezillas/a-bitter-guide-to-open-source-a8e3b6a3c1c4) by [@ken_wheeler](https://medium.com/@ken_wheeler)\n- [A junior developer’s step-by-step guide to contributing to Open Source for the first time](https://hackernoon.com/contributing-to-open-source-the-sharks-are-photoshopped-47e22db1ab86) by [@LetaKeane](http://www.letakeane.com/)\n- [Learn Git and GitHub Step By Step (on Windows)](https://medium.com/@ows_ali/be93518e06dc) by [@ows-ali](https://medium.com/@ows_ali)\n\n## 버전 관리 사용하기\n- [Think Like (a) Git](https://think-like-a-git.net/) - 고급 초보자들을 위한 Git 소개, git에 대한 확실한 경험을 전달하기 위해 고군분투 중입니다.\n- [Try Git](https://docs.github.com/en/get-started/quickstart/set-up-git) - 브라우저에서 15분 이내에 Git을 무료로 배워보세요.\n- [Everyday Git](https://git-scm.com/docs/giteveryday) - 매일매일 Git을 사용하는데 유용한 최소한의 명령어들 모음\n- [Oh shit, git!](https://ohshitgit.com/) - 영어로 설명된 일반적인 git 실수에서 벗어나는 방법; 또한 [Dangit, git!](https://dangitgit.com/) 을 참조하세요.\n- [Atlassian Git Tutorials](https://www.atlassian.com/git/tutorials/) - `git`을 사용한 다양한 튜토리얼\n- [GitHub Git Cheat Sheet](https://education.github.com/git-cheat-sheet-education.pdf) (PDF)\n- [freeCodeCamp's Wiki on Git Resources](https://www.freecodecamp.org/forum/t/wiki-git-resources/13136)\n- [GitHub Flow](https://www.youtube.com/watch?v=juLIxo42A_s) (42:06) - pull request를 만드는 방법에 대한 GitHub 이야기\n- [GitHub Learning Resources](https://help.github.com/articles/git-and-github-learning-resources/) - Git과 GitHub 학습 자료\n- [Pro Git](https://git-scm.com/book/en/v2) - Apress에서 출판한 Scott Chacon과 Ben Straub의 Pro Git 책 전문\n- [Git-it](https://github.com/jlord/git-it-electron) - 단계별 Git 튜토리얼 데스크탑 앱\n- [Flight Rules for Git](https://github.com/k88hudson/git-flight-rules) - 일이 잘못되어가고 있을 때 해야 할 일들에 대한 안내\n- [A Comprehensive Introduction To Git and GitHub](https://codeburst.io/git-good-part-a-e0d826286a2a) - 만약 Git이나 GitHub가 처음이라면 Madhav Bahl의 안내서를 보세요. GitHub 서비스와 Git 버전 관리에 대한 자세한 개념을 다룹니다.\n- [Git Guide for Beginners in Spanish](https://platzi.github.io/git-slides/#/) - 스페인어로 설명된 Git과 GitHub에 대한 완벽한 안내 슬라이드.\n- [Git Kraken](https://www.gitkraken.com/git-client) - 버전 관리를 위한 비주얼, 크로스 플랫폼, 대화형 'git' 데스크톱 어플리케이션\n- [Git Tips](https://github.com/git-tips/tips) - 가장 일반적으로 사용되는 git 팁과 트릭들의 모음집\n- [Git Best Practices](https://sethrobertson.github.io/GitBestPractices/) - 커밋은 자주, 완벽함은 나중으로, 게시는 한번만 : Git Best Practices\n\n## 오픈 소스 서적\n- [Producing Open Source Software](http://producingoss.com/) - Producing Open Source Software 는 오픈 소스 개발의 인간적인 측면에 대한 책입니다. 이 책에서는 프로젝트의 성공적인 운영 방식, 사용자와 개발자의 기대, 자유 소프트웨어 문화에 대해 다룹니다.\n- [Open Source Book Series](https://opensource.com/resources/ebooks) - https://opensource.com 에서 무료 eBook 리스트를 통해 오픈 소스와 성장하는 오픈 소스 운동에 대해 배워보세요.\n- [Software Release Practice HOWTO](http://tldp.org/HOWTO/Software-Release-Practice-HOWTO/) - HOWTO 에서는 리눅스와 다른 오픈 소스 프로젝트의 좋은 배포 방법을 설명합니다. 이러한 방법을 따름으로서, 당신은 사용자가 쉽게 당신의 코드를 작성하고 사용할 수 있게 할 수 있으며, 다른 개발자가 당신의 코드를 쉽게 이해하고 개선하기 위해 협력할 수 있습니다.\n- [Open Sources 2.0 : The Continuing Evolution](https://archive.org/details/opensources2.000diborich) (2005) - Open Sources 2.0은 1999년의 책인 오픈 소스 : 혁명의 목소리에서 발전된 진화적인 그림을 이어 그리는 오늘날의 기술 리더들의 통찰력과 생각을 자극하는 에세이들의 모음집입니다.\n- [The Architecture of Open Source Applications](http://www.aosabook.org/en/git.html) - 분산 워크플로우를 가능하게 하기 위해서 Git의 다양한 측면이 어떻게 작동하는지, 그리고 다른 버전 관리 시스템(VCSs)들과 어떻게 다른지 보여줍니다.\n\n## 오픈 소스 기여 시작하기\n- [Up For Grabs](http://up-for-grabs.net/#/) - 초보자들에게 친숙한 이슈를 포함하는 프로젝트들\n- [First Timers Only](http://www.firsttimersonly.com/) - \"first-timers-only\" 로 라벨링된 버그 리스트\n- [First Contributions](https://firstcontributions.github.io/) - 오분 안에 오픈 소스에 처음으로 기여하세요. 초보자가 기여를 시작하는 것을 도와주는 도구와 튜토리얼이 있습니다. [여기](https://github.com/firstcontributions/first-contributions)는 사이트를 위한 GitHub 소스 코드이자 저장소 자체에 기여를 할 수 있는 기회입니다.\n- [Hacktoberfest](https://hacktoberfest.digitalocean.com/) - 오픈 소스 기여를 권장하는 프로그램. 10월에 최소 4번의 pull request를 통해 티셔츠나 스티커 같은 선물을 받으세요.\n- [24 Pull Requests](https://24pullrequests.com) - 24 Pull Requests는 12월 한 달 동안 오픈 소스 협업을 촉진하기 위한 프로젝트입니다.\n\n## 라이선스\n<a rel=\"license\" href=\"http://creativecommons.org/licenses/by-sa/4.0/\"><img alt=\"Creative Commons License\" style=\"border-width:0\" src=\"https://i.creativecommons.org/l/by-sa/4.0/88x31.png\" /></a><br />This work is licensed under a <a rel=\"license\" href=\"http://creativecommons.org/licenses/by-sa/4.0/\">Creative Commons Attribution-ShareAlike 4.0 International License</a>.\n"
  },
  {
    "path": "README-ML.md",
    "content": "<!-- Do not translate this -->\n<details>\n<summary>\n<strong> ഈ സഹായി മറ്റ് ഭാഷകളിൽ വായിക്കുക </strong>\n</summary>\n    <ul>\n        <li><a href=\"./README.md\"> English </a></li>\n        <li><a href=\"./README-BN.md\"> বাংলা </a></li>\n        <li><a href=\"./README-CN.md\"> 中文 </a></li>\n        <li><a href=\"./README-RU.md\"> русский </a></li>\n        <li><a href=\"./README-RO.md\"> Românesc </a></li>\n        <li><a href=\"./README-IT.md\"> Italiano </a></li>\n        <li><a href=\"./README-ES.md\"> Español </a></li>\n        <li><a href=\"./README-pt-BR.md\"> Português (BR) </a></li>\n        <li><a href=\"./README-DE.md\"> Deutsch </a></li>\n        <li><a href=\"./README-GR.md\"> Ελληνικά </a></li>\n        <li><a href=\"./README-FR.md\"> Français </a></li>\n        <li><a href=\"./README-KO.md\"> 한국어 </a></li>\n        <li><a href=\"./README-JA.md\"> 日本語 </a></li>\n    </ul>\n</details>\n<!-- Do not translate this -->\n\n# നവ  ഓപ്പൺ സോഴ്‌സ് സംഭാവകരെ സ്വാഗതം ചെയ്യുക!!\n\n[![Pull Requests Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat)](http://makeapullrequest.com)\n[![first-timers-only Friendly](https://img.shields.io/badge/first--timers--only-friendly-blue.svg)](https://www.firsttimersonly.com/)\n[![Check Resources](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml/badge.svg)](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml)\n\nഓപ്പൺ സോഴ്‌സിലേക്ക് സംഭാവന ചെയ്യുന്നതിൽ പുതിയ ആളുകൾക്കുള്ള വിഭവങ്ങളുടെ ഒരു പട്ടികയാണിത്..\n\nനിങ്ങൾ കൂടുതൽ ഉറവിടങ്ങൾ കണ്ടെത്തുകയാണെങ്കിൽ, ദയവായി ഒരു പുൾ അഭ്യർത്ഥന സംഭാവന ചെയ്യുക.\n\nനിങ്ങൾക്ക് ചോദ്യങ്ങളോ അഭിപ്രായങ്ങളോ ഉണ്ടെങ്കിൽ, ദയവായി ഒരു പ്രശ്നം സൃഷ്ടിക്കുക.\n\n**ഉള്ളടക്കം**\n\n- [പൊതുവേ ഓപ്പൺ സോഴ്‌സിലേക്ക് സംഭാവന ചെയ്യുന്നു](#contributing-to-open-source-in-general)\n- [നേരിട്ടുള്ള ഗിറ്റ്ഹബ് തിരയലുകൾ](#direct-github-searches)\n- [മോസില്ലയുടെ സംഭാവന ചെയ്യുന്ന ആവാസവ്യവസ്ഥ](#mozillas-contributor-ecosystem)\n- [പുതിയ ഓപ്പൺ സോഴ്‌സ് സംഭാവകർക്കായി ഉപയോഗപ്രദമായ ലേഖനങ്ങൾ](#useful-articles-for-new-open-source-contributors)\n- [പതിപ്പ് നിയന്ത്രണം ഉപയോഗിച്ച്](#using-version-control)\n- [സ്വതന്ത്ര സോഫ്റ്റ്‌വെയറിനെകുറിച്ചുള്ള  പുസ്തകങ്ങൾ ](#open-source-books)\n- [ഓപ്പൺ സോഴ്‌സ് സംഭാവന സംരംഭങ്ങൾ](#open-source-contribution-initiatives)\n- [അനുമതി](#license)\n\n## പൊതുവേ ഓപ്പൺ സോഴ്‌സിലേക്ക് സംഭാവന ചെയ്യുന്നു\n- [The Definitive Guide to Contributing to Open Source](https://www.freecodecamp.org/news/the-definitive-guide-to-contributing-to-open-source-900d5f9f2282/) by [@DoomHammerNG](https://twitter.com/DoomHammerNG)\n- [An Intro to Open Source](https://www.digitalocean.com/community/tutorial_series/an-introduction-to-open-source) - GitHub- ലെ സംഭാവന വിജയത്തിലേക്കുള്ള വഴിയിലേക്ക് നിങ്ങളെ നയിക്കാൻ ഡിജിറ്റൽ ഓഷ്യന്റെ ട്യൂട്ടോറിയലുകൾ.\n- [Issuehub.io](http://issuehub.io/) -ലേബലും ഭാഷയും ഉപയോഗിച്ച്  ഗിറ്റ്ഹബ് പ്രശ്നങ്ങൾ തിരയുന്നതിനുള്ള ഒരു ഉപകരണം.\n- [Code Triage](https://www.codetriage.com/) - ജനപ്രിയ ശേഖരണങ്ങളും ഭാഷ ഫിൽ‌റ്റർ‌ ചെയ്‌ത പ്രശ്നങ്ങളും കണ്ടെത്തുന്നതിനുള്ള മറ്റൊരു ഉപകരണം.\n- [Awesome-for-beginners](https://github.com/MunGell/awesome-for-beginners) - പുതിയ സംഭാവകർക്കായി നല്ല ബഗുകളുള്ള പ്രോജക്റ്റുകൾ ശേഖരിക്കുകയും അവ വിവരിക്കുന്നതിന് ലേബലുകൾ പ്രയോഗിക്കുകയും ചെയ്യുന്ന ഒരു GitHub റിപ്പോ.\n- [Open Source Guides](https://opensource.guide/) - ഒരു ഓപ്പൺ സോഴ്‌സ് പ്രോജക്റ്റ് എങ്ങനെ പ്രവർത്തിപ്പിക്കാമെന്നും സംഭാവന ചെയ്യാമെന്നും അറിയാൻ ആഗ്രഹിക്കുന്ന വ്യക്തികൾ, കമ്മ്യൂണിറ്റികൾ, കമ്പനികൾ എന്നിവയ്‌ക്കായുള്ള വിഭവങ്ങളുടെ ശേഖരണം.\n- [45 Github Issues Dos and Don’ts](https://hackernoon.com/45-github-issues-dos-and-donts-dfec9ab4b612) - ഗിറ്റ്ഹബിൽ ചെയ്യേണ്ടതും ചെയ്യരുതാത്തതും\n- [GitHub Guides](https://guides.github.com/) - GitHub എങ്ങനെ ഫലപ്രദമായി ഉപയോഗിക്കാം എന്നതിനെക്കുറിച്ചുള്ള അടിസ്ഥാന സഹായികൾ.\n- [Contribute to Open Source](https://github.com/danthareja/contribute-to-open-source) - ഒരു സിമുലേഷൻ പ്രോജക്റ്റിലേക്ക് കോഡ് സംഭാവന ചെയ്തുകൊണ്ട്  ഗിറ്റ്ഹബ് വർക്ക്ഫ്ലോ മനസിലാക്കുക.\n- [Linux Foundation's Open Source Guides for the Enterprise](https://www.linuxfoundation.org/resources/open-source-guides/) - ഓപ്പൺ സോഴ്‌സ് പ്രോജക്റ്റുകളിലേക്കുള്ള ലിനക്സ് ഫൗണ്ടേഷന്റെ സഹായികൾ.\n- [CSS Tricks An Open Source Etiquette Guidebook](https://css-tricks.com/open-source-etiquette-guidebook/) - കെന്റ് സി. ഡോഡ്സും സാറാ ഡ്രാസ്നറും എഴുതിയ ഒരു ഓപ്പൺ സോഴ്‌സ് മര്യാദ  പഠന സഹായി.\n- [A to Z Resources for Students](https://github.com/dipakkr/A-to-Z-Resources-for-Students) - കോളേജ് വിദ്യാർത്ഥികൾക്ക് ഒരു പുതിയ കോഡിംഗ് ഭാഷ പഠിക്കാനുള്ള വിഭവങ്ങളുടെയും അവസരങ്ങളുടെയും ക്യൂറേറ്റുചെയ്‌ത പട്ടിക.\n- [Pull Request Roulette](http://www.pullrequestroulette.com/) - ഗിത്തബിൽ ഹോസ്റ്റുചെയ്‌തിരിക്കുന്ന ഓപ്പൺ സോഴ്‌സ് പ്രോജക്റ്റുകളിൽ നിന്നുള്ള അവലോകനത്തിനായി സമർപ്പിച്ച പുൾ അഭ്യർത്ഥനകളുടെ ഒരു ലിസ്റ്റ് ഈ സൈറ്റിൽ ഉണ്ട്.\n- [\"How to Contribute to an Open Source Project on GitHub\" by Egghead.io](https://egghead.io/courses/how-to-contribute-to-an-open-source-project-on-github) - GitHub- ലെ ഓപ്പൺ സോഴ്‌സ് പ്രോജക്റ്റുകളിലേക്ക് എങ്ങനെ സംഭാവന നൽകുന്നത് ആരംഭിക്കാം എന്നതിന്റെ ഘട്ടം ഘട്ടമായുള്ള വീഡിയോ സഹായ.\n- [Contributing to Open Source: A Live Walkthrough from Beginning to End](https://medium.com/@kevinjin/contributing-to-open-source-walkthrough-part-0-b3dc43e6b720) - ഒരു ഓപ്പൺ സോഴ്‌സ് സംഭാവനയുടെ ഈ നടപ്പാത അനുയോജ്യമായ പ്രോജക്റ്റ് തിരഞ്ഞെടുക്കൽ മുതൽ ഒരു പ്രശ്‌നത്തിൽ പ്രവർത്തിക്കുന്നത്, പിആർ ലയിപ്പിക്കുന്നത് വരെ എല്ലാം ഉൾക്കൊള്ളുന്നു.\n- [\"How to Contribute to Open Source Project by\" Sarah Drasner](https://css-tricks.com/how-to-contribute-to-an-open-source-project/) - GitHub- ലെ മറ്റൊരാളുടെ പ്രോജക്റ്റിലേക്ക് ഒരു പുൾ അഭ്യർത്ഥന (PR) സംഭാവന ചെയ്യുന്നതിൽ അവർ ശ്രദ്ധ കേന്ദ്രീകരിക്കുന്നു.\n- [\"How to get started with Open Source by\" Sayan Chowdhury](https://www.hackerearth.com:443/getstarted-opensource/) - തുടക്കക്കാർക്ക് അവരുടെ പ്രിയപ്പെട്ട ഭാഷാ താൽപ്പര്യത്തെ അടിസ്ഥാനമാക്കി ഓപ്പൺ സോഴ്‌സിലേക്ക് സംഭാവന നൽകുന്നതിനുള്ള വിഭവങ്ങൾ ഈ ലേഖനം ഉൾക്കൊള്ളുന്നു.\n- [\"Browse good first issues to start contributing to open source\"](https://github.blog/2020-01-22-browse-good-first-issues-to-start-contributing-to-open-source/) -ഓപ്പൺ സോഴ്‌സിലേക്ക് സംഭാവന നൽകുന്നത് ആരംഭിക്കുന്നതിനുള്ള നല്ല ആദ്യ പ്രശ്‌നങ്ങൾ കണ്ടെത്താൻ GitHub ഇപ്പോൾ നിങ്ങളെ സഹായിക്കുന്നു.\n- [\"How to Contribute to Open Source Project\" by Maryna Z](https://rubygarage.org/blog/how-contribute-to-open-source-projects) - ഈ സമഗ്ര ലേഖനം ബിസിനസ്സുകളിലേക്ക് നയിക്കപ്പെടുന്നു (പക്ഷേ വ്യക്തിഗത സംഭാവകർക്ക് ഇപ്പോഴും ഉപയോഗപ്രദമാണ്) അവിടെ എന്തുകൊണ്ട്, എങ്ങനെ, ഏത് ഓപ്പൺ സോഴ്‌സ് പ്രോജക്റ്റുകൾ സംഭാവന ചെയ്യണം എന്നതിനെക്കുറിച്ച് സംസാരിക്കുന്നു.\n- [\"start-here-guidelines\" by Andrei](https://github.com/zero-to-mastery/start-here-guidelines) -ഓപ്പൺ സോഴ്‌സ് കളിസ്ഥലത്ത് ആരംഭിച്ച് ഓപ്പൺ സോഴ്‌സ് ലോകത്ത് ആരംഭിക്കാൻ ജിറ്റിനെ അനുവദിക്കുന്നു. വിദ്യാഭ്യാസത്തിനും പ്രായോഗിക അനുഭവ ആവശ്യങ്ങൾക്കുമായി പ്രത്യേകിച്ചും രൂപകൽപ്പന ചെയ്തിരിക്കുന്നത്.\n\n## നേരിട്ടുള്ള ഗിറ്റ്ഹബ് തിരയലുകൾ\nഗിറ്റ്ഹബ്- ലേക്ക് സംഭാവന ചെയ്യുന്നതിന് അനുയോജ്യമായ പ്രശ്നങ്ങളിലേക്ക് നേരിട്ട് പോയിന്റുചെയ്യുന്ന ലിങ്കുകൾ തിരയുക.\n- [is:issue is:തുറന്ന ലേബൽ: തുടക്കക്കാരൻ](https://github.com/issues?q=is%3Aissue+is%3Aopen+label%3Abeginner)\n- [is:issue is:തുറന്ന ലേബൽ: എളുപ്പമാണ്](https://github.com/issues?q=is%3Aissue+is%3Aopen+label%3Aeasy)\n- [is:issue is:തുറന്ന ലേബൽ: ആദ്യ തവണ മാത്രം](https://github.com/issues?q=is%3Aissue+is%3Aopen+label%3Afirst-timers-only)\n- [is:issue is:തുറന്ന ലേബൽ:ഗുഡ്-ഫസ്റ്റ്-ബഗ്](https://github.com/issues?q=is%3Aissue+is%3Aopen+label%3Agood-first-bug)\n- [is:issue is:തുറന്ന ലേബൽ:\"നല്ല ആദ്യപ്രശ്നo\"](https://github.com/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22)\n- [is:issue is:തുറന്ന ലേബൽ:സ്റ്റാർട്ടർ](https://github.com/issues?q=is%3Aissue+is%3Aopen+label%3Astarter)\n- [is:issue is:തുറന്ന ലേബൽ:പിടിച്ചെടുക്കാൻ](https://github.com/issues?q=is%3Aissue+is%3Aopen+label%3Aup-for-grabs)\n\n## മോസില്ലയുടെ സംഭാവന ചെയ്യുന്ന ആവാസവ്യവസ്ഥ\n- [Good First Bugs](https://bugzil.la/sw:%22[good%20first%20bug]%22&limit=0) - പദ്ധതിയുടെ ഒരു നല്ല ആമുഖമായി ഡെവലപ്പർമാർ തിരിച്ചറിഞ്ഞ ബഗുകൾ.\n- [Mentored Bugs](https://bugzilla.mozilla.org/buglist.cgi?quicksearch=mentor%3A%40) - ഒരു പരിഹാരത്തിൽ ജോലി ചെയ്യുമ്പോൾ നിങ്ങൾ കുടുങ്ങുമ്പോൾ നിങ്ങളെ സഹായിക്കാൻ IRC- ൽ ഉണ്ടായിരിക്കുന്ന ഒരു ഉപദേശകനെ നിയോഗിച്ചിട്ടുള്ള ബഗുകൾ.\n- [Bugs Ahoy](https://www.joshmatthews.net/bugsahoy/) - ബഗ്സില്ലയിൽ ബഗുകൾ കണ്ടെത്തുന്നതിനായി സമർപ്പിച്ചിരിക്കുന്ന ഒരു സൈറ്റ്.\n- [Firefox DevTools](http://firefox-dev.tools/) - ഫയർഫോക്സ് ബ്രൗസറിലെ ഡവലപ്പർ ടൂളുകൾക്കായി ഫയൽ ചെയ്ത ബഗുകൾക്കായി സമർപ്പിച്ചിരിക്കുന്ന ഒരു സൈറ്റ്.\n- [Start Mozilla](https://twitter.com/StartMozilla) - മോസില്ല ആവാസവ്യവസ്ഥയിൽ പുതുതായി സംഭാവന ചെയ്യുന്നവർക്ക് അനുയോജ്യമായ പ്രശ്നങ്ങളെക്കുറിച്ച് ട്വീറ്റ് ചെയ്യുന്ന ഒരു ട്വിറ്റർ അക്കൗണ്ട്.\n\n## പുതിയ ഓപ്പൺ സോഴ്‌സ് സംഭാവകർക്കായി ഉപയോഗപ്രദമായ ലേഖനങ്ങൾ\n- [How to choose (and contribute to) your first Open Source project](https://github.com/collections/choosing-projects) by [@GitHub](https://github.com/github)\n- [How to find your first Open Source bug to fix](https://www.freecodecamp.org/news/finding-your-first-open-source-project-or-bug-to-work-on-1712f651e5ba/) by [@Shubheksha](https://github.com/Shubheksha)\n- [First Timers Only](https://kentcdodds.com/blog/first-timers-only/) by [@kentcdodds](https://github.com/kentcdodds)\n- [Bring Kindness Back to Open Source](https://web.archive.org/web/20201009150545/https://www.hanselman.com/blog/bring-kindness-back-to-open-source) by [@shanselman](https://github.com/shanselman)\n- [Getting into Open Source for the First Time](https://www.nearform.com/blog/getting-into-open-source-for-the-first-time/) by [@mcdonnelldean](https://github.com/mcdonnelldean)\n- [How to Contribute to Open Source](https://opensource.guide/how-to-contribute/) by [@GitHub](https://github.com/github)\n- [How to Find a Bug in Your Code](https://8thlight.com/blog/doug-bradbury/2016/06/29/how-to-find-bug-in-your-code.html) by [@dougbradbury](https://twitter.com/dougbradbury)\n- [Mastering Markdown](https://guides.github.com/features/mastering-markdown/) by [@GitHub](https://github.com/github)\n- [First mission: Contributors page](https://medium.com/@forCrowd/first-mission-contributors-page-df24e6e70705#.2v2g0no29) by [@forCrowd](https://github.com/forCrowd)\n- [How to make your first Open Source contribution in just 5 minutes](https://www.freecodecamp.org/news/how-to-make-your-first-open-source-contribution-in-just-5-minutes-aaad1fc59c9a/) by [@roshanjossey](https://github.com/Roshanjossey/)\n- [Hacktoberfest 2019: How you can get your free shirt — even if you’re new to coding](https://www.freecodecamp.org/news/hacktoberfest-2018-how-you-can-get-your-free-shirt-even-if-youre-new-to-coding-96080dd0b01b/) by [@quincylarson](https://www.freecodecamp.org/news/author/quincylarson/)\n- [A Bitter Guide To Open Source](https://medium.com/codezillas/a-bitter-guide-to-open-source-a8e3b6a3c1c4) by [@ken_wheeler](https://medium.com/@ken_wheeler)\n- [A junior developer’s step-by-step guide to contributing to Open Source for the first time](https://hackernoon.com/contributing-to-open-source-the-sharks-are-photoshopped-47e22db1ab86) by [@LetaKeane](https://hackernoon.com/u/letakeane)\n- [Learn Git and GitHub Step By Step (on Windows)](https://medium.com/illumination/path-to-learning-git-and-github-be93518e06dc) by [@ows-ali](https://medium.com/@ows_ali)\n- [Why Open Source and How?](https://careerkarma.com/blog/open-source-projects-for-beginners/) by [@james-gallagher](https://careerkarma.com/blog/author/jamesgallagher/)\n- [How to get started with Open Source - By Sayan Chowdhury](https://www.hackerearth.com/getstarted-opensource/)\n- [What open-source should I contribute to](https://kentcdodds.com/blog/what-open-source-project-should-i-contribute-to/) by Kent C. Dodds\n- [An immersive introductory guide to Open-source](https://developeraspire.hashnode.dev/an-immersive-introductory-guide-to-open-source) by [Franklin Okolie](https://twitter.com/DeveloperAspire)\n- [Getting started with contributing to open source](https://stackoverflow.blog/2020/08/03/getting-started-with-contributing-to-open-source/) by [Zara Cooper](https://stackoverflow.blog/author/zara-cooper/)\n- [Beginner's guide to open-source contribution](https://workat.tech/general/article/open-source-contribution-guide-xmhf1k601vdj) by [Sudipto Ghosh](https://github.com/pydevsg)\n- [8 non-code ways to contribute to open source](https://opensource.com/life/16/1/8-ways-contribute-open-source-without-writing-code) by [OpenSource](https://twitter.com/OpenSourceWay)\n\n## പതിപ്പ് നിയന്ത്രണം ഉപയോഗിച്ച്\n- [Think Like (a) Git](http://think-like-a-git.net/) - \"വിപുലമായ തുടക്കക്കാർ\" എന്നതിനായുള്ള ജിറ്റ് ആമുഖം, പക്ഷേ ജിറ്റിനൊപ്പം സുരക്ഷിതമായി പരീക്ഷിക്കുന്നതിനുള്ള ലളിതമായ ഒരു തന്ത്രം നൽകുന്നതിന് ഇപ്പോഴും ബുദ്ധിമുട്ടുകയാണ്.\n- [Try Git](https://try.github.io/) - നിങ്ങളുടെ ബ്രസറിനുള്ളിൽ നിന്ന് 15 മിനിറ്റിനുള്ളിൽ ഗിറ്റ് മനസിലാക്കുക.\n- [Everyday Git](https://git-scm.com/docs/giteveryday) - ദൈനംദിന ഗിറ്റിനായി ഉപയോഗപ്രദമായ ഏറ്റവും കുറഞ്ഞ കമാൻഡുകൾ.\n- [Oh shit, git!](https://ohshitgit.com/) - ഇംഗ്ലീഷിൽ‌ വിവരിച്ചിരിക്കുന്ന പൊതുവായ `git` തെറ്റുകളിൽ‌ നിന്നും എങ്ങനെ രക്ഷപ്പെടാം; ഇതും കാണുക [Dangit, git!](https://dangitgit.com/) for the page without swears.\n- [Atlassian Git Tutorials](https://www.atlassian.com/git/tutorials) -`git` ഉപയോഗിക്കുന്നതിനുള്ള വിവിധ ട്യൂട്ടോറിയലുകൾ.\n- [GitHub Git Cheat Sheet](https://education.github.com/git-cheat-sheet-education.pdf) (PDF)\n- [freeCodeCamp's Wiki on Git Resources](https://forum.freecodecamp.org/t/wiki-git-resources/13136)\n- [GitHub Flow](https://www.youtube.com/watch?v=juLIxo42A_s) (42:06) - ഒരു പുൾ അഭ്യർത്ഥന എങ്ങനെ നടത്താമെന്നതിനെക്കുറിച്ച് ഗിറ്റ്ഹബ് സംവാദം.\n- [GitHub Learning Resources](https://docs.github.com/en/github/getting-started-with-github/git-and-github-learning-resources) -ഗിറ്റ്,ഗിറ്റ്ഹബ് പഠന ഉറവിടങ്ങൾ.\n- [Pro Git](https://git-scm.com/book/en/v2) - സ്കോട്ട് ചാക്കോനും ബെൻ സ്ട്രോബും എഴുതിയതും ആപ്രസ് പ്രസിദ്ധീകരിച്ചതുമായ പ്രോ ജിറ്റ് പുസ്തകം.\n- [Git-it](https://github.com/jlord/git-it-electron) - ഘട്ടം ഘട്ടമായി ഗിറ്റ് ട്യൂട്ടോറിയൽ ഡെസ്ക്ടോപ്പ് അപ്ലിക്കേഷൻ.\n- [Flight Rules for Git](https://github.com/k88hudson/git-flight-rules) -കാര്യങ്ങൾ തെറ്റുമ്പോൾ എന്തുചെയ്യണമെന്നതിനെക്കുറിച്ചുള്ള ഒരു സഹായി .\n- [Git Guide for Beginners in Spanish](https://platzi.github.io/git-slides/#/) - ഗിറ്റ്, ഗിറ്റ്ഹബ് എന്നിവയെക്കുറിച്ചുള്ള സ്ലൈഡുകളുടെ പൂർണ്ണ ഗൈഡ് സ്പാനിഷിൽ . Una guía completa de diapositivas sobre git y GitHub explicadas en Español.\n- [Git Kraken](https://www.gitkraken.com/git-client) - പതിപ്പ് നിയന്ത്രണത്തിനായി വിഷ്വൽ, ക്രോസ്-പ്ലാറ്റ്ഫോം, സംവേദനാത്മക `git` ഡെസ്ക്ടോപ്പ് അപ്ലിക്കേഷൻ.\n- [Git Tips](https://github.com/git-tips/tips) - സാധാരണയായി ഉപയോഗിക്കുന്ന ഗിറ്റ് ടിപ്പുകളുടെയും തന്ത്രങ്ങളുടെയും ശേഖരം.\n- [Git Best Practices](https://sethrobertson.github.io/GitBestPractices/) - പലപ്പോഴും പ്രതിജ്ഞാബദ്ധമാക്കുക, പിന്നീട് തികഞ്ഞത്, ഒരിക്കൽ പ്രസിദ്ധീകരിക്കുക: മികച്ച പരിശീലനങ്ങൾ നേടുക.\n- [Git Interactive Tutorial](https://learngitbranching.js.org/) - ഏറ്റവും ദൃശ്യവും സംവേദനാത്മകവുമായ രീതിയിൽ ഗിറ്റ്  പഠിക്കുക.\n\n## സ്വതന്ത്ര സോഫ്റ്റ്‌വെയറിനെകുറിച്ചുള്ള  പുസ്തകങ്ങൾ \n- [Producing Open Source Software](https://producingoss.com/) -ഓപ്പൺ സോഴ്‌സ് സോഫ്റ്റ്‌വെയർ നിർമ്മിക്കുന്നത് ഓപ്പൺ സോഴ്‌സ് വികസനത്തിന്റെ മാനുഷിക വശത്തെക്കുറിച്ചുള്ള ഒരു പുസ്തകമാണ്. വിജയകരമായ പ്രോജക്ടുകൾ എങ്ങനെ പ്രവർത്തിക്കുന്നു, ഉപയോക്താക്കളുടെയും ഡവലപ്പർമാരുടെയും പ്രതീക്ഷകൾ, സ്വതന്ത്ര സോഫ്റ്റ്വെയറിന്റെ സംസ്കാരം എന്നിവ ഇത് വിവരിക്കുന്നു.\n- [Open Source Book Series](https://opensource.com/resources/ebooks) - ഓപ്പൺ സോഴ്‌സിനെക്കുറിച്ചും വളരുന്ന ഓപ്പൺ സോഴ്‌സ് പ്രസ്ഥാനത്തെക്കുറിച്ചും കൂടുതൽ സൗജന്യ ഇ -ബുക്കുകളുടെ സമഗ്രമായ ലിസ്റ്റ് ഉപയോഗിച്ച് കൂടുതലറിയുക https://opensource.com.\n- [Software Release Practice HOWTO](https://tldp.org/HOWTO/Software-Release-Practice-HOWTO/) - ഈ HOWTO ലിനക്സിനും മറ്റ് ഓപ്പൺ സോഴ്സ് പ്രോജക്റ്റുകൾക്കുമുള്ള നല്ല റിലീസ് രീതികൾ വിവരിക്കുന്നു. ഈ രീതികൾ പിന്തുടരുന്നതിലൂടെ, ഉപയോക്താക്കൾക്ക് നിങ്ങളുടെ കോഡ് നിർമ്മിക്കുന്നതിനും ഉപയോഗിക്കുന്നതിനും കഴിയുന്നത്ര എളുപ്പമാക്കും, കൂടാതെ മറ്റ് ഡവലപ്പർമാർക്ക് നിങ്ങളുടെ കോഡ് മനസ്സിലാക്കാനും അത് മെച്ചപ്പെടുത്തുന്നതിന് നിങ്ങളുമായി സഹകരിക്കാനും കഴിയും.\n- [Open Sources 2.0 : The Continuing Evolution](https://archive.org/details/opensources2.000diborich) (2005) - 1999-ലെ പുസ്തകമായ ഓപ്പൺ സോഴ്‌സ്: വിപ്ളവത്തിൽ നിന്നുള്ള ശബ്ദങ്ങൾ വികസിപ്പിച്ചെടുത്ത പരിണാമ ചിത്രം വരച്ചുകൊണ്ടിരിക്കുന്ന ഇന്നത്തെ ടെക്നോളജി നേതാക്കളിൽ നിന്നുള്ള ഉൾക്കാഴ്ചയുള്ളതും ചിന്തോദ്ദീപകവുമായ ലേഖനങ്ങളുടെ സമാഹാരമാണ് ഓപ്പൺ സോഴ്സ് 2.0..\n- [The Architecture of Open Source Applications](http://www.aosabook.org/en/git.html) - വിതരണം ചെയ്ത വർക്ക്ഫ്ലോകൾ പ്രവർത്തനക്ഷമമാക്കുന്നതിന് കവറുകൾക്ക് കീഴിൽ ജിറ്റിന്റെ വിവിധ വശങ്ങൾ എങ്ങനെ പ്രവർത്തിക്കുന്നുവെന്നും അത് മറ്റുള്ളവയിൽ നിന്ന് എങ്ങനെ വ്യത്യാസപ്പെട്ടിരിക്കുന്നുവെന്നും കാണിക്കുക version control systems (VCSs).\n- [Open Sources: Voices from the Open Source Revolution](https://www.oreilly.com/openbook/opensources/book/) - ഓപ്പൺ സോഴ്സ് പയനിയർമാരിൽ നിന്നുള്ള ഉപന്യാസങ്ങൾ Linus Torvalds (Linux), Larry Wall (Perl), and Richard Stallman (GNU).\n\n## ഓപ്പൺ സോഴ്‌സ് സംഭാവന സംരംഭങ്ങൾ\n- [Up For Grabs](https://up-for-grabs.net/) - തുടക്കക്കാർക്ക് അനുയോജ്യമായ പ്രശ്നങ്ങളുള്ള പ്രോജക്ടുകൾ അടങ്ങിയിരിക്കുന്നു\n- [First Timers Only](https://www.firsttimersonly.com/) - \"ആദ്യമായി വരുന്നവർക്ക് മാത്രം\" എന്ന് ലേബൽ ചെയ്തിട്ടുള്ള ബഗുകളുടെ ഒരു ലിസ്റ്റ്.\n- [First Contributions](https://firstcontributions.github.io/) - 5 മിനിറ്റിനുള്ളിൽ നിങ്ങളുടെ ആദ്യത്തെ ഓപ്പൺ സോഴ്സ് സംഭാവന നൽകുക. തുടക്കക്കാർക്ക് സംഭാവനകളോടെ ആരംഭിക്കാൻ സഹായിക്കുന്ന ഒരു ഉപകരണവും ട്യൂട്ടോറിയലും. [Here](https://github.com/firstcontributions/first-contributions) സൈറ്റിനായുള്ള GitHub സോഴ്സ് കോഡും റിപ്പോസിറ്ററിയിൽ തന്നെ സംഭാവന നൽകാനുള്ള അവസരവുമാണ്.\n- [Hacktoberfest](https://hacktoberfest.digitalocean.com/) - ഓപ്പൺ സോഴ്സ് സംഭാവനകളെ പ്രോത്സാഹിപ്പിക്കുന്നതിനുള്ള ഒരു പ്രോഗ്രാം. ഒക്ടോബർ മാസത്തിൽ കുറഞ്ഞത് 4 പുൾ അഭ്യർത്ഥനകൾ നടത്തി ടി-ഷർട്ടുകളും സ്റ്റിക്കറുകളും പോലുള്ള സമ്മാനങ്ങൾ നേടുക.\n- [24 Pull Requests](https://24pullrequests.com) - 24 പുൾ അഭ്യർത്ഥനകൾ ഡിസംബർ മാസത്തിൽ ഓപ്പൺ സോഴ്സ് സഹകരണം പ്രോത്സാഹിപ്പിക്കുന്നതിനുള്ള ഒരു പദ്ധതിയാണ്.\n- [Ovio](https://ovio.org) - സംഭാവക-സൗഹൃദ പ്രോജക്ടുകളുടെ ക്യൂറേറ്റഡ് തിരഞ്ഞെടുപ്പുള്ള ഒരു പ്ലാറ്റ്ഫോം. It has a [powerful issue search tool](https://ovio.org/issues) and പ്രോജക്റ്റുകളും പ്രശ്നങ്ങളും നിങ്ങൾക്ക് പിന്നീട് സംരക്ഷിക്കാം.\n- [Contribute-To-This-Project](https://github.com/Syknapse/Contribute-To-This-Project) - ലളിതവും എളുപ്പവുമായ പ്രോജക്റ്റുകളിൽ പങ്കെടുത്ത് GitHub ഉപയോഗിക്കുന്നതിന് ആദ്യമായി സംഭാവന ചെയ്യുന്നവരെ സഹായിക്കുന്നതിനുള്ള ഒരു ട്യൂട്ടോറിയലാണിത്.\n- [Open Source Welcome Committee](https://www.oswc.is/) - ഓപ്പൺ സോഴ്‌സിന്റെ അസാധാരണ ലോകത്തിലേക്ക് പുതുതായി വരുന്നവരെ ഓപ്പൺ സോഴ്‌സ് സ്വാഗതസംഘം (OSWC) സഹായിക്കുന്നു. നിങ്ങളുടെ ഓപ്പൺ സോഴ്‌സ് പ്രോജക്‌റ്റുകൾ ഞങ്ങളോടൊപ്പം സമർപ്പിക്കൂ!\n\n## പങ്കെടുക്കാനുള്ള ഓപ്പൺ സോഴ്സ് പ്രോഗ്രാമുകൾ\n\n> ഓപ്പൺ സോഴ്സ് സോഫ്‌റ്റ്‌വെയർ പ്രോജക്‌ടുകളിലേക്ക് സംഭാവന നൽകുന്നതിന് തുടക്കക്കാരായ സംഭാവകരെ ഉപദേഷ്ടാക്കളും ഉറവിടങ്ങളുമായി പൊരുത്തപ്പെടുത്താൻ സഹായിക്കുന്നതിന് ഒരു കമ്മ്യൂണിറ്റി ഹോസ്റ്റ് ചെയ്യുന്ന ഒരു പ്രോഗ്രാം, ഇന്റേൺഷിപ്പ് അല്ലെങ്കിൽ ഫെലോഷിപ്പ്.\n\n- [All Linux Foundation (LF) Mentorships](https://mentorship.lfx.linuxfoundation.org/#projects_all)\n- [Beginner friendly Open Source programs with their timelines](https://github.com/arpit456jain/Open-Source-Programs)\n- [Cloud Native Computing Foundation](https://events.linuxfoundation.org/kubecon-cloudnativecon-north-america/)\n- [FossAsia](https://fossasia.org)\n- [Free Software Foundation (FSF) Internship](https://www.fsf.org/volunteer/internships)\n- [Google Summer of Code](https://summerofcode.withgoogle.com/) - ഓപ്പൺ സോഴ്‌സ് സോഫ്‌റ്റ്‌വെയർ വികസനത്തിലേക്ക് കൂടുതൽ വിദ്യാർത്ഥി ഡെവലപ്പർമാരെ കൊണ്ടുവരുന്നതിൽ ശ്രദ്ധ കേന്ദ്രീകരിച്ച Google പ്രതിവർഷം നടത്തുന്ന പണമടച്ചുള്ള പ്രോഗ്രാം.\n- [Girlscript Summer of Code](https://gssoc.girlscript.tech/) - ഗേൾസ്ക്രിപ്റ്റ് ഫൗണ്ടേഷൻ എല്ലാ വേനൽക്കാലത്തും നടത്തുന്ന മൂന്ന് മാസത്തെ ഓപ്പൺ സോഴ്സ് പ്രോഗ്രാം. നിരന്തര പരിശ്രമത്തിലൂടെ, ഈ മാസങ്ങളിൽ വിദഗ്ധരായ ഉപദേശകരുടെ അങ്ങേയറ്റത്തെ മാർഗ്ഗനിർദ്ദേശത്തിൽ പങ്കെടുക്കുന്നവർ നിരവധി പ്രോജക്ടുകളിലേക്ക് സംഭാവന ചെയ്യുന്നു. അത്തരം എക്സ്പോഷർ ഉപയോഗിച്ച്, വിദ്യാർത്ഥികൾ അവരുടെ വീടിന്റെ സുഖസൗകര്യങ്ങളിൽ നിന്ന് യഥാർത്ഥ ലോക പ്രോജക്ടുകളിലേക്ക് സംഭാവന ചെയ്യാൻ തുടങ്ങുന്നു.\n- [Hacktoberfest](https://hacktoberfest.digitalocean.com)\n- [Hyperledger Mentorship Program](https://wiki.hyperledger.org/display/INTERN) - നിങ്ങൾ ബ്ലോക്ക്ചെയിനിലാണെങ്കിൽ, ഇത് നിങ്ങൾക്കുള്ളതാണ്. നിങ്ങൾക്ക് ഹൈപ്പർലെഡ്ജറിൽ സംഭാവന ചെയ്യാം. ഹൈപ്പർലെഡ്ജർ ഓപ്പൺ സോഴ്‌സ് ഡെവലപ്‌മെന്റിലേക്ക് പ്രായോഗിക എക്സ്പോഷർ നേടാൻ ഈ മെന്റർഷിപ്പ് പ്രോഗ്രാം നിങ്ങളെ അനുവദിക്കുന്നു. ഹൈപ്പർലെഡ്ജർ ഡെവലപ്പേഴ്‌സ് കമ്മ്യൂണിറ്റിയിൽ വളരെ സജീവമായ മെന്റർമാരെ നിങ്ങൾക്ക് അനുവദിക്കും.\n- [LF Networking Mentorship](https://wiki.lfnetworking.org/display/LN/LFN+Mentorship+Program)\n- [Microsoft Reinforcement Learning](https://www.microsoft.com/en-us/research/academic-program/rl-open-source-fest/)\n- [Major League Hacking (MLH) Fellowship](https://fellowship.mlh.io/) - ഓപ്പൺ സോഴ്‌സ് പ്രോജക്‌റ്റുകൾ നിർമ്മിക്കുന്നതോ സംഭാവന ചെയ്യുന്നതോ ആയ ടെക്‌നോളജിസ്റ്റുകൾക്കായി ഒരു റിമോട്ട് ഇന്റേൺഷിപ്പ് ബദൽ.\n- [Open Summer of Code](https://osoc.be/students)\n- [Open Mainframe](https://www.openmainframeproject.org/all-projects/mentorship-program) - ഓപ്പൺ മെയിൻഫ്രെയിം പ്രോജക്റ്റിനും അതിന്റേതായ ഓപ്പൺ സോഴ്‌സ് പ്രോഗ്രാമുണ്ട്, മെയിൻഫ്രെയിം സാങ്കേതികവിദ്യയെക്കുറിച്ചുള്ള അറിവ് വിപുലീകരിക്കാൻ മെൻറികൾക്ക് കഴിയും.\n- [Outreachy](https://www.outreachy.org)\n- [Processing Foundation Internship](https://processingfoundation.org/fellowships/)\n- [Rails Girls Summer of Code](https://railsgirlssummerofcode.org/) - സ്ത്രീകൾക്കും നോൺ-ബൈനറി കോഡർമാർക്കുമുള്ള ഒരു ആഗോള ഫെലോഷിപ്പ് പ്രോഗ്രാം, അവിടെ അവർ നിലവിലുള്ള ഓപ്പൺ സോഴ്‌സ് പ്രോജക്റ്റുകളിൽ പ്രവർത്തിക്കുകയും അവരുടെ കഴിവുകൾ വികസിപ്പിക്കുകയും ചെയ്യുന്നു.\n- [Redox OS Summer of Code](https://www.redox-os.org/rsoc/) - റെഡോക്സ് ഒഎസ് പ്രോജക്റ്റിലേക്കുള്ള സംഭാവനകളുടെ പ്രാഥമിക ഉപയോഗമാണ് റെഡോക്സ് ഒഎസ് സമ്മർ ഓഫ് കോഡ്. Redox OS-ലേക്ക് സംഭാവന ചെയ്യാനുള്ള ആഗ്രഹവും കഴിവും ഇതിനകം പ്രകടിപ്പിച്ച വിദ്യാർത്ഥികളെ തിരഞ്ഞെടുത്തു\n- [Social Summer of Code](https://ssoc.devfolio.co/) - സോഷ്യൽ ഫൗണ്ടേഷൻ വിദ്യാർത്ഥികൾക്ക് ഓപ്പൺ സോഴ്‌സ് സംസ്‌കാരത്തെക്കുറിച്ച് പഠിക്കാനും സമൂഹത്തിൽ ഏർപ്പെടാനും ഈ രണ്ട് മാസത്തെ വേനൽക്കാല പരിപാടി വാഗ്ദാനം ചെയ്യുന്നു. പരിചയസമ്പന്നരായ ഉപദേഷ്ടാക്കളുടെ മാർഗ്ഗനിർദ്ദേശത്തിൽ പങ്കെടുക്കുന്നവർ യഥാർത്ഥ ജീവിത പദ്ധതികളിൽ സംഭാവന ചെയ്യുന്നു.\n- [Season of KDE](https://season.kde.org/) - കെ‌ഡി‌ഇ കമ്മ്യൂണിറ്റി ഹോസ്റ്റുചെയ്യുന്ന കെ‌ഡി‌ഇയുടെ സീസൺ, ലോകമെമ്പാടുമുള്ള എല്ലാ വ്യക്തികൾക്കും വേണ്ടിയുള്ള ഒരു ഔട്ട്‌റീച്ച് പ്രോഗ്രാമാണ്. സ്വതന്ത്രവും ഓപ്പൺ സോഴ്‌സ് സോഫ്‌റ്റ്‌വെയറും വികസിപ്പിക്കുന്ന ഒരു അന്തർദേശീയ സ്വതന്ത്ര സോഫ്റ്റ്‌വെയർ കമ്മ്യൂണിറ്റിയാണ് കെഡിഇ, സീസൺ ഓഫ് കെഡിഇ പ്രോഗ്രാമിലൂടെ നിങ്ങൾക്ക് കെഡിഇയിലേക്ക് സംഭാവന നൽകാം.\n## അനുമതി \n<a rel=\"license\" href=\"https://creativecommons.org/licenses/by-sa/4.0/\"><img alt=\"Creative Commons License\" style=\"border-width:0\" src=\"https://licensebuttons.net/l/by-sa/4.0/88x31.png\" /></a><br />ഈ പ്രവൃത്തിക്ക് ലൈസൻസ് നൽകിയിരിക്കുന്നത്<a rel=\"license\" href=\"https://creativecommons.org/licenses/by-sa/4.0/\">Creative Commons Attribution-ShareAlike 4.0 International License</a>.\n"
  },
  {
    "path": "README-MR.md",
    "content": "<!-- Do not translate this -->\n<details>\n<summary>\n<strong> हा मार्गदर्शक इतर भाषांमध्ये वाचा </strong>\n</summary>\n    <ul>\n        <li><a href=\"./README.md\"> English </a></li>\n        <li><a href=\"./README-MR.md\"> मराठी </a></li>\n        <li><a href=\"./README-BN.md\"> বাংলা </a></li>\n        <li><a href=\"./README-CN.md\"> 中文 </a></li>\n        <li><a href=\"./README-RU.md\"> русский </a></li>\n        <li><a href=\"./README-RO.md\"> Românesc </a></li>\n        <li><a href=\"./README-IT.md\"> Italiano </a></li>\n        <li><a href=\"./README-ES.md\"> Español </a></li>\n        <li><a href=\"./README-pt-BR.md\"> Português (BR) </a></li>\n        <li><a href=\"./README-DE.md\"> Deutsch </a></li>\n        <li><a href=\"./README-GR.md\"> Ελληνικά </a></li>\n        <li><a href=\"./README-FR.md\"> Français </a></li>\n        <li><a href=\"./README-KO.md\"> 한국어 </a></li>\n        <li><a href=\"./README-JA.md\"> 日本語 </a></li>\n        <li><a href=\"./README-HI.md\">हिंदी</a></li>\n    </ul>\n</details>\n<!-- Do not translate this -->\n\n# आपले स्वागत आहे नवख्या ओपन सोर्स सहयोगी!\n\n[![Pull Requests Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat)](http://makeapullrequest.com)\n[![first-timers-only Friendly](https://img.shields.io/badge/first--timers--only-friendly-blue.svg)](https://www.firsttimersonly.com/)\n[![Check Resources](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml/badge.svg)](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml)\n\nओपन सोर्समध्ये सहयोग देण्यासाठी नवीन असलेल्या लोकांच्या संसाधनांची ही सूची आहे.\n\nआपल्याला अतिरिक्त संसाधने आढळल्यास, कृपया पुल विनंतीनी सहयोग द्या.\n\nआपल्याकडे प्रश्न किंवा टिप्पण्या असल्यास कृपया एक समस्या तयार करा.\n\n**सामग्री**\n\n- [सर्वसाधारणपणे ओपन सोर्समध्ये योगदान देणे](#सर्वसाधारणपणे-ओपन-सोर्समध्ये-योगदान-देणे)\n- [डायरेक्ट गिटहब शोध](#डायरेक्ट-गिटहब-शोध)\n- [मोज़िलाची योगदानकर्ता पर्यावरणीय प्रणाली](#मोज़िला-योगदानकर्ता-पर्यावरणीय-प्रणाली)\n- [नवीन ओपन सोर्स योगदानकर्त्यांसाठी उपयुक्त लेख](#नवीन-ओपन-सोर्स-योगदानकर्त्यांसाठी-उपयुक्त-लेख)\n- [आवृत्ती नियंत्रण वापरणे](#आवृत्ती-नियंत्रण-वापरणे)\n- [ओपन सोर्स पुस्तके](#ओपन-सोर्स-पुस्तके)\n- [ओपन सोर्स योगदान उपक्रम](#ओपन-सोर्स-योगदान-उपक्रम)\n- [परवाना](#परवाना)\n\n## सर्वसाधारणपणे ओपन सोर्समध्ये योगदान देणे\n- [The Definitive Guide to Contributing to Open Source](https://www.freecodecamp.org/news/the-definitive-guide-to-contributing-to-open-source-900d5f9f2282/) द्वारा [@DoomHammerNG](https://twitter.com/DoomHammerNG)\n- [An Intro to Open Source](https://www.digitalocean.com/community/tutorial_series/an-introduction-to-open-source) - येथे गिटहबवर योगदानाच्या यशासाठी आपल्या मार्गदर्शकासाठी डिजिटलओशन मधील शिकवण्या.\n- [Issuehub.pro](http://issuehub.pro/) - लेबल आणि भाषेद्वारे गिटहब समस्या शोधण्याचे एक साधन.\n- [Code Triage](https://www.codetriage.com/) - आणखी एक, खरोखर छान, लोकप्रिय रेपो व भाषेद्वारे फिल्टर केलेले प्रश्न शोधण्याचे साधन.\n- [Awesome-for-beginners](https://github.com/MunGell/awesome-for-beginners) - नवीन योगदानकर्त्यांसाठी चांगल्या बगसह प्रोजेक्ट्स एकत्रित करणारे आणि त्यांचे वर्णन करण्यासाठी लेबले लागू करणारे एक गिटहब रेपो.\n- [Open Source Guides](https://opensource.guide/) - लोक, समुदाय आणि कंपन्यांना ओपन सोर्स प्रोजेक्ट कसे वापरायचे आणि योगदान कसे द्यायचे हे शिकू इच्छिणाऱ्यांसाठी स्त्रोतांचे संग्रह.\n- [45 Github Issues Dos and Don’ts](https://hackernoon.com/45-github-issues-dos-and-donts-dfec9ab4b612) - गिटहब वर करा आणि काय करू नका.\n- [GitHub Guides](https://docs.github.com/en) - गिटहब प्रभावीपणे कसे वापरावे याबद्दल मूलभूत मार्गदर्शक.\n- [Contribute to Open Source](https://github.com/danthareja/contribute-to-open-source) - सिम्युलेशन प्रोजेक्टमध्ये कोडचे योगदान देऊन गिटहब चा कार्यप्रवाह शिकून घ्या.\n- [Linux Foundation's Open Source Guides for the Enterprise](https://www.linuxfoundation.org/resources/open-source-guides) - लिनक्स फाऊंडेशनचे ओपन सोर्स प्रकल्पांसाठी मार्गदर्शक.\n- [CSS Tricks An Open Source Etiquette Guidebook](https://css-tricks.com/open-source-etiquette-guidebook/) - केंट सी. डॉड्स आणि सारा ड्रॅसनर यांनी लिहिलेले ओपन सोर्स शिष्टाचार मार्गदर्शक पुस्तिका.\n- [A to Z Resources for Students](https://github.com/dipakkr/A-to-Z-Resources-for-Students) - नवीन कोडींग भाषा शिकण्यासाठी महाविद्यालयीन विद्यार्थ्यांसाठी स्त्रोत आणि संधींची निवडलेली यादी.\n- [Pull Request Roulette](http://www.pullrequestroulette.com/) - या साइटवर गिटहब वर आयोजित केलेल्या ओपन सोर्स प्रकल्पांच्या पुनरावलोकनासाठी ज़मा केलेल्या पुल विनंत्यांची यादी आहे.\n- [\"How to Contribute to an Open Source Project on GitHub\" by Egghead.io](https://egghead.io/courses/how-to-contribute-to-an-open-source-project-on-github) - गिटहबवरील ओपन सोर्स प्रोजेक्टमध्ये सहयोग देणे कसे सुरू करावे याचे क्रमाक्रमाचे व्हिडिओ मार्गदर्शक.\n- [Contributing to Open Source: A Live Walkthrough from Beginning to End](https://medium.com/@kevinjin/contributing-to-open-source-walkthrough-part-0-b3dc43e6b720) - मुक्त स्त्रोताच्या योगदानाची ही वॉकथ्रू योग्य प्रकल्प निवडणे, एखाद्या समस्येवर काम करणे, पीआर विलीन होण्यापर्यंत सर्वकाही व्यापते.\n- [\"How to Contribute to Open Source Project\" by Sarah Drasner](https://css-tricks.com/how-to-contribute-to-an-open-source-project/) - ते गिटहबवरील कोणाच्यातरी प्रकल्पात पुल रिक्वेस्ट (पीआर) देण्याच्या योगदानावर भर देत आहेत.\n- [\"How to get started with Open Source\" by Sayan Chowdhury](https://www.hackerearth.com/getstarted-opensource/) - या लेखात नवशिक्यांसाठी त्यांच्या आवडत्या भाषेच्या स्वारस्यावर आधारित ओपन सोर्ससाठी योगदान देण्याच्या संसाधनांचा समावेश आहे.\n- [\"Browse good first issues to start contributing to open source\"](https://github.blog/2020-01-22-browse-good-first-issues-to-start-contributing-to-open-source/) - ओपन सोर्समध्ये योगदान देणे सुरू करण्यासाठी आता गिटहब आपल्याला प्रथम चांगल्या समस्या शोधण्यात मदत करते.\n- [\"How to Contribute to Open Source Project\" by Maryna Z](https://rubygarage.org/blog/how-contribute-to-open-source-projects) - हा विस्तृत लेख व्यवसायाकडे निर्देशित आहे (परंतु वैयक्तिक योगदानकर्त्यांसाठी अद्याप उपयुक्त आहे) जिथे ते कशासाठी, कसे आणि कोणत्या ओपन सोर्स प्रकल्पांमध्ये योगदान द्यावे याबद्दल चर्चा केली आहे.\n- [\"start-here-guidelines\" by Andrei](https://github.com/zero-to-mastery/start-here-guidelines) -\nओपनसोर्सच्या खेळाच्या मैदानापासून सुरू होण्यास ओपनसोर्सच्या जगात जाऊ या. विशेषतः शिक्षण आणि व्यावहारिक अनुभवाच्या उद्देशाने रचलेले.\n- [\"Getting Started with Open Source\" by NumFocus](https://github.com/numfocus/getting-started-with-open-source) - योगदानींच्या अडथळा पार पाडण्यासाठी एक गिटहब रेपो.\n- [\"Opensoure-4-everyone\" by Chryz-hub ](https://github.com/chryz-hub/opensource-4-everyone) - ओपन सोर्सशी संबंधित सगळया वस्तूंची एक गिटहब रेपो. हा प्रोजेक्ट गिटहब सदस्यत्व द्रुश्यमानता, सराव, मूलभूत व प्रगतीक गिट कम्मांड, ओपन सोर्समध्ये सुरु करणे आणि बरंच काही यांच्यात मदत करतो.\n- [\"Open Advice\"](http://open-advice.org/) - विविध प्रकारच्या मोफत सॉफ्टवेअर प्रकल्पांचा ज्ञान संग्रह. ४२ प्रमुख योगदानकर्त्यांना त्यांनी कशी सुरुवात केली हे जाणून घ्यायला काय आवडले असते या प्रश्नाचे उत्तर दिले आहे जेणेकरून तुम्हाला कसे आणि कुठे योगदान द्यायचे हे कळते.\n- [\"GitHub Learning Lab\"](https://lab.github.com/) - गिटहब लर्निंग लॅबसह आपली कौशल्ये वाढवा. आमचे मैत्रीपूर्ण बॉट तुम्हाला कोणत्याही वेळी आवश्यक कौशल्ये शिकण्यासाठी मनोरंजक, व्यावहारिक प्रकल्पांच्या मालिकेत घेऊन जाईल - आणि मार्गात उपयुक्त अभिप्राय सामायिक करा.\n- [\"Ten simple rules for helping newcomers become contributors to open projects\"](https://journals.plos.org/ploscompbiol/article?id=10.1371/journal.pcbi.1007296) - या लेखात अनेक समुदायांचा अभ्यास आणि सदस्य, नेते आणि निरीक्षकांच्या अनुभवांवर आधारित नियम समाविष्ट आहेत.\n\n## डायरेक्ट गिटहब शोध\nगिटहब वर सहयोग देण्यासाठी थेट योग्य मुद्द्यांकडे निर्देश करणारे दुवे शोधा.\n- [is:issue is:open label:beginner](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Abeginner&type=issues)\n- [is:issue is:open label:easy](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Aeasy&type=issues)\n- [is:issue is:open label:first-timers-only](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Afirst-timers-only&type=issues)\n- [is:issue is:open label:good-first-bug](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Agood-first-bug&type=issues)\n- [is:issue is:open label:\"good first issue\"](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22&type=issues)\n- [is:issue is:open label:starter](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Astarter&type=issues)\n- [is:issue is:open label:up-for-grabs](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Aup-for-grabs&type=issues)\n\n## मोज़िला योगदानकर्ता पर्यावरणीय प्रणाली\n- [Good First Bugs](https://bugzilla.mozilla.org/buglist.cgi?quicksearch=sw:%22[good%20first%20bug]%22&limit=0) - विकसकांनी प्रकल्पाची चांगली ओळख म्हणून ओळखले बग्स.\n- [MDN Web Docs](https://developer.mozilla.org/en-US/docs/MDN/Contribute) - सामग्री समस्या आणि प्लॅटफॉर्म बगचे निराकरण करून वेब प्लॅटफॉर्मचे दस्तऐवजीकरण करण्यासाठी एमडीएन वेब डॉक्स संघाला मदत करा.\n- [Mentored Bugs](https://bugzilla.mozilla.org/buglist.cgi?quicksearch=mentor%3A%40) - जेव्हा आपण फिक्सवर काम करत असताना अडखळलात तेव्हा आपल्याला मदत करण्यासाठी आयआरसी वरील सल्लागारांना नियुक्त केलेला असा बग.\n- [Bugs Ahoy](https://www.joshmatthews.net/bugsahoy/) - बगज़िला वर बग शोधण्यासाठी समर्पित साइट.\n- [Firefox DevTools](http://firefox-dev.tools/) - फायरफॉक्स ब्राउझरमध्ये विकसक साधनांसाठी दाखल केलेल्या बगसाठी समर्पित साइट.\n- [Start Mozilla](https://twitter.com/StartMozilla) - एक ट्विटर अकाऊंट जे मोज़िला प्रणालीमध्ये नवीन योगदानकर्त्यांसाठी समस्यांची ट्वीट करते.\n\n## नवीन ओपन सोर्स योगदानकर्त्यांसाठी उपयुक्त लेख\n- [How to choose (and contribute to) your first Open Source project](https://github.com/collections/choosing-projects) द्वारा [@GitHub](https://github.com/github)\n- [How to find your first Open Source bug to fix](https://www.freecodecamp.org/news/finding-your-first-open-source-project-or-bug-to-work-on-1712f651e5ba/) द्वारा [@Shubheksha](https://github.com/Shubheksha)\n- [First Timers Only](https://kentcdodds.com/blog/first-timers-only) द्वारा [@kentcdodds](https://github.com/kentcdodds)\n- [Bring Kindness Back to Open Source](https://web.archive.org/web/20201009150545/https://www.hanselman.com/blog/bring-kindness-back-to-open-source) द्वारा [@shanselman](https://github.com/shanselman)\n- [Getting into Open Source for the First Time](https://www.nearform.com/blog/getting-into-open-source-for-the-first-time/) द्वारा [@mcdonnelldean](https://github.com/mcdonnelldean)\n- [How to Contribute to Open Source](https://opensource.guide/how-to-contribute/) द्वारा [@GitHub](https://github.com/github/opensource.guide)\n- [How to Find a Bug in Your Code](https://8thlight.com/insights/how-to-find-a-bug-in-your-code) द्वारा [@dougbradbury](https://twitter.com/dougbradbury)\n- [Mastering Markdown](https://docs.github.com/features/mastering-markdown/) द्वारा [@GitHub](https://github.com/github/docs)\n- [First mission: Contributors page](https://forcrowd.medium.com/first-mission-contributors-page-df24e6e70705#.2v2g0no29) by [@forCrowd](https://github.com/forCrowd)\n- [How to make your first Open Source contribution in just 5 minutes](https://www.freecodecamp.org/news/how-to-make-your-first-open-source-contribution-in-just-5-minutes-aaad1fc59c9a/) द्वारा [@roshanjossey](https://github.com/Roshanjossey/)\n- [Hacktoberfest 2019: How you can get your free shirt — even if you’re new to coding](https://www.freecodecamp.org/news/hacktoberfest-2018-how-you-can-get-your-free-shirt-even-if-youre-new-to-coding-96080dd0b01b/) द्वारा [@quincylarson](https://www.freecodecamp.org/news/author/quincylarson/)\n- [A Bitter Guide To Open Source](https://medium.com/codezillas/a-bitter-guide-to-open-source-a8e3b6a3c1c4) द्वारा [@ken_wheeler](https://medium.com/@ken_wheeler)\n- [A junior developer’s step-by-step guide to contributing to Open Source for the first time](https://hackernoon.com/contributing-to-open-source-the-sharks-are-photoshopped-47e22db1ab86) द्वारा [@LetaKeane](https://hackernoon.com/u/letakeane)\n- [Learn Git and GitHub Step By Step (on Windows)](https://medium.com/illumination/path-to-learning-git-and-github-be93518e06dc) द्वारा [@ows-ali](https://medium.com/@ows_ali)\n- [Why Open Source and How?](https://careerkarma.com/blog/open-source-projects-for-beginners/) द्वारा [@james-gallagher](https://careerkarma.com/blog/author/jamesgallagher/)\n- [How to get started with Open Source - By Sayan Chowdhury](https://www.hackerearth.com/getstarted-opensource/)\n- [What open-source should I contribute to](https://kentcdodds.com/blog/what-open-source-project-should-i-contribute-to/) द्वारा [@kentcdodds](https://github.com/kentcdodds)\n- [Getting started with contributing to open source](https://stackoverflow.blog/2020/08/03/getting-started-with-contributing-to-open-source/) द्वारा [Zara Cooper](https://stackoverflow.blog/author/zara-cooper/)\n- [Beginner's guide to open-source contribution](https://workat.tech/general/article/open-source-contribution-guide-xmhf1k601vdj) द्वारा [Sudipto Ghosh](https://github.com/pydevsg)\n- [8 non-code ways to contribute to open source](https://opensource.com/life/16/1/8-ways-contribute-open-source-without-writing-code) द्वारा [OpenSource](https://twitter.com/OpenSourceWay)\n\n## आवृत्ती नियंत्रण वापरणे\n- [Think Like (a) Git](https://think-like-a-git.net/) - \"प्रगत नवशिक्यांसाठी\" गिट परिचय, परंतु गिटचा सुरक्षितपणे प्रयोग करण्यासाठी आपल्याला एक सोपी रणनीती देण्यासाठी आपण अद्याप धडपडत आहात.\n- [Try Git](https://docs.github.com/en/get-started/quickstart/set-up-git) - आपल्या ब्राउझरमधून १५ मिनिटांत गिट विनामूल्य शिका.\n- [Everyday Git](https://git-scm.com/docs/giteveryday) - दररोज गिटसाठी उपयुक्त कमांड्सचा एक सेट.\n- [Oh shit, git!](https://ohshitgit.com/) - साध्या इंग्रजीत वर्णन केलेल्या `git` सामान्य चुकांमधून कसे मुक्त व्हावे; देखील पहा [Dangit, git!](https://dangitgit.com/) शपथ न देता पृष्ठासाठी.\n- [Atlassian Git Tutorials](https://www.atlassian.com/git/tutorials) - `git` वापरण्यावरील विविध ट्यूटोरियल\n- [GitHub Git Cheat Sheet](https://education.github.com/git-cheat-sheet-education.pdf) (पीडीएफ)\n- [freeCodeCamp's Wiki on Git Resources](https://forum.freecodecamp.org/t/wiki-git-resources/13136)\n- [GitHub Flow](https://www.youtube.com/watch?v=juLIxo42A_s) (४२:०६) - पुल विनंती कशी करावी याबद्दल गिटहब चर्चा.\n- [GitHub Learning Resources](https://docs.github.com/en/free-pro-team@latest/github/getting-started-with-github/git-and-github-learning-resources) - गिट आणि गिटहब शिक्षण संसाधने.\n- [Pro Git](https://git-scm.com/book/en/v2) - स्कॉट चाकॉन आणि बेन स्ट्रॉब यांनी लिहिलेले आणि एप्रेस यांनी प्रकाशित केलेले संपूर्ण प्रो गिट पुस्तक.\n- [Git-it](https://github.com/jlord/git-it-electron) - क्रमाक्रमाने गिट शिक्षणासाठी डेस्कटॉप ॲप.\n- [Flight Rules for Git](https://github.com/k88hudson/git-flight-rules) - जेव्हा गोष्टी चुकतात तेव्हा काय करावे याबद्दल मार्गदर्शक.\n- [Git Guide for Beginners in Spanish](https://platzi.github.io/git-slides/#/) - गिट आणि गिटहबबद्दलच्या स्लाइड्सचे संपूर्ण मार्गदर्शक स्पॅनिश मध्ये स्पष्टीकरण.\n- [Git Kraken](https://www.gitkraken.com/git-client) - आवृत्ती नियंत्रणासाठी व्हिज्युअल, क्रॉस-प्लॅटफॉर्म आणि परस्परसंवादी `git` डेस्कटॉप अनुप्रयोग.\n- [Git Tips](https://github.com/git-tips/tips) - सर्वाधिक वापरल्या जाणार्‍या गिट टिप्स आणि युक्त्यांचा संग्रह.\n- [Git Best Practices](https://sethrobertson.github.io/GitBestPractices/) - नेहमी कमिट करा, नंतर परिपूर्ण करा, एकदा प्रकाशित करा: गीट सर्वोत्तम सराव.\n- [Git Interactive Tutorial](https://learngitbranching.js.org/) - सर्वात दृश्यास्पद आणि संवादी मार्गाने गिट शिकून घ्या.\n- [Complete Git and GitHub Tutorial](https://www.youtube.com/watch?v=apGV9Kg7ics) (१:१२:३९) - पूर्ण गिट आणि गिटहब वॉकथ्रू द्वारा [Kunal Kushwaha](https://www.youtube.com/channel/UCBGOUQHNNtNGcGzVq5rIXjw).\n\n## ओपन सोर्स पुस्तके\n- [Producing Open Source Software](https://producingoss.com/) - ओपन सोर्स सॉफ्टवेअर तयार करणे हे ओपन सोर्स डेव्हलपमेंटच्या मानवी बाजूचे एक पुस्तक आहे. हे यशस्वी प्रकल्प कसे चालवतात, वापरकर्त्यांची आणि विकसकांच्या अपेक्षा आणि विनामूल्य सॉफ्टवेअरची संस्कृती यांचे वर्णन करते.\n- [Open Source Book Series](https://opensource.com/resources/ebooks) - https://opensource.com वरून विनामूल्य ईपुस्तकांच्या विस्तृत सूचीसह ओपन सोर्स आणि वाढती ओपन सोर्स चळवळ याबद्दल अधिक जाणून घ्या.\n- [Software Release Practice HOWTO](https://tldp.org/HOWTO/Software-Release-Practice-HOWTO/) - हे \"हाऊ-टू\" लिनक्स आणि इतर ओपन-सोर्स प्रकल्पांसाठी चांगल्या रीलिझ पद्धतींचे वर्णन करते. या पद्धतींचे अनुसरण करून, वापरकर्त्यांनी आपला कोड तयार करणे आणि त्याचा वापर करणे आणि अन्य विकसकांसाठी आपला कोड समजून घेणे आणि त्या सुधारण्यासाठी आपल्याला सहकार्य करणे शक्य तितके सोपे कराल.\n- [Open Sources 2.0 : The Continuing Evolution](https://archive.org/details/opensources2.000diborich) (२००५) - ओपन सोर्स २.० हा आजच्या तंत्रज्ञानाच्या नेत्यांमधील अंतर्ज्ञानी आणि विचारवंत निबंधांचा संग्रह आहे जो १९९९ साली प्रकाशित झाला. च्या 'ओपन सोर्सः व्हॉईज फ्रॉम द रेव्होल्यूशन' या पुस्तकात विकसित झालेल्या उत्क्रांतीत्मक चित्रांवर रंगत चालला आहे.\n- [The Architecture of Open Source Applications](http://www.aosabook.org/en/git.html) - वितरित वर्कफ्लो सक्षम करण्यासाठी कव्हर अंतर्गत गिटचे विविध घटक कसे कार्य करतात आणि ते इतर आवृत्ती नियंत्रण प्रणाली (व्हीसीएस) पासून कसे वेगळे आहेत ते दर्शवा.\n- [Open Sources: Voices from the Open Source Revolution](https://www.oreilly.com/openbook/opensources/book/) - लिनस टोरवाल्ड्स (लिनक्स), लॅरी वॉल (पर्ल), आणि रिचर्ड स्टालमॅन (जीएनयू) सारख्या मुक्त-स्त्रोत प्रणेतांचे निबंध.\n\n## ओपन सोर्स योगदान उपक्रम\n- [Up For Grabs](https://up-for-grabs.net/) - नवशिक्या-अनुकूल समस्यांसह प्रकल्प आहेत\n- [First Contributions](https://firstcontributions.github.io/) - ५ मिनिटांत आपले प्रथम मुक्त स्त्रोत योगदान द्या. योगदानासह प्रारंभ करण्यास नवशिक्यांसाठी मदत करणारे एक साधन आणि ट्यूटोरियल [येथे](https://github.com/firstcontributions/first-contributions) साइटसाठी गिटहब स्त्रोत कोड आहे आणि रेपॉजिटरीमध्येच योगदान देण्याची संधी आहे.\n- [First Timers Only](https://www.firsttimersonly.com/) - \"first-timers-only\" असे लेबल असलेल्या बगची सूची.\n- [Hacktoberfest](https://hacktoberfest.digitalocean.com/) - ओपन सोर्स योगदानास प्रोत्साहित करण्यासाठी एक कार्यक्रम. ऑक्टोबर महिन्यात कमीतकमी ४ पुल विनंत्या करुन टी-शर्ट आणि स्टिकरसारख्या भेटवस्तू मिळवा.\n- [24 Pull Requests](https://24pullrequests.com) - २४ पुल विनंत्या डिसेंबर महिन्यात ओपन सोर्स सहयोगास प्रोत्साहन देण्यासाठी एक प्रकल्प आहे.\n- [Ovio](https://ovio.org) - सहयोगी-अनुकूल प्रकल्पांची क्युरेटरीकृत निवड असलेले एक व्यासपीठ. हे एक [शक्तिशाली समस्या शोध साधन आहे](https://ovio.org/issues) आणि आपण नंतर प्रकल्प आणि समस्या जतन करूया.\n\n## परवाना\n<a rel=\"license\" href=\"https://creativecommons.org/licenses/by-sa/4.0/\"><img alt=\"Creative Commons License\" style=\"border-width:0\" src=\"https://licensebuttons.net/l/by-sa/4.0/88x31.png\" /></a><br />हे काम अंतर्गत परवानाकृत आहे <a>Creative Commons Attribution-ShareAlike 4.0 International License</a>.\n"
  },
  {
    "path": "README-MS.md",
    "content": "<!-- Do not translate this -->\n<details>\n<summary>\n<strong> Read this guide in other languages </strong>\n</summary>\n    <ul>\n        <li><a href=\"./README.md\"> English </a></li>\n        <li><a href=\"./README-MR.md\"> मराठी </a></li>\n        <li><a href=\"./README-BN.md\"> বাংলা </a></li>\n        <li><a href=\"./README-CN.md\"> 中文 </a></li>\n        <li><a href=\"./README-RU.md\"> русский </a></li>\n        <li><a href=\"./README-RO.md\"> Românesc </a></li>\n        <li><a href=\"./README-IT.md\"> Italiano </a></li>\n        <li><a href=\"./README-ES.md\"> Español </a></li>\n        <li><a href=\"./README-pt-BR.md\"> Português (BR) </a></li>\n        <li><a href=\"./README-DE.md\"> Deutsch </a></li>\n        <li><a href=\"./README-GR.md\"> Ελληνικά </a></li>\n        <li><a href=\"./README-FR.md\"> Français </a></li>\n        <li><a href=\"./README-KO.md\"> 한국어 </a></li>\n        <li><a href=\"./README-JA.md\"> 日本語 </a></li>\n    </ul>\n</details>\n<!-- Do not translate this -->\n\n# Selamat datang ke penyumbang sumber terbuka newbie!\n\n[![Pull Requests Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat)](http://makeapullrequest.com)\n[![first-timers-only Friendly](https://img.shields.io/badge/first--timers--only-friendly-blue.svg)](https://www.firsttimersonly.com/)\n[![Check Resources](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml/badge.svg)](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml)\n\nIni adalah senarai sumber untuk orang yang baru dan ingin melibatkan diri dalam menyumbang kepada Sumber Terbuka.\n\nJika anda jumpa sumber tambahan, sila menyumbang dengan membuat satu permintaan tarik('pull request').\n\nJika anda mempunyai soalan atau komen, sila membuat satu isu tentang soalan atau komen tersebut.\n\n**Kandungan**\n- [Menyumbang kepada Sumber Terbuka secara umum](#Menyumbang-kepada-Sumber-Terbuka-secara-umum)\n- [Carian GitHub secara langsung](#Carian-GitHub-secara-langsung)\n- [Ekosistem penyumbang Mozilla](#Ekosistem-penyumbang-Mozilla)\n- [Artikel bermanfaat untuk penyumbang baru dalam Sumber Terbuka](#Artikel-bermanfaat-untuk-penyumbang-baru-dalam-Sumber-Terbuka)\n- [Mengguna Kawalan Versi](#Mengguna-Kawalan-Versi)\n- [Buku untuk Sumber Terbuka](#Buku-untuk-Sumber-Terbuka)\n- [Sumbangan inisiatif Sumber Terbuka](#Sumbangan-inisiatif-Sumber-Terbuka)\n- [Lesen](#Lesen)\n\n## Menyumbang kepada Sumber Terbuka secara umum\n- [The Definitive Guide to Contributing to Open Source](https://www.freecodecamp.org/news/the-definitive-guide-to-contributing-to-open-source-900d5f9f2282/) karya [@DoomHammerNG](https://twitter.com/DoomHammerNG)\n- [An Intro to Open Source](https://www.digitalocean.com/community/tutorial_series/an-introduction-to-open-source) - \nTutorial oleh DigitalOcean untuk membantu anda menuju kejayaan dalam menyumbang di sini di GitHub.\n- [Issuehub.io](http://issuehub.pro/) - alat mencari isu di GitHub melalui label dan bahasa.\n- [Code Triage](https://www.codetriage.com/) - alat yang sangat bagus untuk mencari repositori popular dan isu yang disaring mengikut bahasa.\n- [Awesome-for-beginners](https://github.com/MunGell/awesome-for-beginners) - repo GitHub yang mengumpulkan projek dengan pepijat yang baik untuk penyumbang baru, dan menggunakan label untuk penjelasan.\n- [Open Source Guides](https://opensource.guide/) - Kumpulan sumber untuk individu, komuniti, dan syarikat yang ingin belajar bagaimana menjalankan dan menyumbang kepada projek Sumber Terbuka.\n- [45 Github Issues Dos and Don’ts](https://hackernoon.com/45-github-issues-dos-and-donts-dfec9ab4b612) - Perkara yang patut dilakukan dan Perkara yang tidak patut dilakukan di Github.\n- [GitHub Guides](https://docs.github.com/en) - panduan asas bagaimana menggunakan GitHub secara efektif.\n- [Contribute to Open Source](https://github.com/danthareja/contribute-to-open-source) - Belajar aliran kerja GitHub dengan menyumbang kod  untuk projek simulasi.\n- [Linux Foundation's Open Source Guides for the Enterprise](https://www.linuxfoundation.org/resources/open-source-guides) - Panduan Linux Foundation untuk projek Sumber Terbuka.\n- [CSS Tricks An Open Source Etiquette Guidebook](https://css-tricks.com/open-source-etiquette-guidebook/) - Buku Open Source Etiquette Guidebook, karya Kent C. Dodds dan Sarah Drasner.\n- [A to Z Resources for Students](https://github.com/dipakkr/A-to-Z-Resources-for-Students) - Senarai sumber dan peluang untuk pelajar kolej mempelajari bahasa pengekodan baru.\n- [Pull Request Roulette](http://www.pullrequestroulette.com/) - Laman web ini mempunyai senarai 'pull request' yang dihantar untuk disemak semula milik projek Sumber Terbuka yang dihoskan di Github.\n- [\"How to Contribute to an Open Source Project on GitHub\" by Egghead.io](https://egghead.io/courses/how-to-contribute-to-an-open-source-project-on-github) - Video panduan langkah demi langkah bagaimana untuk mula menyumbang kepada projek Sumber Terbuka di GitHub.\n- [Contributing to Open Source: A Live Walkthrough from Beginning to End](https://medium.com/@kevinjin/contributing-to-open-source-walkthrough-part-0-b3dc43e6b720) - Panduan sumbangan sumber terbuka ini merangkumi segalanya dari memilih projek yang sesuai, menyelesaikan sesuatu masalah, hingga PR digabungkan.\n- [\"How to Contribute to Open Source Project by\" Sarah Drasner](https://css-tricks.com/how-to-contribute-to-an-open-source-project/) - Mereka memberi fokus dan perhatian kepada penyumbang permintaan tarik (Pull Request) untuk projek orang lain di GitHub.\n- [\"How to get started with Open Source by\" Sayan Chowdhury](https://www.hackerearth.com:443/getstarted-opensource/) - Artikel ini merangkumi sumber untuk menyumbang kepada sumber terbuka untuk pemula berdasarkan bahasa yang diminati mereka.\n- [\"Browse good first issues to start contributing to open source\"](https://github.blog/2020-01-22-browse-good-first-issues-to-start-contributing-to-open-source/) - GitHub kini membantu anda mencari masalah pertama yang baik untuk mula menyumbang kepada sumber terbuka.\n- [\"How to Contribute to Open Source Project\" by Maryna Z](https://rubygarage.org/blog/how-contribute-to-open-source-projects) - Artikel secara komprehensif ini ditujukan ke arah perniagaan (tetapi masih berguna untuk penyumbang individu) di mana ia membincangkan mengapa, bagaimana, dan projek sumber terbuka apa yang harus disumbangkan.\n- [\"start-here-guidelines\" by Andrei](https://github.com/zero-to-mastery/start-here-guidelines) -\nMari bermula di dunia Sumber Terbuka, bermula di taman permainan Sumber Terbuka. Direka khas untuk tujuan pendidikan dan pengalaman praktikal.\n\n## Carian GitHub secara langsung\nCari pautan yang mengarahkan secara langsung kepada masalah yang sesuai untuk disumbangkan dalam GitHub.\n- [is:issue is:open label:beginner](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Abeginner)\n- [is:issue is:open label:easy](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Aeasy)\n- [is:issue is:open label:first-timers-only](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Afirst-timers-only)\n- [is:issue is:open label:good-first-bug](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Agood-first-bug)\n- [is:issue is:open label:\"good first issue\"](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3A\"good+first+issue\")\n- [is:issue is:open label:starter](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Astarter)\n- [is:issue is:open label:up-for-grabs](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Aup-for-grabs)\n\n## Ekosistem penyumbang Mozilla\n- [Good First Bugs](https://bugzilla.mozilla.org/buglist.cgi?quicksearch=sw:%22[good%20first%20bug]%22&limit=0) - pepijat yang telah dikenal pasti oleh pemaju sebagai pengenalan yang baik untuk projek ini.\n- [Mentored Bugs](https://bugzilla.mozilla.org/buglist.cgi?quicksearch=mentor%3A%40) - pepijat yang mempunyai mentor yang ditugaskan yang akan berada di IRC untuk membantu anda apabila anda rasa tidak produktif semasa menyelesaikan masalah.\n- [Bugs Ahoy](https://www.joshmatthews.net/bugsahoy/) - laman web yang dikhaskan untuk mencari pepijat di Bugzilla.\n- [Firefox DevTools](http://firefox-dev.tools/) - laman web yang dikhaskan untuk bug yang difailkan untuk alat pembangun('Developer Tools') dalam penyemak imbas('browser') Firefox.\n- [Start Mozilla](https://twitter.com/StartMozilla) - akaun Twitter yang tweet mengenai isu-isu yang sesuai untuk penyumbang baru dalam ekosistem Mozilla.\n\n## Artikel bermanfaat untuk penyumbang baru dalam Sumber Terbuka\n- [How to choose (and contribute to) your first Open Source project](https://github.com/collections/choosing-projects) karya [@GitHub](https://github.com/github)\n- [How to find your first Open Source bug to fix](https://www.freecodecamp.org/news/finding-your-first-open-source-project-or-bug-to-work-on-1712f651e5ba/) karya [@Shubheksha](https://github.com/Shubheksha)\n- [First Timers Only](https://kentcdodds.com/blog/first-timers-only) karya [@kentcdodds](https://github.com/kentcdodds)\n- [Bring Kindness Back to Open Source](https://web.archive.org/web/20201009150545/https://www.hanselman.com/blog/bring-kindness-back-to-open-source) karya [@shanselman](https://github.com/shanselman)\n- [Getting into Open Source for the First Time](https://www.nearform.com/blog/getting-into-open-source-for-the-first-time/) karya [@mcdonnelldean](https://github.com/mcdonnelldean)\n- [How to Contribute to Open Source](https://opensource.guide/how-to-contribute/) karya [@GitHub](https://github.com/github/opensource.guide)\n- [How to Find a Bug in Your Code](https://8thlight.com/insights/how-to-find-a-bug-in-your-code) karya [@dougbradbury](https://twitter.com/dougbradbury)\n- [Mastering Markdown](https://docs.github.com/features/mastering-markdown/) karya [@GitHub](https://github.com/github/docs)\n- [First mission: Contributors page](https://forcrowd.medium.com/first-mission-contributors-page-df24e6e70705#.2v2g0no29) karya [@forCrowd](https://github.com/forCrowd)\n- [How to make your first Open Source contribution in just 5 minutes](https://www.freecodecamp.org/news/how-to-make-your-first-open-source-contribution-in-just-5-minutes-aaad1fc59c9a/) karya [@roshanjossey](https://github.com/Roshanjossey/)\n- [Hacktoberfest 2019: How you can get your free shirt — even if you’re new to coding](https://www.freecodecamp.org/news/hacktoberfest-2018-how-you-can-get-your-free-shirt-even-if-youre-new-to-coding-96080dd0b01b/) karya [@quincylarson](https://www.freecodecamp.org/news/author/quincylarson/)\n- [A Bitter Guide To Open Source](https://medium.com/codezillas/a-bitter-guide-to-open-source-a8e3b6a3c1c4) karya [@ken_wheeler](https://medium.com/@ken_wheeler)\n- [A junior developer’s step-by-step guide to contributing to Open Source for the first time](https://hackernoon.com/contributing-to-open-source-the-sharks-are-photoshopped-47e22db1ab86) karya [@LetaKeane](https://hackernoon.com/u/letakeane)\n- [Learn Git and GitHub Step By Step (on Windows)](https://medium.com/illumination/path-to-learning-git-and-github-be93518e06dc) karya [@ows-ali](https://medium.com/@ows_ali)\n- [Why Open Source and How?](https://careerkarma.com/blog/open-source-projects-for-beginners/) karya [@james-gallagher](https://careerkarma.com/blog/author/jamesgallagher/)\n- [How to get started with Open Source - By Sayan Chowdhury](https://www.hackerearth.com/getstarted-opensource/)\n- [What open-source should I contribute to](https://kentcdodds.com/blog/what-open-source-project-should-i-contribute-to) karya Kent C. Dodds\n\n## Menggunakan Kawalan Versi\n- [Think Like (a) Git](https://think-like-a-git.net/) - Pengenalan Git untuk \"pemula maju\", tetapi masih bersusah-payah, untuk memberi anda strategi mudah untuk bereksperimen dengan selamat dengan git.\n- [Try Git](https://docs.github.com/en/get-started/quickstart/set-up-git) - Belajar Git dalam 15 minit dalam penyemak imbas('browser') anda secara percuma.\n- [Everyday Git](https://git-scm.com/docs/giteveryday) - Satu set perintah minimum yang berguna untuk Everyday Git.\n- [Oh shit, git!](https://ohshitgit.com/) - cara mengatasi kesalahan `git` yang dijelaskan dalam bahasa Inggeris biasa; lihat juga [Dangit, git!](https://dangitgit.com/) untuk halaman tanpa carutan.\n- [Atlassian Git Tutorials](https://www.atlassian.com/git/tutorials) - pelbagai tutorial tentang penggunaan `git`.\n- [GitHub Git Cheat Sheet](https://education.github.com/git-cheat-sheet-education.pdf) (PDF)\n- [freeCodeCamp's Wiki on Git Resources](https://forum.freecodecamp.org/t/wiki-git-resources/13136)\n- [GitHub Flow](https://www.youtube.com/watch?v=juLIxo42A_s) (42:06) - bagaimana menarik permintaan tarik('pull request') diajar oleh GitHub\n- [GitHub Learning Resources](https://docs.github.com/en/free-pro-team@latest/github/getting-started-with-github/git-and-github-learning-resources) - Sumber pembelajaran Git and GitHub.\n- [Pro Git](https://git-scm.com/book/en/v2) - Keseluruhan buku Pro Git, ditulis oleh Scott Chacon dan Ben Straub dan diterbitkan oleh Apress.\n- [Git-it](https://github.com/jlord/git-it-electron) - Langkah demi langkah untuk memuat turun aplikasi Git dalam desktop anda.\n- [Flight Rules for Git](https://github.com/k88hudson/git-flight-rules) - Panduan mengenai apa yang harus dilakukan apabila masalah anda tidak dapat diselesaikan.\n- [Git Guide for Beginners in Spanish](https://platzi.github.io/git-slides/#/) - Panduan lengkap mengenai slaid mengenai git dan GitHub dijelaskan dalam bahasa Sepanyol. Una guía completa de diapositivas sobre git y GitHub explicadas en Español.\n- [Git Kraken](https://www.gitkraken.com/git-client) - Aplikasi desktop `git` visual, lintas platform, dan interaktif untuk kawalan versi.\n- [Git Tips](https://github.com/git-tips/tips) - Koleksi petua dan trik git yang paling biasa digunakan.\n- [Git Best Practices](https://sethrobertson.github.io/GitBestPractices/) - Komit Selalunya, Sempurna Kemudian, Terbitkan Sekali: Git Amalan Terbaik\n- [Git Interactive Tutorial](https://learngitbranching.js.org/) - Belajar Git dengan cara paling visual dan interaktif\n\n## Buku untuk Sumber Terbuka\n- [Producing Open Source Software](https://producingoss.com/) - Menghasilkan Perisian Sumber Terbuka ialah buku mengenai sisi manusia dalam pembangunan Sumber Terbuka. Ini menggambarkan bagaimana projek yang berjaya beroperasi, harapan pengguna dan pembangun, dan budaya perisian percuma.\n- [Open Source Book Series](https://opensource.com/resources/ebooks) - Belajar lebih mendalam mengenai Sumber Terbuka dan pergerakan Sumber Terbuka yang berkembang dengan senarai lengkap eBook percuma dari https://opensource.com.\n- [Software Release Practice HOWTO](https://tldp.org/HOWTO/Software-Release-Practice-HOWTO/) - Ini adalah bagaimana menerangkan amalan pelepasan yang baik untuk Linux dan projek Sumber Terbuka yang lain. Dengan mengikuti amalan ini, anda akan mempermudah pengguna membina kod anda dan menggunakannya, dan agar pembangun lain memahami kod anda dan bekerjasama dengan anda untuk memperbaikinya.\n- [Open Sources 2.0 : The Continuing Evolution](https://archive.org/details/opensources2.000diborich) (2005) - Sumber Terbuka 2.0 adalah koleksi karangan berwawasan dan pemikiran dari pemimpin teknologi masa kini yang terus melukis gambar evolusi yang berkembang dalam buku 1999, Sumber Terbuka: Suara dari Revolusi.\n- [The Architecture of Open Source Applications](http://www.aosabook.org/en/git.html) - Tunjukkan bagaimana pelbagai aspek Git berfungsi di bawah penutup untuk membolehkan aliran kerja diedarkan, dan bagaimana ia berbeza dengan sistem kawalan versi lain (VCS).\n- [Open Sources: Voices from the Open Source Revolution](https://www.oreilly.com/openbook/opensources/book/) - Esei dari perintis sumber terbuka seperti Linus Torvalds (Linux), Larry Wall (Perl), dan Richard Stallman (GNU).\n\n## Sumbangan inisiatif Sumber Terbuka\n- [Up For Grabs](https://up-for-grabs.net/) - Mengandungi isu projek yang mesra penyumbang baru.\n- [First Timers Only](https://www.firsttimersonly.com/) - Senarai pepijat yang dilabel \"first-timer-only\".\n- [First Contributions](https://firstcontributions.github.io/) - Buat sumbangan Sumber Terbuka pertama anda dalam 5 minit. Alat dan tutorial untuk membantu pemula memulakan dengan sumbangan. [Here](https://github.com/firstcontributions/first-contributions) adalah kod sumber GitHub untuk laman web dan peluang untuk memberikan sumbangan ke repositori itu sendiri.\n- [Hacktoberfest](https://hacktoberfest.digitalocean.com/) - Program untuk menggalakkan sumbangan Sumber Terbuka. Dapatkan hadiah seperti t-shirt dan pelekat dengan membuat sekurang-kurangnya 4 permintaan tarik pada bulan Oktober.\n- [24 Pull Requests](https://24pullrequests.com) - 24 permintaan tarik('pull request') adalah projek untuk mempromosikan kolaborasi Sumber Terbuka pada bulan Disember.\n\n## Lesen\n<a rel=\"license\" href=\"https://creativecommons.org/licenses/by-sa/4.0/\"><img alt=\"Creative Commons License\" style=\"border-width:0\" src=\"https://licensebuttons.net/l/by-sa/4.0/88x31.png\" /></a><br />Kerja ini dilesen dan dibawah hak cipta <a rel=\"license\" href=\"https://creativecommons.org/licenses/by-sa/4.0/\">Creative Commons Attribution-ShareAlike 4.0 International License</a>."
  },
  {
    "path": "README-NE.md",
    "content": "<table>\n    <tr>\n        <!-- Do not translate this table -->\n        <td><a href=\"./README.md\"> English </a></td>\n        <td><a href=\"./README-MR.md\"> मराठी </a></td>\n        <td><a href=\"./README-BN.md\"> বাংলা </a></td>\n        <td><a href=\"./README-CN.md\"> 中文 </a></td>\n        <td><a href=\"./README-RU.md\"> русский </a></td>\n        <td><a href=\"./README-RO.md\"> Română </a></td>\n        <td><a href=\"./README-IT.md\"> Italiano </a></td>\n        <td><a href=\"./README-ES.md\"> Español </a></td>\n        <td><a href=\"./README-pt-BR.md\"> Português (BR) </a></td>\n        <td><a href=\"./README-DE.md\"> Deutsch </a></td>\n        <td><a href=\"./README-GR.md\"> Ελληνικά </a></td>\n        <td><a href=\"./README-FR.md\"> Français </a></td>\n        <td><a href=\"./README-TR.md\"> Turkish </a></td>\n        <td><a href=\"./README-NE.md\"> नेपाली </a></td>\n    </tr>\n</table>\n\n# नौसिखिया Open Source योगदानकर्ताहरूलाई स्वागत छ!\n\n[![Pull Requests Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat)](http://makeapullrequest.com)\n[![first-timers-only Friendly](https://img.shields.io/badge/first--timers--only-friendly-blue.svg)](http://www.firsttimersonly.com/)\n[![Check Resources](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml/badge.svg)](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml)\n\nयो Open Source मा योगदान पुर्‍याउन नयाँ भएका व्यक्तिहरूको लागि संसाधनहरूको सूची हो।\n\nयदि तपाईंले थप संसाधनहरू फेला पार्नुभयो भने, कृपया एक pull request योगदान गर्नुहोस्।\n\nयदि तपाईंसँग प्रश्न वा टिप्पणीहरू छन् भने, कृपया एक मुद्दा सिर्जना गर्नुहोस्।\n\n**सामग्रीहरू**\n\n- [सामान्यमा खुला स्रोतमा योगदान](#सामान्यमा-खुला-स्रोतमा-योगदान)\n- [प्रत्यक्ष GitHub खोजीहरू](#प्रत्यक्ष-GitHub-खोजीहरू)\n- [मोजिल्ला योगदानकर्ताको ईकोसिस्टम](#मोजिल्ला-योगदानकर्ताको-ईकोसिस्टम)\n- [नयाँ Open Source योगदानकर्ताहरूको लागि उपयोगी लेखहरू](#नयाँ-Open-Source-योगदानकर्ताहरूको-लागि-उपयोगी-लेखहरू)\n- [संस्करण नियन्त्रण version control प्रयोग गर्दैदै](#संस्करण-नियन्त्रण-version-control-प्रयोग-गर्दैदै)\n- [Open Source पुस्तकहरू](#Open-Source-पुस्तकहरू)\n- [Open Source योगदान पहलहरू](#Open-Source-योगदान-पहलहरू)\n- [लाइसेन्स](#लाइसेन्स)\n\n## सामान्यमा खुला स्रोतमा योगदान\n- [@DoomHammerNG](https://twitter.com/DoomHammerNG)[ द्वारा The Definitive Guide to Contributing to Open Source](https://medium.freecodecamp.org/the-definitive-guide-to-contributing-to-open-source-900d5f9f2282)\n- [An Intro to Open Source](https://www.digitalocean.com/community/tutorial_series/an-introduction-to-open-source) - GITHub मा योगदान  को लागी तपाइँको मार्ग मा मार्गदर्शन गर्न DigitalOcean द्वारा Tutorials\n- [Issuehub.io](http://issuehub.pro/) - लेबल र भाषा द्वारा GitHub मुद्दाहरूको खोजीको लागि एक उपकरण\n- [Code Triage](https://www.codetriage.com/) - अर्को, वास्तवमा राम्रो, लोकप्रिय भण्डारहरू र भाषा द्वारा फिल्टर गरिएको मुद्दाहरू फेला पार्न उपकरण।\n- [Awesome-for-beginners](https://github.com/MunGell/awesome-for-beginners) - एक GitHub repo जसले नयाँ योगदानकर्ताहरूको लागि राम्रो Bug को साथ परियोजनाहरू प्रवर्धन गर्दछ, र तिनीहरूलाई वर्णन गर्न लेबलहरू लागू गर्दछ।\n- [Open Source Guides](https://opensource.guide/) - व्यक्ति, समुदाय, र कम्पनीहरूका लागि स्रोतहरूको  Collection जसले ओपन सोर्स प्रोजेक्ट कसरी चलाउने र कसरी योगदान दिने भनेर जान्न चाहान्छ।\n- [45 Github Issues Dos and Don’ts](https://hackernoon.com/45-github-issues-dos-and-donts-dfec9ab4b612) - Github मा गर्नुहोस् र नगर्नुहोस्।\n- [GitHub मार्गदर्शक](https://docs.github.com/en) - GitHub को प्रभावकारिता कसरी प्रयोग गर्ने भन्ने बारे आधारभूत गाईडहरू।\n- [Contribute to Open Source](https://github.com/danthareja/contribute-to-open-source) - \n एक अनुकार Project मा ​​कोड योगदान गरेर GitHub Workflow सिक्नुहोस्।\n- [Linux Foundation's Open Source Guides for the Enterprise](https://www.linuxfoundation.org/resources/open-source-guides) - लिनक्स फाउन्डेशनका स्रोतहरू ओपन सोर्स प्रोजेक्टहरूमा।\n- [CSS Tricks An Open Source Etiquette Guidebook](https://css-tricks.com/open-source-etiquette-guidebook/) - एक खुला स्रोत शिष्टाचार गाइडबुक, Kent C.Dodds र Sarah Drasner. द्वारा लिखित।\n- [A to Z Resources for Students](https://github.com/dipakkr/A-to-Z-Resources-for-Students) - विद्यार्थीहरूको लागि नयाँ कोडिंग भाषा सिक्न संसाधनहरूको अवसरहरूको list।\n- [Pull Request Roulette](https://blog.devcenter.co/contributing-to-your-first-open-source-project-a-practical-approach-1928c4cbdae) - यस साइटसँग Github मा होस्ट गरिएको ओपन सोर्स प्रोजेक्ट सम्बन्धी review को लागि पेश गरिएको पुल अनुरोधहरूको सूची छ।\n- [\"How to Contribute to an Open Source Project on GitHub\" by Egghead.io](https://egghead.io/courses/how-to-contribute-to-an-open-source-project-on-github) - GitHub मा ओपन सोर्स प्रोजेक्टहरूमा कसरी योगदान पुर्‍याउने भन्ने चरण-देखि-चरण भिडियो गाईड।\n- [Contributing to Open Source: A Live Walkthrough from Beginning to End](https://medium.com/@kevinjin/contributing-to-open-source-walkthrough-part-0-b3dc43e6b720) - खुला स्रोत योगदानको यो वाकथ्रुमा उपयुक्त परियोजना छनौट गर्न, एउटा मुद्दामा काम गर्ने, PR मर्ज हुने सम्मको सबै कुरा समावेश छ।\n- [\"How to Contribute to Open Source Project by\" Sarah Drasner](https://css-tricks.com/how-to-contribute-to-an-open-source-project/) - - तिनीहरू GitHub मा कसैको प्रोजेक्टमा पुल अनुरोध (PR) योगदान पुर्‍याउने नाइट्टी-ग्रिट्टीमा केन्द्रित छन्।\n- [\"How to get started with Open Source by\" Sayan Chowdhury](https://www.hackerearth.com:443/getstarted-opensource/) - यो लेखले शुरुवातहरूको लागि उनीहरूको मनपर्ने भाषा रुचिमा खुला स्रोतको लागि योगदान पुर्‍याउने स्रोतहरू समेट्छ।\n- [\"Browse good first issues to start contributing to open source\"](https://github.blog/2020-01-22-browse-good-first-issues-to-start-contributing-to-open-source/) - GitHub अब तपाईंलाई खुला स्रोतमा योगदान सुरू गर्न राम्रो पहिलो मुद्दाहरू फेला पार्न मद्दत गर्दछ।\n- [\"How to Contribute to Open Source Project\" by Maryna Z](https://rubygarage.org/blog/how-contribute-to-open-source-projects) - यो विस्तृत लेख व्यवसायहरूतर्फ निर्देशित छ (तर अझै व्यक्तिगत योगदानकर्ताहरूको लागि उपयोगी छ) जहाँ यसले किन, कसरी, र कुन खुला स्रोतहरूले योगदान पुर्‍याउने भनेर कुरा गर्दछ।\n- [\"start-here-guidelines\" by Andrei](https://github.com/zero-to-mastery/start-here-guidelines) - Git ओपनसोर्सको दुनियामा सुरु भयो, ओपनसोर्स खेल मैदानमा सुरू भयो। विशेष गरी शिक्षा र व्यावहारिक अनुभव उद्देश्यको लागि डिजाइन गरिएको।\n\n\n## प्रत्यक्ष GitHub खोजीहरू\nlinksहरू खोज्नुहोस् जुन GitHub मा योगदान गर्नको लागि उपयुक्त मुद्दाहरूमा सीधा औंल्याउँछ।\n- [is:issue is:खुला लेबल: शुरुआत](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Abeginner)\n- [is:issue is:खुला लेबल: सजिलो](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Aeasy)\n- [is:issue is:खुला लेबल: पहिलो टाइमर मात्र](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Afirst-timers-only)\n- [is:issue is:खुला लेबल: राम्रो पहिलो बग](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Agood-first-bug)\n- [is:issue is:खुला लेबल: \"राम्रो पहिलो मुद्दा\"](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3A\"good+first+issue\")\n- [is:issue is:खुला लेबल: स्टार्टर](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Astarter)\n- [is:issue is:खुला लेबल: up-for-grabs](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Aup-for-grabs)\n\n## मोजिल्ला योगदानकर्ताको ईकोसिस्टम\n- [राम्रो पहिलो बगहरू](https://bugzilla.mozilla.org/buglist.cgi?quicksearch=sw:%22[good%20first%20bug]%22&limit=0) - बगहरू जुन विकासकर्ताहरूले projectको लागि राम्रो परिचयको रूपमा पहिचान गरे।\n- [Mentored Bugs](https://bugzilla.mozilla.org/buglist.cgi?quicksearch=mentor%3A%40) - बगहरू कि एक सल्लाहकार नियुक्त गरीएको छ जो IRC मा त्यहाँ तपाईंलाई मद्दत गर्न को लागी हुनेछ जब तपाईं एक fixमा काम गर्दा अडी रहन।\n- [Bugs Ahoy](https://www.joshmatthews.net/bugsahoy/) - Bugzillaमा बगहरू फेला पार्न समर्पित साइट।\n- [Firefox DevTools](http://firefox-dev.tools/) - Firefox browserमा विकासकर्ता उपकरणहरूको लागि बगहरू लगाइएको एउटा साइट।\n- [Start Mozilla](https://twitter.com/StartMozilla) - एक ट्विटर खाता जुन मुद्दाहरूको बारेमा ट्वीट गर्दछ मोजिल्ला इकोसिस्टममा नयाँ योगदानकर्ताहरूको लागि फिट।\n\n## नयाँ खुला स्रोत योगदानकर्ताहरूको लागि उपयोगी लेखहरू\n- [कसरी चयन गर्ने (र योगदान) तपाईंको पहिलो खुला स्रोत प्रोजेक्ट](https://github.com/collections/choosing-projects) [@GitHub](https://github.com/github) द्वारा\n- [कसरी तपाईंको पहिलो खुला स्रोत बग पत्ता लगाउने](https://www.freecodecamp.org/news/finding-your-first-open-source-project-or-bug-to-work-on-1712f651e5ba/) [@Shubheksha](https://github.com/Shubheksha) द्वारा ठीक गर्न\n- [पहिलो टाइमरहरू मात्र](https://kentcdodds.com/blog/first-timers-only) [@kentcdodds](https://github.com/kentcdodds) द्वारा\n- [Bring Kindness Back to Open Source](https://web.archive.org/web/20201009150545/https://www.hanselman.com/blog/bring-kindness-back-to-open-source) [@shanselman](https://github.com/shanselman) द्वारा\n- [पहिलो पटक खुला स्रोतमा प्रवेश गर्दै](https://www.nearform.com/blog/getting-into-open-source-for-the-first-time/) [@mcdonnelldean](https://github.com/mcdonnelldean) द्वारा\n- [कसरी खुला स्रोतमा योगदान पुर्‍याउने](https://opensource.guide/how-to-contribute/) [@GitHub](https://github.com/github/opensource.guide) द्वारा\n- [कसरी तपाईंको कोडमा बग खोज्ने](https://8thlight.com/insights/how-to-find-a-bug-in-your-code) [@dougbradbury](https://twitter.com/dougbradbury) द्वारा\n- [Mastering Markdown](https://docs.github.com/features/mastering-markdown/) [@GitHub](https://github.com/github/docs) द्वारा\n- [पहिलो मिशन: योगदानकर्ता पृष्ठ](https://forcrowd.medium.com/first-mission-contributors-page-df24e6e70705#.2v2g0no29) [@forCrowd](https://github.com/forCrowd) द्वारा\n- [कसरी तपाइँको पहिलो खुला स्रोत योगदान गर्न पाँच minutes मिनेट मा](https://www.freecodecamp.org/news/how-to-make-your-first-open-source-contribution-in-just-5-minutes-aaad1fc59c9a/) [@roshanjossey](https://github.com/Roshanjossey/) द्वारा\n- [Hacktoberfest 2019:  कसरी तपाइँ तपाइँको नि: शुल्क शर्ट प्राप्त गर्न सक्नुहुन्छ — यदि तपाइँ कोडिंग गर्न नयाँ हुनुहुन्छ भने पनि।](https://www.freecodecamp.org/news/hacktoberfest-2018-how-you-can-get-your-free-shirt-even-if-youre-new-to-coding-96080dd0b01b/) [@quincylarson](https://www.freecodecamp.org/news/author/quincylarson/) द्वारा\n- [स्रोत खोल्नको लागि bitter गाइड](https://medium.com/codezillas/a-bitter-guide-to-open-source-a8e3b6a3c1c4) [@ken_wheeler](https://medium.com/@ken_wheeler) द्वारा\n- [एक जूनियर विकासकर्ताको चरण-देखि-चरण मार्गनिर्देशन खुला स्रोतमा योगदान गर्नका लागि पहिलो पटक](https://hackernoon.com/contributing-to-open-source-the-sharks-are-photoshopped-47e22db1ab86) [@LetaKeane](https://hackernoon.com/u/letakeane) द्वारा\n- [Git र GitHub स्टेप बाय स्टेप (विन्डोजमा)](https://medium.com/illumination/path-to-learning-git-and-github-be93518e06dc) [@ows-ali](https://medium.com/@ows_ali) द्वारा\n- [किन खुला स्रोत र कसरी?](https://careerkarma.com/blog/open-source-projects-for-beginners/) [@james-gallagher](https://careerkarma.com/blog/author/jamesgallagher/) द्वारा\n- [खुला स्रोतको साथ कसरी सुरू गर्ने - सयान चौधरीबाट](https://www.hackerearth.com/getstarted-opensource/)\n- [के खुला स्रोतमा योगदान गर्न पर्छ](https://kentcdodds.com/blog/what-open-source-project-should-i-contribute-to) Kent C. Dodds द्वारा\n\n## संस्करण नियन्त्रण (version control)प्रयोग गर्दै\n- [Think Like (a) Git](https://think-like-a-git.net/) - \"उन्नत शुरुवातकर्ताहरू\" का लागि गीट परिचय, तर अझै पनि संघर्ष गर्दैछन्, तपाईंलाई गिटसँग सुरक्षित प्रयोग गर्नको लागि सरल रणनीति दिनको लागि।\n- [Try Git](https://docs.github.com/en/get-started/quickstart/set-up-git) - १५  मिनेटमा Git सिक्नुहोस् तपाईको ब्राउजर भित्रबाट नि: शुल्क।\n- [Everyday Git](https://git-scm.com/docs/giteveryday) - Everyday Git का लागि उपयोगी न्यूनतम आदेशहरू।\n- [Oh shit, git!](https://ohshitgit.com/) - - सादा अंग्रेजीमा वर्णन गरिएको सामान्य गिट गल्तीहरूबाट कसरी बाहिर निस्कने; Dangit, git पनि हेर्नुहोस्!; कसम बिना पृष्ठ को लागी [Dangit, git!](https://dangitgit.com/) पनि हेर्नुहोस्।\n- [Atlassian Git Tutorials](https://www.atlassian.com/git/tutorials) - git प्रयोग गर्ने बिभिन्न ट्यूटोरियलहरू\n- [GitHub Git Cheat Sheet](https://education.github.com/git-cheat-sheet-education.pdf) (PDF)\n- [freeCodeCamp's Wiki on Git Resources](https://forum.freecodecamp.org/t/wiki-git-resources/13136)\n- [GitHub Flow](https://www.youtube.com/watch?v=juLIxo42A_s) (42:06) - GitHub एक पुल अनुरोध कसरी गर्ने बारे मा कुरा गर्नुहोस्।\n- [GitHub Learning Resources](https://docs.github.com/en/free-pro-team@latest/github/getting-started-with-github/git-and-github-learning-resources) - Git र GitHub शिक्षा संसाधनहरू।\n- [Pro Git](https://git-scm.com/book/en/v2) - सम्पूर्ण Pro Git book,  Scott Chacon र Ben Straub द्वारा लिखित र Apress द्वारा प्रकाशित।\n- [Git-it](https://github.com/jlord/git-it-electron) - एक पछि अर्को Git tutorial desktop app को लागी।\n- [Flight Rules for Git](https://github.com/k88hudson/git-flight-rules) -  जब चीजहरू गलत हुँदै जान्छ के गर्ने बारे गाईड।\n- [Git Guide for Beginners in Spanish](https://platzi.github.io/git-slides/#/) - Git र GitHub को बारे मा स्लाइड को एक पूर्ण गाइड स्पैनिश मा व्याख्या गरिएको। Una guía completa de diapositivas sobre git y GitHub explicadas en Español.\n- [Git Kraken](https://www.gitkraken.com/git-client) - Visual, cross-platform,र  interactive git desktop application version control को लागी।\n- [Git Tips](https://github.com/git-tips/tips) - प्रयोग गरिएको गिट सुझाव र युक्तिहरूको संग्रह।\n- [Git Best Practices](https://sethrobertson.github.io/GitBestPractices/) - Commit Often, Perfect Later, Publish Once: Git उत्तम अभ्यासहरू।\n- [Git Interactive Tutorial](https://learngitbranching.js.org/) - -धेरै दृश्य र अन्तर्क्रियात्मक तरिकामा Git सिक्नुहोस्।\n\n## Open Source पुस्तकहरू\n- [Producing Open Source Software](https://producingoss.com/) - Producing Open Source Software खुला स्रोत  विकास को मानवीय पक्ष को बारे मा एक पुस्तक हो। यसले कसरी सफल परियोजनाहरू संचालन गर्दछ, प्रयोगकर्ता र विकासकर्ताहरूको अपेक्षाहरू, र नि: शुल्क software संस्कृति वर्णन गर्दछ।\n- [Open Source Book Series](https://opensource.com/resources/ebooks) - Open Source र the growing Open Source movement बारे https://opensource.com बाट नि: शुल्क ईबुकहरूको विस्तृत सूचीको साथ सिक्नुहोस्\n- [Software Release Practice HOWTO](https://tldp.org/HOWTO/Software-Release-Practice-HOWTO/) - यो HOWTO ले linux र अन्य खुला स्रोत परियोजनाहरूको लागि राम्रो रिलीज अभ्यासहरू वर्णन गर्दछ। यी अभ्यासहरू अनुसरण गरेर, तपाईं यसलाई प्रयोगकर्ताको लागि तपाईंको code निर्माण गर्न र यसलाई प्रयोग गर्न सम्भव भएसम्म सजिलो बनाउँनुहुनेछ, र अन्य विकासकर्ताहरूको लागि तपाईंको cpde बुझ्न र यसलाई सुधार गर्न तपाईंलाई सहयोग गर्न।\n- [Open Sources 2.0 : The Continuing Evolution](https://archive.org/details/opensources2.000diborich) (2005) - Open source २.० आजका प्रविधि नेताहरूका अन्तरदृष्टि र सोचाइ जगाउने निबन्धहरूको संग्रह हो जुन  1999 को पुस्तक, Open Source: Voices from the Revolution मा विकास भएको विकासवादी तस्वीरलाई चित्रण गर्न जारी राख्छ।\n- [The Architecture of Open Source Applications](http://www.aosabook.org/en/git.html) - कसरी Git को विभिन्न पक्षहरू distributed workflows सक्षम गर्नको लागि कभरहरू अन्तर्गत कार्य गर्दछन्, र यो कसरी अन्य version control systems (VCSs) भन्दा फरक छ देखाउनुहोस्।\n- [Open Sources: Voices from the Open Source Revolution](https://www.oreilly.com/openbook/opensources/book/) - Open Source अग्रगामीहरू जस्तै Linus Torvalds (Linux), Larry Wall (Perl), and Richard Stallman (GNU) का निबन्धहरू।\n\n## Open Source योगदान पहलहरू\n- [Up For Grabs](https://up-for-grabs.net/) - शुरुआती-मैत्री मुद्दाहरूको साथ Projectहरू समावेश गर्दछ\n- [First Timers Only](https://www.firsttimersonly.com/) - \"first-timers-only\" लेबल गरिएको बगहरूको सूची।\n- [First Contributions](https://firstcontributions.github.io/) - पाँच मिनेटमा तपाईको पहिलो Open Source योगदान गर्नुहोस्। एक उपकरण र tutorial शुरुआतीहरूलाई योगदानका साथ सुरू गर्न मद्दत गर्न। [यहाँ ](https://github.com/firstcontributions/first-contributions) साइटको लागि GitHub Source code छ र repository आफै योगदान पुर्‍याउने अवसर।\n- [Hacktoberfest](https://hacktoberfest.digitalocean.com/) -  Open Source योगदानहरू प्रोत्साहित गर्न एक कार्यक्रम। अक्टूबर महिनामा कम्तिमा 4 pull request गरेर टी-सर्टहरू र स्टिकरहरू जस्ता उपहारहरू कमाउनुहोस्।\n- [24 Pull Requests](https://24pullrequests.com) - चौबीस(24) Pull Request  डिसेम्बर महिनाको अवधिमा Open Source सहयोगलाई बढावा दिने प्रोजेक्ट हो।\n\n## लाइसेन्स\n<a rel=\"license\" href=\"https://creativecommons.org/licenses/by-sa/4.0/\"><img alt=\"Creative Commons License\" style=\"border-width:0\" src=\"https://licensebuttons.net/l/by-sa/4.0/88x31.png\" /></a><br />यो कार्य <a rel=\"license\" href=\"https://creativecommons.org/licenses/by-sa/4.0/\">Creative Commons Attribution-ShareAlike 4.0 International License</a> अन्तर्गत लाइसेन्स प्राप्त छ।"
  },
  {
    "path": "README-NL.md",
    "content": "<!-- Do not translate this -->\n<details>\n<summary>\n<strong> Read this guide in other languages </strong>\n</summary>\n    <ul>\n        <li><a href=\"./README.md\"> English </a></li>\n        <li><a href=\"./README-MR.md\"> मराठी </a></li>\n        <li><a href=\"./README-BN.md\"> বাংলা </a></li>\n        <li><a href=\"./README-CN.md\"> 中文 </a></li>\n        <li><a href=\"./README-RU.md\"> русский </a></li>\n        <li><a href=\"./README-RO.md\"> Românesc </a></li>\n        <li><a href=\"./README-IT.md\"> Italiano </a></li>\n        <li><a href=\"./README-ID.md\"> Indonesia </a></li>\n        <li><a href=\"./README-ES.md\"> Español </a></li>\n        <li><a href=\"./README-pt-BR.md\"> Português (BR) </a></li>\n        <li><a href=\"./README-DE.md\"> Deutsch </a></li>\n        <li><a href=\"./README-HE.md\"> עברית </a></li>\n        <li><a href=\"./README-GR.md\"> Ελληνικά </a></li>\n        <li><a href=\"./README-FR.md\"> Français </a></li>\n        <li><a href=\"./README-TR.md\"> Turkish </a></li>\n        <li><a href=\"./README-KO.md\"> 한국어 </a></li>\n        <li><a href=\"./README-JA.md\"> 日本語 </a></li>\n        <li><a href=\"./README-HI.md\"> हिंदी </a></li>\n        <li><a href=\"./README-FA.md\"> فارسی </a></li>\n        <li><a href=\"./README-UR.md\">اردو </a></li>\n        <li><a href=\"./README-AR.md\">اللغة العربية </a></li>\n        <li><a href=\"./README-TA.md\">தமிழ்</a></li>\n        <li><a href=\"./README-NE.md\">नेपाली</a></li>\n    </ul>\n</details>\n<!-- Do not translate this -->\n\n# Welkom Nieuwe Bijdragers aan Open Source!\n\n[![Pull Requests Welkom](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat)](https://makeapullrequest.com)\n[![Eerstetijdsmedewerkers Vriendelijk](https://img.shields.io/badge/eerste--timers--only-friendly-blue.svg)](https://www.firsttimersonly.com/)\n[![Controleer Hulpbronnen](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml/badge.svg)](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml)\n\nDit is een lijst van bronnen voor mensen die nieuw zijn in het bijdragen aan Open Source.\n\nAls je aanvullende bronnen vindt, maak dan een pull-aanvraag.\n\nAls je vragen of opmerkingen hebt, maak dan een probleem aan.\n\n**Inhoudsopgave**\n\n- [Bijdragen aan Open Source in het algemeen](#bijdragen-aan-open-source-in-het-algemeen)\n- [Directe GitHub-zoekopdrachten](#directe-github-zoekopdrachten)\n- [Het bijdrageneconomie van Mozilla](#het-bijdrageneconomie-van-mozilla)\n- [Nuttige artikelen voor nieuwe Open Source-bijdragers](#nuttige-artikelen-voor-nieuwe-open-source-bijdragers)\n- [Gebruik van Versiebeheer](#gebruik-van-versiebeheer)\n- [Boeken over Open Source](#boeken-over-open-source)\n- [Initiatieven voor Open Source-bijdragen](#initiatieven-voor-open-source-bijdragen)\n- [Open Source-programma's om aan deel te nemen](#open-source-programmas-om-aan-deel-te-nemen)\n- [Licentie](#licentie)\n\n## Bijdragen aan Open Source in het algemeen\n\n> Artikelen en bronnen die de wereld en cultuur van Open Source bespreken.\n\n- [De Definitie van Open Source](https://opensource.org/osd) - De definitie van Open Source Software van de Open Source Initiative.\n- [The Cathedral and the Bazaar](http://www.catb.org/~esr/writings/cathedral-bazaar/) - Het beroemde essay van Eric S. Raymond over de twee verschillende manieren om software te maken.\n- [Producing Open Source Software](http://producingoss.com/) - Een gratis boek van Karl Fogel over het produceren van Open Source Software.\n- [Mozilla Manifesto](https://www.mozilla.org/en-US/about/manifesto/) - Het manifest van Mozilla over de principes van het Open Web.\n- [Open Source als de Norm](https://hueniverse.com/2011/09/24/open-source-as-the-norm/) - Een blogpost over waarom Open Source de norm zou moeten zijn.\n\n## Directe GitHub-zoekopdrachten\n\n> Zoekopdrachten waarmee je interessante Open Source-projecten kunt vinden om aan bij te dragen.\n\n- [Eerstetijdsmedewerkersproblemen](https://github.com/issues?q=is%3Aopen+is%3Aissue+label%3Afirst-timers-only) - Problemen die zijn gemarkeerd als 'eerste keer alleen'.\n- [Goede eerste bijdragen](https://github.com/issues?q=is%3Aopen+is%3Aissue+label%3Agood-first-issue) - Problemen die zijn gemarkeerd als 'goede eerste bijdragen'.\n- [First Contributions](https://github.com/firstcontributions/first-contributions) - Een project dat beginners helpt hun eerste bijdrage te maken.\n- [Eerstetijdsmedewerkers](http://www.firsttimersonly.com/) - Meer bronnen voor eerste keer medewerkers.\n\n## Het bijdrageneconomie van Mozilla\n\n> Het bijdrageneconomie van Mozilla is een initiatief om mensen te helpen een financiële basis te vinden voor hun bijdragen aan Open Source-projecten.\n\n- [Mozilla Open Source Support (MOSS)](https://www.mozilla.org/en-US/moss/) - Een initiatief van Mozilla om financiële ondersteuning te bieden aan de Open Source-gemeenschap.\n- [Bijdrageneconomie van Mozilla](https://www.mozilla.org/en-US/moss/fund-awards/) - Informatie over de bijdrageneconomie van Mozilla en hoe je ervoor kunt solliciteren.\n- [Open Source-hulpmiddelen](https://www.mozilla.org/en-US/moss/open-source-tools/) - Hulpmiddelen die handig zijn voor Open Source-bijdragers.\n\n## Nuttige artikelen voor nieuwe Open Source-bijdragers\n\n> Nuttige artikelen die helpen bij het begrijpen van het proces van bijdragen aan Open Source-projecten.\n\n- [Uw eerste Open Source-bijdrage](https://medium.com/open-source-creation/how-to-make-your-first-open-source-contribution-in-just-5-minutes-2b2850cb2c8d) - Een snelle handleiding om je eerste Open Source-bijdrage te maken.\n- [Open Source-bijdragen voor beginners](https://opensource.guide/how-to-contribute/) - Een uitgebreide gids voor beginners over het bijdragen aan Open Source.\n- [Een bijdrage leveren aan Open Source-projecten](https://akrabat.com/contributing-to-open-source-projects/) - Tips en trucs voor het bijdragen aan Open Source-projecten.\n- [Open Source-richtlijnen](http://oss-watch.ac.uk/resources/opensourceguide) - Richtlijnen voor deelnemen aan Open Source-projecten.\n- [Hoe Open Source te doen](https://producingoss.com/en/index.html) - Een uitgebreide gids voor bijdragen aan Open Source-projecten.\n\n## Gebruik van Versiebeheer\n\n> Artikelen en bronnen die u helpen versiebeheer te begrijpen, zoals Git.\n\n- [Leer Git Branching](https://learngitbranching.js.org/) - Een interactieve tool om te leren over Git-vertakkingen.\n- [Git Documentation](https://git-scm.com/doc) - De officiële documentatie voor Git.\n- [Atlassian Git Tutorial](https://www.atlassian.com/git) - Een uitgebreide tutorial over Git.\n- [Pro Git](https://git-scm.com/book/en/v2) - Een gratis online boek over Git.\n\n## Boeken over Open Source\n\n> Boeken die dieper ingaan op Open Source-software en -cultuur.\n\n- [The Pragmatic Programmer](https://pragprog.com/titles/tpp20/the-pragmatic-programmer-20th-anniversary-edition) - Een boek dat praktische tips en technieken geeft voor softwareontwikkeling.\n- [Producing Open Source Software](http://producingoss.com/) - Een gratis boek over het produceren van Open Source Software.\n- [Het Open Source-werkboek](https://www.amazon.com/Open-Source-Workbook/dp/1456411124) - Een werkboek dat je helpt bij het navigeren in Open Source-projecten.\n- [Smart Business for Smart Business](http://www.smartbusinessmovie.com/book/) - Een boek dat de economische voordelen van Open Source Software bespreekt.\n\n## Initiatieven voor Open Source-bijdragen\n\n> Specifieke initiatieven die mensen helpen bijdragen aan Open Source.\n\n- [Oktober](https://hacktoberfest.digitalocean.com/) - Een jaarlijks evenement dat mensen aanmoedigt bij te dragen aan Open Source-projecten.\n- [24 Pull Requests](https://24pullrequests.com/) - Een initiatief dat mensen aanmoedigt om in december bij te dragen aan Open Source-projecten.\n- [MLH Fellowship](https://fellowship.mlh.io/) - Een fellowship-programma dat mensen helpt bijdragen aan Open Source tijdens hun studie.\n- [Eerstetijdsmedewerkers](https://www.firsttimersonly.com/) - Een initiatief om beginners te helpen bijdragen aan Open Source.\n- [Google Summer of Code](https://summerofcode.withgoogle.com/) - Een programma dat studenten betaalt om bij te dragen aan Open Source-projecten.\n\n## Open Source-programma's om aan deel te nemen\n\n> Programma's waaraan je kunt deelnemen om ervaring op te doen met Open Source.\n\n- [Google Summer of Code](https://summerofcode.withgoogle.com/) - Een programma dat studenten betaalt om bij te dragen aan Open Source-projecten.\n- [Outreachy](https://www.outreachy.org/) - Een betaald stageprogramma voor mind\n"
  },
  {
    "path": "README-PL.md",
    "content": "<!-- Do not translate this -->\n<details>\n<summary>\n<strong> Read this guide in other languages </strong>\n</summary>\n    <ul>\n        <li><a href=\"./README.md\"> English </a></li>\n        <li><a href=\"./README-MR.md\"> मराठी </a></li>\n        <li><a href=\"./README-BN.md\"> বাংলা </a></li>\n        <li><a href=\"./README-CN.md\"> 中文 </a></li>\n        <li><a href=\"./README-RU.md\"> русский </a></li>\n        <li><a href=\"./README-RO.md\"> Românesc </a></li>\n        <li><a href=\"./README-IT.md\"> Italiano </a></li>\n        <li><a href=\"./README-ID.md\"> Indonesia </a></li>\n        <li><a href=\"./README-ES.md\"> Español </a></li>\n        <li><a href=\"./README-pt-BR.md\"> Português (BR) </a></li>\n        <li><a href=\"./README-DE.md\"> Deutsch </a></li>\n        <li><a href=\"./README-HE.md\"> עברית </a></li>\n        <li><a href=\"./README-GR.md\"> Ελληνικά </a></li>\n        <li><a href=\"./README-FR.md\"> Français </a></li>\n        <li><a href=\"./README-TR.md\"> Turkish </a></li>\n        <li><a href=\"./README-KO.md\"> 한국어 </a></li>\n        <li><a href=\"./README-JA.md\"> 日本語 </a></li>\n        <li><a href=\"./README-HI.md\"> हिंदी </a></li>\n        <li><a href=\"./README-FA.md\"> فارسی </a></li>\n        <li><a href=\"./README-UR.md\">اردو </a></li>\n        <li><a href=\"./README-AR.md\">اللغة العربية </a></li>\n        <li><a href=\"./README-TA.md\">தமிழ்</a></li>\n        <li><a href=\"./README-NE.md\">नेपाली</a></li>\n    </ul>\n</details>\n<!-- Do not translate this -->\n\n# Witamy początkujących kontrybutorów (współautorów)!\n\n[![Pull Requests Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat)](http://makeapullrequest.com)\n[![first-timers-only Friendly](https://img.shields.io/badge/first--timers--only-friendly-blue.svg)](https://www.firsttimersonly.com/)\n[![Check Resources](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml/badge.svg)](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml)\n\nTen dokument jest listą źródeł dla osób chcących rozpocząć swoją przygodę z wkładem do projektów Open Source *(ang. contributing to Open Source)*\n\nJeżeli posiadasz bądź znajdziesz niewymienione w tym dokumencie źródła, proszę stwórz [pull request](https://panizkomputerem.pl/pull-request/)\n\nJeżeli masz jakiekolwiek pytania bądź komentarz stwórz odpowiedni Issue *(ang. issue)* w tym repozytorium.\n\n**Zawartość**\n\n- [Ogólne wnoszenie własnego wkładu do otwartego oprogramowania](#Ogólne-wnoszenie-własnego-wkładu-do-otwartego-oprogramowania)\n- [Bezpośrednie kategorie wyszukiwania kwestii na GitHubie](#Bezpośrednie-kategorie-wyszukiwania-kwestii-na-GitHubie)\n- [Środowisko kontrybucji Mozilli](#Środowisko-kontrybucji-Mozilli)\n- [Użyteczne artykuły dla początkujących w kontrybuowaniu do otwartego oprogramowania](#Użyteczne-artykuły-dla-początkujących-w-kontrybuowaniu-do-otwartego-oprogramowania)\n- [Używanie kontroli wersji](#Używanie-kontroli-wersji)\n- [Książki o otwartym oprogramowaniu](#Książki-o-otwartym-oprogramowaniu)\n- [Inicjatywy kontrybucji w otwartym oprogramowaniu](#Inicjatywy-kontrybucji-w-otwartym-oprogramowaniu)\n- [Licencja](#Licencja)\n\n## Ogólne wnoszenie własnego wkładu do otwartego oprogramowania\n- [Poradnik Open Source](http://opensource.guide/pl/how-to-contribute/) **[PL]** - Strona w języku polskim poświęcona projektom otwartego oprogramowania.\n- [The Definitive Guide to Contributing to Open Source](https://www.freecodecamp.org/news/the-definitive-guide-to-contributing-to-open-source-900d5f9f2282/) by [@DoomHammerNG](https://twitter.com/DoomHammerNG)\n- [An Intro to Open Source](https://www.digitalocean.com/community/tutorial_series/an-introduction-to-open-source) - Poradnik stworzony przez DigitalOcean by poprowadzić cię do sukcesu w kontrybuowaniu na GitHubie.\n- [Issuehub.io](http://issuehub.pro/) - narzędzie do wyszukiwania kwestii *(ang. Issue)* na podstawie etykiet *(ang. Labels)* i języków programowania.\n- [Code Triage](https://www.codetriage.com/) - kolejne ciekawe narzędzie do znajdowania popularnych repozytoriów i filtrowania kwestii na podstawie języka programowania.\n- [Awesome-for-beginners](https://github.com/MunGell/awesome-for-beginners) - repozytorium na GitHubie, które gromadzi projekty z dobrymi bugami dla początkujących kontrybutorów i stosuje etykiety do ich opisywania.\n- [Open Source Guides](https://opensource.guide/) - Zbiór poradników dla wszystkich, którzy chcą się nauczyć, jak kontrybuować do projektów otwartego oprogramowania.\n- [45 Github Issues Dos and Don’ts](https://hackernoon.com/45-github-issues-dos-and-donts-dfec9ab4b612) - Co robić i czego nie robić na GitHubie.\n- [GitHub Guides](https://docs.github.com/en) - Podstawowy poradnik jak używać GitHuba efektywnie.\n- [Contribute to Open Source](https://github.com/danthareja/contribute-to-open-source) -  Naucz się jak działa GitHub poprzez kontrybuowanie do projektów symulowanych.\n- [Linux Foundation's Open Source Guides for the Enterprise](https://www.linuxfoundation.org/resources/open-source-guides) - Poradnik od Fundacji Linuxa dla projektów otwartego oprogramowania.\n- [CSS Tricks An Open Source Etiquette Guidebook](https://css-tricks.com/open-source-etiquette-guidebook/) - Przewodnik po otwartym oprogramowaniu napisany przez Kent C. Dodds i Sarah Drasner.\n- [A to Z Resources for Students](https://github.com/dipakkr/A-to-Z-Resources-for-Students) - Uporządkowana lista poradników i możliwości dla studentów do nauki nowego języka programowania.\n- [Pull Request Roulette](http://www.pullrequestroulette.com/) - Ta strona zawiera listę pull requestów zgłoszonych do przejrzenia należących do projektów otwartego oprogramowania znajdujących się na GitHubie.\n- [\"How to Contribute to an Open Source Project on GitHub\" by Egghead.io](https://egghead.io/courses/how-to-contribute-to-an-open-source-project-on-github) - Poradnik krok po kroku w formie filmu o tym, jak zacząć kontrybuować do projektu otwartego oprogramowania na GitHubie.\n- [Contributing to Open Source: A Live Walkthrough from Beginning to End](https://medium.com/@kevinjin/contributing-to-open-source-walkthrough-part-0-b3dc43e6b720) - Przewodnik o świecie kontrybuowania do otwartego oprogramowania zawiera wszystko, od wybrania odpowiedniego projektu, przez pracę na zgłoszoną kwestią (ang. issue), aż do stworzenia własnego PR (Pull Request) i przyłączenia go do głównej gałęzi.\n- [\"How to Contribute to Open Source Project by\" Sarah Drasner](https://css-tricks.com/how-to-contribute-to-an-open-source-project/) - W tym poradniku autorzy skupiają się na zasadniczych zasadach tworzenia pull requestów do nie swojego projektu na GitHubie.\n- [\"How to get started with Open Source by\" Sayan Chowdhury](https://www.hackerearth.com:443/getstarted-opensource/) - Ten artykuł obejmuje poradniki kontrybuowania do projektów otwartego oprogramowania dla początkujących na podstawie wybranego języka programowania.\n- [\"Browse good first issues to start contributing to open source\"](https://github.blog/2020-01-22-browse-good-first-issues-to-start-contributing-to-open-source/) - GitHub pomaga ci znaleźć dobrą pierwszą kwestię, aby zacząć kontrybuowanie do projektu Open Source.\n- [\"How to Contribute to Open Source Project\" by Maryna Z](https://rubygarage.org/blog/how-contribute-to-open-source-projects) - Ten artykuł skierowany jest głównie do zespołów biznesowych (ale może okazać się użyteczny dla indywidualnych autorów) gdzie mówi i mówi o tym dlaczego, jak i po co kontrybuować do projektów Open Source\n- [\"start-here-guidelines\" by Andrei](https://github.com/zero-to-mastery/start-here-guidelines) -Wskazówki jak działa społeczność GitHuba i na jakich zasadach opiera się kontrybuowanie do projektów Open Source. Szczególnie zaprojektowane do celów edukacyjnych i praktycznych.\n\n\n\n## Bezpośrednie kategorie wyszukiwania kwestii na GitHubie\nLinki wyszukiwania które wskazują na kwestie skierowane dla początkujących. Jest to dobre miejsce aby zacząć swoją przygodę z kontrybuowaniem.\n- [is:issue is:open label:beginner](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Abeginner)\n- [is:issue is:open label:easy](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Aeasy)\n- [is:issue is:open label:first-timers-only](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Afirst-timers-only)\n- [is:issue is:open label:good-first-bug](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Agood-first-bug)\n- [is:issue is:open label:\"good first issue\"](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3A\"good+first+issue\")\n- [is:issue is:open label:starter](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Astarter)\n- [is:issue is:open label:up-for-grabs](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Aup-for-grabs)\n\n## Środowisko kontrybucji Mozilli\n- [Good First Bugs](https://bugzilla.mozilla.org/buglist.cgi?quicksearch=sw:%22[good%20first%20bug]%22&limit=0) - bugi, które programiści uznali za dobre wprowadzenie do projektu\n- [Mentored Bugs](https://bugzilla.mozilla.org/buglist.cgi?quicksearch=mentor%3A%40) - bugi które mają przypisanego mentora, który będzie na IRC aby pomóc ci, kiedy utkniesz podczas naprawiania tego błędu.\n- [Bugs Ahoy](https://www.joshmatthews.net/bugsahoy/) - Strona dedykowana do znajdowania błędów na Bugzilli.\n- [Firefox DevTools](http://firefox-dev.tools/) - Strona dedykowania do znajdowania błędów dla profesjonalnych narzędzi przeznaczonych na przeglądarkę Firefox.\n- [Start Mozilla](https://twitter.com/StartMozilla) - Konto na Twitterze, które tweetuje na temat kwestii odpowiednich dla początkujących kontrybutorów w środowisku Mozilli.\n\n## Użyteczne artykuły dla początkujących w kontrybuowaniu do otwartego oprogramowania\n- [Poradnik o licencjonowaniu projektów Open Source](https://github.com/YetiForceCompany/guides/blob/master/pl/licenses/Poradnik_o_licencjonowaniu_projektow_open_source_YetiForce_v.1.0.pdf) **[PL]** by [Błażej Pabiszczak](https://www.linkedin.com/in/blazej-pabiszczak-yetiforce/)\n- [How to choose (and contribute to) your first Open Source project](https://github.com/collections/choosing-projects) by [@GitHub](https://github.com/github)\n- [How to find your first Open Source bug to fix](https://www.freecodecamp.org/news/finding-your-first-open-source-project-or-bug-to-work-on-1712f651e5ba/) by [@Shubheksha](https://github.com/Shubheksha)\n- [First Timers Only](https://kentcdodds.com/blog/first-timers-only) by [@kentcdodds](https://github.com/kentcdodds)\n- [Bring Kindness Back to Open Source](https://web.archive.org/web/20201009150545/https://www.hanselman.com/blog/bring-kindness-back-to-open-source) by [@shanselman](https://github.com/shanselman)\n- [Getting into Open Source for the First Time](https://www.nearform.com/blog/getting-into-open-source-for-the-first-time/) by [@mcdonnelldean](https://github.com/mcdonnelldean)\n- [How to Contribute to Open Source](https://opensource.guide/how-to-contribute/) by [@GitHub](https://github.com/github/opensource.guide)\n- [How to Find a Bug in Your Code](https://8thlight.com/insights/how-to-find-a-bug-in-your-code) by [@dougbradbury](https://twitter.com/dougbradbury)\n- [Mastering Markdown](https://docs.github.com/features/mastering-markdown/) by [@GitHub](https://github.com/github/docs)\n- [First mission: Contributors page](https://forcrowd.medium.com/first-mission-contributors-page-df24e6e70705#.2v2g0no29) by [@forCrowd](https://github.com/forCrowd)\n- [How to make your first Open Source contribution in just 5 minutes](https://www.freecodecamp.org/news/how-to-make-your-first-open-source-contribution-in-just-5-minutes-aaad1fc59c9a/) by [@roshanjossey](https://github.com/Roshanjossey/)\n- [Hacktoberfest 2019: How you can get your free shirt — even if you’re new to coding](https://www.freecodecamp.org/news/hacktoberfest-2018-how-you-can-get-your-free-shirt-even-if-youre-new-to-coding-96080dd0b01b/) by [@quincylarson](https://www.freecodecamp.org/news/author/quincylarson/)\n- [A Bitter Guide To Open Source](https://medium.com/codezillas/a-bitter-guide-to-open-source-a8e3b6a3c1c4) by [@ken_wheeler](https://medium.com/@ken_wheeler)\n- [A junior developer’s step-by-step guide to contributing to Open Source for the first time](https://hackernoon.com/contributing-to-open-source-the-sharks-are-photoshopped-47e22db1ab86) by [@LetaKeane](https://hackernoon.com/u/letakeane)\n- [Learn Git and GitHub Step By Step (on Windows)](https://medium.com/illumination/path-to-learning-git-and-github-be93518e06dc) by [@ows-ali](https://medium.com/@ows_ali)\n- [Why Open Source and How?](https://careerkarma.com/blog/open-source-projects-for-beginners/) by [@james-gallagher](https://careerkarma.com/blog/author/jamesgallagher/)\n- [How to get started with Open Source - By Sayan Chowdhury](https://www.hackerearth.com/getstarted-opensource/)\n- [What open-source should I contribute to](https://kentcdodds.com/blog/what-open-source-project-should-i-contribute-to) by Kent C. Dodds\n\n## Używanie kontroli wersji\n- [Wprowadzenie do kontroli wersji](https://git-scm.com/book/pl/v2/Pierwsze-kroki-Wprowadzenie-do-kontroli-wersji) **[PL]**\n- [Poradnik dla chcących poznać system kontroli wersji](https://microgeek.eu/viewtopic.php?t=852) **[PL]**\n- [Think Like (a) Git](https://think-like-a-git.net/) - Wstęp do systemu kontroli wersji Git dla ,,zaawansowanych początkujących'', którzy ciąglę napotykają się na  problemy. Głównym celem jest przedstawienie prostej strategii eksperymentowania z gitem. \n- [Try Git](https://docs.github.com/en/get-started/quickstart/set-up-git) - Naucz się Gita w 15 minut ze swojej przeglądarki za darmo.\n- [Everyday Git](https://git-scm.com/docs/giteveryday) - Uzyteczny minimalny zbiór komend potrzebnych do codziennego używania Gita.\n- [Oh shit, git!](https://ohshitgit.com/) - Jak rozwiązać pospolite problemy, które możęsz napotkać podczas używania gita. Zobacz również [Dangit, git!](https://dangitgit.com/) stronę bez przekleństw.\n- [Atlassian Git Tutorials](https://www.atlassian.com/git/tutorials) - Różne poradniki o używaniu systemu kontroli wersji Git.\n- [GitHub Git Cheat Sheet](https://education.github.com/git-cheat-sheet-education.pdf) (PDF)\n- [freeCodeCamp's Wiki on Git Resources](https://forum.freecodecamp.org/t/wiki-git-resources/13136)\n- [GitHub Flow](https://www.youtube.com/watch?v=juLIxo42A_s) (42:06) -  Wykład Matta Desmonda i Erica Hollenberrego o tym jak tworzyć pull requesty\n- [GitHub Learning Resources](https://docs.github.com/en/free-pro-team@latest/github/getting-started-with-github/git-and-github-learning-resources) - Źródła do nauki Gita i GitHuba\n- [Pro Git](https://git-scm.com/book/en/v2) - Książka napisana przez Scotta Chacona i Bena Strauba i opublikowana przez Apress.\n- [Git-it](https://github.com/jlord/git-it-electron) - Aplikacja GitIT przeznaczony jest do nauki Gita i Githuba.\n- [Flight Rules for Git](https://github.com/k88hudson/git-flight-rules) - Poradnik na temat tego jak postępować gdy coś pójdzie nie tak jak powinno.\n- [Git Guide for Beginners in Spanish](https://platzi.github.io/git-slides/#/) - Kompletny poradnik ze slajdami na temat Gita i Githuba po Hiszpańsku.\n- [Git Kraken](https://www.gitkraken.com/git-client) - Interaktywny program oferujący wizualizację zawartości w celu łatwiejszego używania systemu kontroli wersji. Przeznaczony jest na różne platformy.\n- [Git Tips](https://github.com/git-tips/tips) - Zbiór najpopularniejszych wskazówek i sztuczek przy używaniu gita.\n- [Git Best Practices](https://sethrobertson.github.io/GitBestPractices/) - Commituj często, udoskonalaj później, publikuj raz.\n- [Git Interactive Tutorial](https://learngitbranching.js.org/) - Naucz się Gita w najbardziej wizualny i interaktywny sposób.\n\n## Książki o otwartym oprogramowaniu\n- [Git. Rozproszony system kontroli wersji](https://helion.pl/ksiazki/git-rozproszony-system-kontroli-wersji-wlodzimierz-gajda,gitroz.htm#format/d) **[PL]**\n- [Wstęp do Open Source](http://www.sbp.pl/wydawnictwa/produkt?produkt_id=243) **[PL]**\n- [Producing Open Source Software](https://producingoss.com/) - jest to książka na temat ludzkiej strony tworzenia projektów Open Source. Opisuje jak odnoszące sukcesy projekty działają i przedstawia oczekiwania użytkowników, programistów jak również kulturę darmowego oprogramowania.\n- [Open Source Book Series](https://opensource.com/resources/ebooks) - Naucz się więcej na temat Open Source i ciągle powiększającej się społeczności z wszechstronną listą darmowych eBooków z https://opensource.com\n- [Software Release Practice HOWTO](https://en.tldp.org/HOWTO/Software-Release-Practice-HOWTO/) - opisuje dobre praktyki dla Linuxa i projektów Open Sourcowych. Skupisz się na tworzeniu kodu, który będzie zrozumiały dla innych programistów.\n- [Open Sources 2.0 : The Continuing Evolution](https://archive.org/details/opensources2.000diborich) (2005) - jest to kolekcja wnikliwych i dających do myślenia esejów współczesnych liderów technologicznych, którzy kontynuują rozwój oprogramowań OpenSource, który został zapoczątkowany w książce z 1999 roku [Open Sources: Voices from the Revolution.](https://www.amazon.com/Open-Sources-Voices-Source-Revolution/dp/1565925823)\n- [The Architecture of Open Source Applications](http://www.aosabook.org/en/git.html) - Pokazuje jak działają różne nisko poziomowe aspekty Gita, które pozwalają na rozproszony przepływ informacji. Przedstawione zostały również różnice pomiędzy Gittem i innymi systemami kontroli wersji (VCSs).\n- [Open Sources: Voices from the Open Source Revolution](https://www.oreilly.com/openbook/opensources/book/) -  Eseje od pionierów projektów Open Source takich jak Linus Torvalds (Linux), Larry Wall (Perl) i Richard Stallman (GNU).\n\n## Inicjatywy kontrybucji w otwartym oprogramowaniu\n- [Up For Grabs](https://up-for-grabs.net/) - Zawiera projekty z zagadnieniami dla początkujących.\n- [First Timers Only](https://www.firsttimersonly.com/) - Lista błędów oznaczonych dla tych co dopiero zaczynają *(ang. first timers only)*\n- [First Contributions](https://firstcontributions.github.io/) - Stwórz swoją pierwszą kontrybucje do projektu Open Source w 5 minut. Narzedzie i poradnik stworzony, aby pomóc początkującym zacząć przygodę z kontrybuowaniem. [Tutaj ANG](https://github.com/firstcontributions/first-contributions) [Tutaj PL](https://github.com/firstcontributions/first-contributions/blob/master/translations/README.pl.md) jest to kod źródłowy GitHuba, który pozwala wykonać swoją pierwszą kontrybucję do repozytorium.\n- [Hacktoberfest](https://hacktoberfest.digitalocean.com/) - Program zachęcający do kontrybuowania w projektach Open Source. Zarób prezenty takie jak koszulki czy naklejki za co najmniej 4 Pull Requesty w Październiku.\n- [24 Pull Requests](https://24pullrequests.com) - jest to projekt stworzony do promowania współpracy Open Source w Grudniu. \n\n## Licencja\n<a rel=\"license\" href=\"https://creativecommons.org/licenses/by-sa/4.0/\"><img alt=\"Creative Commons License\" style=\"border-width:0\" src=\"https://licensebuttons.net/l/by-sa/4.0/88x31.png\" /></a><br />Ta praca jest licencjonowana za pomocą <a rel=\"license\" href=\"https://creativecommons.org/licenses/by-sa/4.0/\">Creative Commons Attribution-ShareAlike 4.0 International License</a>.\n"
  },
  {
    "path": "README-RO.md",
    "content": "<table>\n    <tr>\n        <!-- Do not translate this table -->\n        <td><a href=\"./README.md\"> English </a></td>\n        <td><a href=\"./README-MR.md\"> मराठी </a></td>\n        <td><a href=\"./README-BN.md\"> বাংলা </a></td>\n        <td><a href=\"./README-CN.md\"> 中文 </a></td>\n        <td><a href=\"./README-RU.md\"> русский </a></td>\n        <td><a href=\"./README-RO.md\"> Românesc </a></td>\n        <td><a href=\"./README-IT.md\"> Italiano </a></td>\n        <td><a href=\"./README-ES.md\"> Español </a></td>\n        <td><a href=\"./README-pt-BR.md\"> Português (BR) </a></td>\n        <td><a href=\"./README-DE.md\"> Deutsch </a></td>\n        <td><a href=\"./README-GR.md\"> Ελληνικά </a></td>\n        <td><a href=\"./README-FR.md\"> Français </a></td>\n        <td><a href=\"./README-TR.md\"> Turkish </a></td>\n        <td><a href=\"./README-KO.md\"> 한국어 </a></td>\n    </tr>\n</table>\n\n# Bine ați venit, noi contribuitori open source!\n\n[![Pull Requests Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat)](http://makeapullrequest.com)\n[![first-timers-only Friendly](https://img.shields.io/badge/first--timers--only-friendly-blue.svg)](http://www.firsttimersonly.com/)\n[![Check Resources](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml/badge.svg)](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml)\n\nAceasta este o listă de resurse pentru persoanele noi care vor sa contribuie la open source.\n\nDacă găsiți resurse suplimentare, vă rugăm să contribuiți cu o solicitare de adaugare (pull request).\n\nDacă aveți întrebări sau comentarii, vă rugăm să creați o problemă (issue).\n\n**Cuprins**\n- [Contribuția la open source în general](#contribu%C8%9Bia-la-open-source-%C3%AEn-general)\n- [Căutări directe pe GitHub](#c%C4%83ut%C4%83ri-directe-pe-github)\n- [Ecosistemul contributorului Mozilla](#ecosistemul-contributorului-mozilla)\n- [Articole utile pentru noi contribuitorii open source](#articole-utile-pentru-noi-contribuitori-open-source)\n- [Utilizarea controlului versiunii (version control)](#utilizarea-controlului-versiunii-version-control)\n- [Cărți Open Source](#c%C4%83r%C8%9Bi-open-source)\n- [Licența](#licen%C8%9Ba)\n\n## Contribuția la open source în general\n- [Introducere la Open Source](https://www.digitalocean.com/community/tutorial_series/an-introduction-to-open-source) - Tutoriale de la DigitalOcean pentru a vă ghida pe drumul spre succesul contribuției aici pe GitHub.\n- [Disponibile](http://up-for-grabs.net/#/) - o listă de proiecte cu probleme pentru începători.\n- [Issuehub.io](http://issuehub.pro/) - un instrument de căutare a problemelor GitHub după etichetă și limbă.\n- [Cod Triage](https://www.codetriage.com/) - un alt instrument, foarte frumos, pentru găsirea depozitelor (repositories) și a problemelor populare filtrate după limbă.\n- [Numai pentru începători](http://www.firsttimersonly.com/) - o listă de erori (bugs) care sunt etichetate \"numai pentru prima dată (first-timers-only)\".\n- [Prima ta cerere de adaugare (Pull Request)](https://twitter.com/yourfirstpr) - probleme de pornire pe GitHub care pot fi abordate cu ușurință de noii contribuitori.\n- [Minunat pentru începători(Awesome-for-beginners)](https://github.com/MunGell/awesome-for-beginners) - un depozit (repo) GitHub care îmbogățește proiectele cu erori/bug-uri bune pentru noii colaboratori și aplică etichete pentru a le descrie.\n- [Ghiduri cu surse deschise (Open Source)](https://opensource.guide/) - Colecție de resurse pentru persoane fizice, comunități și companii care doresc să învețe cum să ruleze și să contribuie la un proiect open source.\n- [45 Github probleme Pro și Contra](https://hackernoon.com/45-github-issues-dos-and-donts-dfec9ab4b612) - Pro și Contra pe GitHub.\n- [Ghiduri GitHub](https://docs.github.com/en) - ghiduri de bază privind utilizarea eficientă a GitHub-ului.\n- [Primele Contribuții](https://firstcontributions.github.io/) - Faceți prima dvs. contribuție la open source în 5 minute. Un instrument și un tutorial pentru a ajuta începătorii să înceapă contribuțiile.\n- [Contribuiți la Open Source](https://github.com/danthareja/contribute-to-open-source) - Aflați fluxul de lucru GitHub contribuind la codul unui proiect de simulare.\n- [Ghidul open source al Fundației Linux pentru întreprinderi](https://www.linuxfoundation.org/resources/open-source-guides/) - Ghidul Fundației Linux pentru proiecte cu sursă deschisă (open source).\n- [CSS Tricks Un Ghid al Etichetei Open Source](https://css-tricks.com/open-source-etiquette-guidebook/) - Ghid de Etichetei Open Source, scris de Kent C. Dodds și Sarah Drasner.\n- [Ovio](https://ovio.org/) - O platforma cu o selectie organizata de proiecte la care puteti contribuii. Are un [instrument de cautare](https://ovio.org/issues) a problemelor si va permite sa salvati proiecte si probleme pentru mai tarziu.\n\n## Căutări directe pe GitHub\nCăutați linkuri care indică direct problemele potrivite pentru a contribui la GitHub.\n- [is:issue is:open label:beginner](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Abeginner) începător\n- [is:issue is:open label:easy](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Aeasy) ușor\n- [is:issue is:open label:first-timers-only](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Afirst-timers-only) numai pentru începători\n- [is:issue is:open label:good-first-bug](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Agood-first-bug) bug adecvat pentru începători\n- [is:issue is:open label:\"good first issue\"](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3A\"good+first+issue\") probleme adecvate pentru începători\n- [is:issue is:open label:starter](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Astarter) pentru început\n- [is:issue is:open label:up-for-grabs](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Aup-for-grabs) disponibile\n\n## Ecosistemul contributorului Mozilla\n- [Erori/Bug-uri bune pentru început](https://bugzilla.mozilla.org/buglist.cgi?quicksearch=sw:%22[good%20first%20bug]%22&limit=0) - bug-uri pe care programatorii le-au identificat ca o bună introducere în proiect.\n- [Bug-uri mentorate](https://bugzilla.mozilla.org/buglist.cgi?quicksearch=mentor%3A%40) - bug-uri care au un mentor desemnat care va fi acolo pe IRC pentru a vă ajuta atunci când rămâneți blocați în timp ce lucrați pentru al fixa.\n- [Bugs Ahoy](http://www.joshmatthews.net/bugsahoy/) - un site dedicat găsirii de bug-uri pe Bugzilla.\n- [Firefox instrumente pentru programatori (DevTools)](http://firefox-dev.tools/) - un site dedicat erorilor indexate pentru instrumentele de programare din browserul Firefox.\n- [Start Mozilla](https://twitter.com/StartMozilla) - un cont Twitter care postează tweet-uri despre probleme potrivite pentru contribuitori noi în ecosistemul Mozilla.\n\n## Articole utile pentru noi contribuitori open source\n- [\"Cum să alegeți (și să contribuiți la) primul dvs. proiect open source\"](https://github.com/collections/choosing-projects) de către [@GitHub](https://github.com/github)\n- [\"Cum să găsești prima eroare (bug) open source pentru a o rezolva\"](https://medium.freecodecamp.org/finding-your-first-open-source-project-or-bug-to-work-on-1712f651e5ba#.slc8i2h1l) de către [@Shubheksha](https://github.com/Shubheksha)\n- [\"Numai pentru începători\"](https://kentcdodds.com/blog/first-timers-only) de către [@kentcdodds](https://github.com/kentcdodds)\n- [\"Aduceți amabilitatea înapoi la Open Source\"](http://www.hanselman.com/blog/BringKindnessBackToOpenSource.aspx) de către [@shanselman](https://github.com/shanselman)\n- [\"Intrarea în Open Source pentru prima dată\"](https://www.nearform.com/blog/getting-into-open-source-for-the-first-time/) de către [@mcdonnelldean](https://github.com/mcdonnelldean)\n- [\"Cum să contribuiți la Open Source\"](https://opensource.guide/how-to-contribute/) de către [@GitHub](https://github.com/github/opensource.guide)\n- [\"Cum să găsești un bug în codul tău\"](https://8thlight.com/blog/doug-bradbury/2016/06/29/how-to-find-bug-in-your-code.html) de către [@dougbradbury](https://twitter.com/dougbradbury)\n- [\"Stăpânirea Markdown-ului\"](https://docs.github.com/features/mastering-markdown/) de către [@GitHubGuides](https://docs.github.com/en)\n- [\"Prima misiune: pagina contribuitorilor\"](https://forcrowd.medium.com/first-mission-contributors-page-df24e6e70705#.2v2g0no29) de către [@forCrowd](https://github.com/forCrowd)\n- [\"Cum să faceți prima dvs. contribuție open source în doar 5 minute\"](https://medium.freecodecamp.org/how-to-make-your-first-open-source-contribution-in-just-5-minutes-aaad1fc59c9a) de către [@roshanjossey](https://medium.freecodecamp.org/@roshanjossey)\n- [\"Hacktoberfest 2018: Cum poți câștiga un tricou gratis - chiar dacă ești nou la programare\"](https://medium.freecodecamp.org/hacktoberfest-2018-how-you-can-get-your-free-shirt-even-if-youre-new-to-coding-96080dd0b01b) de către [@quincylarson](https://medium.freecodecamp.org/@quincylarson)\n\n## Utilizarea controlului versiunii (version control)\n- [Gandește ca (un) stupid (Git)](https://think-like-a-git.net/) - Introducerea la Git pentru „începătorii avansați“, dar care încă mai au probleme, cu scopul de a vă oferi o strategie simplă pentru a experimenta în siguranță cu git.\n- [Încercați Git](https://docs.github.com/en/get-started/quickstart/set-up-git) - Învață Git în 15 minute din browser-ul tău gratuit.\n- [Git zilmic](https://git-scm.com/docs/giteveryday) - Un set util de comenzi pentru Git zilnic.\n- [Oh shit, git!](http://ohshitgit.com/) - cum să scapi de greșelile comune în \"git\" descrise în engleză simplă.\n- [Atlassian Git Tutorials](https://www.atlassian.com/git/tutorials/) - diverse tutoriale despre utilizarea \"git\"-ului.\n- [GitHub Git Fițuică](https://education.github.com/git-cheat-sheet-education.pdf) (PDF)\n- [Wiki-ul freeCodeCamp despre resursele Git](https://www.freecodecamp.org/forum/t/wiki-git-resources/13136)\n- [Fluxul GitHub](https://www.youtube.com/watch?v=juLIxo42A_s) (42:06) - GitHub vorbește despre modul de a face o cerere de adaugare (pull request).\n- [Resurse de învățare GitHub](https://help.github.com/articles/git-and-github-learning-resources/) - Resurse de învățare Git și GitHub.\n- [Pro Git](https://git-scm.com/book/en/v2) - Întreaga carte Pro Git, scrisă de Scott Chacon și Ben Straub și publicată de Apress.\n- [Git-it](https://github.com/jlord/git-it-electron) - Git tutorial pas după pas aplicație desktop.\n- [Reguli de zbor pentru Git](https://github.com/k88hudson/git-flight-rules) - Un ghid despre ce trebuie făcut atunci când lucrurile nu merg bine.\n- [O introducere completă despre Git și GitHub](https://codeburst.io/git-good-part-a-e0d826286a2a) - Un ghid scris de Madhav Bahl, pe care ar trebui să  îl vedeți dacă sunteți nou la Git sau GitHub, acoperă GitHub ca un serviciu și concepte de control al versiunii Git în detaliu.\n\n## Cărți Open Source\n- [Producerea de software open source](http://producingoss.com/) - Producerea de software open source este o carte despre partea umană a programării open source. Descrie modul în care funcționează proiectele de succes, așteptările utilizatorilor și programatorilor și cultura software-ului liber.\n- [Serie de Cărți despre Open Source](https://opensource.com/resources/ebooks) - Aflați mai multe despre open source și despre miscarea open source cu o listă completă de cărți electronice gratuite de la https://opensource.com.\n- [Practica lansării software-lui HOWTO](http://en.tldp.org/HOWTO/Software-Release-Practice-HOWTO/) - Acest HOWTO descrie practici bune de lansare pentru programatorii Linux și alte proiecte cu sursă deschisă (open-source). Urmând aceste practici, veți face cât mai ușor pentru utilizatori să vă construiască codul și să îl folosească, iar ceilalți dezvoltatori să înțeleagă codul dvs. și să coopereze cu dvs. pentru a-l îmbunătăți.\n- [Open Sources 2.0: Evoluția Continuă](https://archive.org/details/opensources2.000diborich) (2005) - Open Sources 2.0 este o colecție de eseuri inspirate și gândite de liderii tehnologiei de astăzi, care continuă să picteze evoluția care sa dezvoltat în cartea din 1999, Surse deschise: Voci ale Revoluției.\n\n## Licența\n<a rel=\"license\" href=\"http://creativecommons.org/licenses/by-sa/4.0/\"><img alt=\"Creative Commons License\" style=\"border-width:0\" src=\"https://i.creativecommons.org/l/by-sa/4.0/88x31.png\" /></a><br />Această lucrare este licențiată sub o <a rel=\"license\" href=\"http://creativecommons.org/licenses/by-sa/4.0/\">Creative Commons Attribution-ShareAlike 4.0 International License</a>.\n"
  },
  {
    "path": "README-RU.md",
    "content": "<table>\n    <tr>\n        <!-- Do not translate this table -->\n        <td><a href=\"./README.md\"> English </a></td>\n        <td><a href=\"./README-MR.md\"> मराठी </a></td>\n        <td><a href=\"./README-BN.md\"> বাংলা </a></td>\n        <td><a href=\"./README-CN.md\"> 中文 </a></td>\n        <td><a href=\"./README-RU.md\"> Русский </a></td>\n        <td><a href=\"./README-RO.md\"> Românesc </a></td>\n        <td><a href=\"./README-IT.md\"> Italiano </a></td>\n        <td><a href=\"./README-ES.md\"> Español </a></td>\n        <td><a href=\"./README-pt-BR.md\"> Português (BR) </a></td>\n        <td><a href=\"./README-DE.md\"> Deutsch </a></td>\n        <td><a href=\"./README-GR.md\"> Ελληνικά </a></td>\n        <td><a href=\"./README-FR.md\"> Français </a></td>\n        <td><a href=\"./README-TR.md\"> Turkish </a></td>\n        <td><a href=\"./README-KO.md\"> 한국어 </a></td>\n    </tr>\n</table>\n\n# Добро пожаловать новым разработчикам открытого кода!\n\n[![Приглашение](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat)](http://makeapullrequest.com)\n[![только для первоклассных пользователей](https://img.shields.io/badge/first--timers--only-friendly-blue.svg)](http://www.firsttimersonly.com/)\n[![Check Resources](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml/badge.svg)](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml)\n\nЭто список ресурсов для новичков, которые хотят попробовать участвовать в open source проектах.\n\nЕсли вы найдете дополнительные ресурсы, пожалуйста, сделайте pull request.\n\nЕсли у вас есть вопросы или комментарии, создайте issue.\n\n**Оглавление**\n- [Внесение вклада в открытый исходный код (статьи на английском)](#Внесение-вклада-в-открытый-исходный-код-%28статьи-на-английском%29)\n- [Прямой поиск на GitHub](#Прямой-поиск-на-GitHub)\n- [экосистема вкладчика Mozilla](#экосистема-вкладчика-Mozilla)\n- [Полезные статьи для новых авторов с открытым исходным кодом](#Полезные-статьи-для-новых-авторов-с-открытым-исходным-кодом)\n- [Использование контроля версий](#Использование-контроля-версий)\n- [Книги с открытым исходным кодом](#Книги-с-открытым-исходным-кодом)\n- [Лицензия](#Лицензия)\n\n## Внесение вклада в открытый исходный код (статьи на английском)\n- [Полное руководство по вкладу в Open Source](https://medium.freecodecamp.org/the-definitive-guide-to-contributing-to-open-source-900d5f9f2282) от [@DoomHammerNG](https://twitter.com/DoomHammerNG)\n- [Введение в Open Source](https://www.digitalocean.com/community/tutorial_series/an-introduction-to-open-source) - Мастер классы от DigitalOcean, которые помогут вам успешно участвовать в Open Source проектах на GitHub.\n- [SourceSort](https://www.sourcesort.com) - Коллекция проектов с открытым исходным кодом, нуждающихся в помощи, с возможностью поиска и такими метриками как уровень принятия первых pull request'ов и время отклика, которые могут сыграть решающую роль для новых участников.\n- [Issuehub.io](http://issuehub.pro/) - Инструмент поиска GitHub issues по ярлыку и языку программирования.\n- [Code Triage](https://www.codetriage.com/) - Еще один хороший инструмент для поиска популярных репозиториев и проблем, отфильтрованных по языку программирования.\n- [Awesome-for-beginners](https://github.com/MunGell/awesome-for-beginners) - Репозиторий GitHub, который собирает проекты с хорошими багами для новичков и использует ярлыки для их описания.\n- [Руководства по Open Source](https://opensource.guide/) - Подборка ресурсов для людей, сообществ и компаний, которые хотят научиться вносить вклад в Open Source проекты.\n- [Как нужно и не нужно делать - 45 примеров](https://hackernoon.com/45-github-issues-dos-and-donts-dfec9ab4b612) - Как нужно и не нужно делать на GitHub.\n- [Базовое руководство GitHub](https://docs.github.com/en) - Базовое руководство о том, как эффективно использовать GitHub.\n- [Участвуйте в Open Source проектах](https://github.com/danthareja/contribute-to-open-source) - Осваивайте рабочий процесс GitHub, добавляя код в проект-симуляцию.\n- [Руководства по Open Source проектам от Linux Foundation для предприятий](https://www.linuxfoundation.org/resources/open-source-guides).\n- [Руководство по этикету в Open Source от CSS Tricks](https://css-tricks.com/open-source-etiquette-guidebook/) - Руководство по этикету в работе с открытым исходным кодом от Kent C. Dodds и Sarah Drasner.\n- [Ресурсы для студентов от А до Я](https://github.com/dipakkr/A-to-Z-Resources-for-Students) - Список ресурсов и возможностей для студентов по изучению нового языка программирования.\n- [Вклад в ваш первый Open Source проект: Практический подход](https://blog.devcenter.co/contributing-to-your-first-open-source-project-a-practical-approach-1928c4cbdae) - Пошаговое руководство о том, как сделать свой первый вклад в Open Source от [Abati Adewale](https://www.acekyd.com).\n- [Pull Request Roulette](http://www.pullrequestroulette.com/) - Список pull request'ов, поданных на рассмотрение, которые относятся к Open Source проектам на GitHub.\n- [Как внести свой вклад в Open Source проект на GitHub от Egghead.io](https://egghead.io/courses/how-to-contribute-to-an-open-source-project-on-github) - Пошаговое видео-руководство о том, как сделать свой первый вклад в Open Source на GitHub.\n- [Разработка в Open Source: От начала до конца](https://medium.com/@kevinjin/contributing-to-open-source-walkthrough-part-0-b3dc43e6b720) -  Это пошаговое руководство, в котором рассказывается всё об Open Source: от выбора подходящего проекта и работы над проблемами, до слияния pull request'а (PR)\n- [\"Как внести свой вклад в Open Source проект\" от Sarah Drasner](https://css-tricks.com/how-to-contribute-to-an-open-source-project/) - Статья фокусируется на деталях по созданию pull request'а в чьём-нибудь проекте на GitHub.\n- [\"Как вкатиться в Open Source\" от Sayan Chowdhury](https://www.hackerearth.com:443/getstarted-opensource/) - Эта статья рассказывает о ресурсах для внесения вклада в Open Source для начинающих на основе их интересов и любимых языков программирования.\n- [\"Просмотрите первые хорошие проблемы для вклада в Open Source\"](https://github.blog/2020-01-22-browse-good-first-issues-to-start-contributing-to-open-source/) - GitHub поможет тебе найти первые хорошие проблемы, чтобы начать контрибьютить.\n- [\"Как внести свой вклад в Open Source проект\" от Maryna Z](https://rubygarage.org/blog/how-contribute-to-open-source-projects) - Эта статья в основном полезна для бизнеса (но всё ещё полезна для отдельных контрибьюторов), в ней рассказывается о том, в какие Open Source проектах стоит контрибьютить, а также почему и зачем это нужно.\n- [\"start-here-guidelines\" от Andrei](https://github.com/zero-to-mastery/start-here-guidelines) - Входим в мир Open Source, начиная с игровой площадки Open Source, которая создана специально для обучения и получения опыта на практике.\n- [\"Начало работы с Open Source\" от NumFocus](https://github.com/numfocus/getting-started-with-open-source) - Это репозиторий, который помогает разработчикам преодолевать барьеры для входа в Open Source.\n- [\"Open Source для каждого\" от Chryz-hub](https://github.com/chryz-hub/opensource-4-everyone) - Это репозиторий, в котором находится всё, что связано с Open Source. Это проект создан для того, чтобы помочь с видимостью членства в GitHub, а также попрактиковаться с базовыми и продвинутыми командами в GitHub, начать Open Source разработку и т.д.\n- [\"Open Advice\"](http://open-advice.org/) - Сборник знаний из различных источников. Отвечает на вопрос - что бы хотели знать 42 выдающихся контрибьютора, когда они начинали, что даст вам преимущество независимо от того, как и где вы контрибьютите.\n- [\"GitHub Learning Lab\"](https://lab.github.com/) - Повысьте свои скилы в GitHub Learning Lab. Наш дружелюбный бот проведет вас через серию веселых практических проектов, чтобы вы могли быстрее освоить необходимые навыки, а так же поделиться полезным фидбеком.\n- [\"Десять простых правил, которые помогут новичкам стать контрибьюторами в Open Source\"](https://journals.plos.org/ploscompbiol/article?id=10.1371/journal.pcbi.1007296) - В этой статье рассматриваются правила, основанные на исследованиях многих сообществ и опыте участников, лидеров и наблюдателей.\n- [\"Пошаговый гайд о том, как контрибьютить в GitHub\"](https://www.dataschool.io/how-to-contribute-on-github/) - пошаговое руководство с вспомогательными визуальными элементами и ссылками, касающимися всего процесса вклада в Open Source проект.\n\n## Прямой поиск на GitHub\nПоиск по ярлыкам, которые хорошо подходят для того, чтобы начать контрибьютить на GitHub.\n- [is:issue is:open label:beginner](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Abeginner)\n- [is:issue is:open label:easy](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Aeasy)\n- [is:issue is:open label:first-timers-only](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Afirst-timers-only)\n- [is:issue is:open label:good-first-bug](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Agood-first-bug)\n- [is:issue is:open label:\"good first issue\"](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3A\"good+first+issue\")\n- [is:issue is:open label:starter](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Astarter)\n- [is:issue is:open label:up-for-grabs](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Aup-for-grabs)\n- [is:issue is:open label:easy-fix](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Aeasy-fix&type=issues)\n- [is:issue is:open label:\"beginner friendly\"](https://github.com/search?q=beginner+friendly&state=open&type=Issues)\n\n## Экосистема контрибьюторов Mozilla\n- [Хорошие первые баги](https://bugzilla.mozilla.org/buglist.cgi?quicksearch=sw:%22[good%20first%20bug]%22) - Баги, которые разработчики определили как хорошее введение в проект.\n- [MDN Web Docs](https://developer.mozilla.org/ru/docs/MDN/Contribute) - Помогите команде веб-документации MDN в документировании веб-платформы, исправляя проблемы с контентом и баги платформы.\n- [Баги с закреплёнными за ними менторами](https://bugzilla.mozilla.org/buglist.cgi?quicksearch=mentor%3A%40) - Баги с назначенными на них менторами, которые помогут вам через чат, если у вас появятся трудности во время работы над исправлениями.\n- [Bugs Ahoy](http://www.joshmatthews.net/bugsahoy/)- сайт, посвященный поиску багов в Bugzilla.\n- [Firefox DevTools](http://firefox-dev.tools/) - сайт, посвященный багам, найденным в инструментах разработчика в браузере Firefox.\n- [Что я могу сделать для Mozilla](http://whatcanidoformozilla.org/) - выясните, над чем вы можете работать, ответив на ряд вопросов о ваших навыках и интересах.\n- [Start Mozilla](https://twitter.com/StartMozilla) - аккаунт в Twitter, в котором сообщается о проблемах, подходящих для новых для экосистемы Mozilla контрибьюторов.\n\n## Полезные статьи для новых авторов с открытым исходным кодом\n- [\"Как выбрать (и внести свой вклад) в свой первый Open Source проект\"](https://github.com/collections/choosing-projects) от [@GitHub](https://github.com/github)\n- [\"Как найти первый баг для исправления в Open Source\"](https://medium.freecodecamp.org/finding-your-first-open-source-project-or-bug-to-work-on-1712f651e5ba#.slc8i2h1l) от [@Shubheksha](https://github.com/Shubheksha)\n- [\"Только для новичков\"](https://kentcdodds.com/blog/first-timers-only) от [@kentcdodds](https://github.com/kentcdodds)\n- [\"Верните доброту в Open Source\"](http://www.hanselman.com/blog/BringKindnessBackToOpenSource.aspx) от [@shanselman](https://github.com/shanselman)\n- [\"Вкатываемся в Open Source в первый раз\"](https://www.nearform.com/blog/getting-into-open-source-for-the-first-time/) от [@mcdonnelldean](https://github.com/mcdonnelldean)\n- [\"Как внести вклад в Open Source\"](https://opensource.guide/how-to-contribute/) от [@GitHub](https://github.com/github/opensource.guide)\n- [\"Как найти баг в коде\"](https://8thlight.com/insights/how-to-find-a-bug-in-your-code) от [@dougbradbury](https://twitter.com/dougbradbury)\n- [\"Освоение Markdown\"](https://docs.github.com/features/mastering-markdown/) от [@GitHubGuides](https://docs.github.com/en)\n- [\"Первая миссия: страница контрибьюторов\"](https://forcrowd.medium.com/first-mission-contributors-page-df24e6e70705#.2v2g0no29) от [@forCrowd](https://github.com/forCrowd)\n- [\"Как сделать первый вклад в Open Source всего за 5 минут\"](https://medium.freecodecamp.org/how-to-make-your-first-open-source-contribution-in-just-5-minutes-aaad1fc59c9a) от [@roshanjossey](https://medium.freecodecamp.org/@roshanjossey)\n- [\"Hacktoberfest 2018: Как можно получить бесплатную рубашку - даже если вы новичок\"](https://medium.freecodecamp.org/hacktoberfest-2018-how-you-can-get-your-free-shirt-even-if-youre-new-to-coding-96080dd0b01b) от [@quincylarson](https://medium.freecodecamp.org/@quincylarson)\n- [\"Руководство по Open Source (Осторожно, много мата:) )\"](https://medium.com/codezillas/a-bitter-guide-to-open-source-a8e3b6a3c1c4) от [@ken_wheeler](https://medium.com/@ken_wheeler)\n- [\"Пошаговое руководство junior разработчика по внесению вклада в Open Source в первый раз\"](https://hackernoon.com/contributing-to-open-source-the-sharks-are-photoshopped-47e22db1ab86) от [@LetaKeane](http://www.letakeane.com/)\n- [Пошагово учим Git и GitHub (на Windows)](https://medium.com/illumination/path-to-learning-git-and-github-be93518e06dc) от [@ows-ali](https://ows-ali.medium.com/)\n- [Open Source: Почему и как?](https://careerkarma.com/blog/open-source-projects-for-beginners/) от [@james-gallagher](https://careerkarma.com/blog/author/jamesgallagher/)\n- [Захватывающее вводное руководство в Open Source](https://developeraspire.hashnode.dev/an-immersive-introductory-guide-to-open-source) от [Franklin Okolie](https://twitter.com/DeveloperAspire)\n- [Что я должен разрабатывать в Open Source](https://kentcdodds.com/blog/what-open-source-project-should-i-contribute-to/) от [@kentcdodds](https://github.com/kentcdodds)\n- [Начинаем контрибьютить в Open Source](https://stackoverflow.blog/2020/08/03/getting-started-with-contributing-to-open-source/) от [Zara Cooper](https://stackoverflow.blog/author/zara-cooper/)\n- [Гайд для новичков в Open Source](https://workat.tech/general/article/open-source-contribution-guide-xmhf1k601vdj) от [Sudipto Ghosh](https://github.com/pydevsg)\n- [8 способов внести свой вклад в Open Source без написания кода](https://opensource.com/life/16/1/8-ways-contribute-open-source-without-writing-code) от [OpenSource](https://twitter.com/OpenSourceWay)\n- [Что такое Open Source Software? Объяснение OSS на английском](https://www.freecodecamp.org/news/what-is-open-source-software-explained-in-plain-english/) от [Jessica Wilkins](https://www.freecodecamp.org/news/author/jessica-wilkins/)\n\n## Использование контроля версий\n- [Думай как Git](https://think-like-a-git.net/) - Введение в Git для «продвинутых новичков», у которых всё ещё есть трудности, предоставляющее простую стратегию безопасного экспериментирования с Git.\n- [Попробуй Git](https://docs.github.com/en/get-started/quickstart/set-up-git) - Бесплатно выучите Git за 15 минут, используя свой браузер.\n- [Everyday Git](https://git-scm.com/docs/giteveryday) - Полезный минимальный набор команд для Everyday Git.\n- [Вот дерьмо, гит!](http://ohshitgit.com/) - Способы избежать типичных ошибок с Git, описанные на простом английском языке.\n- [Туториалы Atlassian Git](https://www.atlassian.com/git/tutorials/) - Различные руководства по использованию Git.\n- [GitHub Git Cheat Sheet](https://education.github.com/git-cheat-sheet-education.pdf) (PDF)\n- [freeCodeCamp's Wiki для Git Resources](https://www.freecodecamp.org/forum/t/wiki-git-resources/13136)\n- [GitHub Flow](https://www.youtube.com/watch?v=juLIxo42A_s) (42:06) - GitHub рассказывает о том, как сделать pull request .\n- [Обучающие ресурсы по GitHub](https://help.github.com/articles/git-and-github-learning-resources/) - Обучающие ресурсы по Git и GitHub.\n- [Pro Git](https://git-scm.com/book/en/v2) - Полное издание \"Pro Git\", написанное Скоттом Чаконом и Беном Штраубом и опубликованное Apress.\n- [Git-it](https://github.com/jlord/git-it-electron) - Пошаговое руководство для работы с настольным приложением Git.\n- [Правила полета на Git](https://github.com/k88hudson/git-flight-rules) - Руководство о том, что делать, когда что-то идет не так.\n- [Всестороннее введение в Git и GitHub](https://codeburst.io/git-good-part-a-e0d826286a2a) - Руководство, написанное Madhav Bahl, которое вы должны увидеть, если вы новичок в Git или GitHub - оно подробно описывает GitHub как сервис и концепции управления версиями Git.\n- [Git Guide для начинающих на испанском языке](https://platzi.github.io/git-slides/#/) - Полное руководство по слайдам о Git и GitHub на испанском языке. Una guía completa de diapositivas sobre Git y GitHub explicadas en Español.\n- [Git Kraken](https://www.gitkraken.com/git-client) - Визуальное, кроссплатформенное и интерактивное настольное приложение Git для контроля версий.\n- [Git Tips](https://github.com/git-tips/tips) - Сборник наиболее часто используемых советов и приемов Git.\n- [Git Best Practices](https://sethrobertson.github.io/GitBestPractices/) - Коммитьте чаще, Дорабатывайте позже, Публикуйте единожды: Лучшие практики Git.\n- [Git Interactive Tutorial](https://learngitbranching.js.org/) - Изучайте Git самым наглядным и интерактивным способом.\n- [Complete Git and GitHub Tutorial](https://www.youtube.com/watch?v=apGV9Kg7ics) (1:12:39) - Полное пошаговое руководство по Git и GitHub от [Kunal Kushwaha](https://www.youtube.com/channel/UCBGOUQHNNtNGcGzVq5rIXjw).\n\n## Книги с открытым исходным кодом\n- [Создаём Open Source Software](http://producingoss.com/) - \"Создаём Open Source Software\" - это книга о человеческой стороне Open Source разработки. В ней описывается, как работают успешные проекты, каковы ожидания пользователей и разработчиков, а также культура бесплатного программного обеспечения.\n- [Серия книг Open Source](https://opensource.com/resources/ebooks) - Узнайте больше об Open Source и растущем движении Open Source благодаря полному списку бесплатных электронных книг от https://opensource.com.\n- [Практическое руководство по выпуску программного обеспечения HOWTO](http://en.tldp.org/HOWTO/Software-Release-Practice-HOWTO/) - Данное \"HOWTO\" описывает хорошие подходы к выпуску ПО для Linux и других Open Source проектов. Следуя этим практикам, вы сможете максимально упростить как процессы сборки и использования вашего кода пользователями, так и понимание вашего кода другими разработчиками с возможностью сотрудничать с вами для его улучшения.\n- [Open Sources 2.0: продолжающаяся эволюция](https://archive.org/details/opensources2.000diborich) (2005) - Open Sources 2.0 - это сборник наполненных идеями и наводящих на размышления эссе современных технологических лидеров, который продолжает рисовать эволюционную картину, созданную в книге 1999 года «Open Sources: Голоса Революции».\n- [Архитектура Open Source Приложений](http://www.aosabook.org/en/git.html) - Показывает, как различные аспекты Git работают скрытно, чтобы обеспечить распределенные рабочие процессы, и чем Git отличается от других систем контроля версий (VCS).\n- [Open Sources: Голоса из Open Source революции](https://www.oreilly.com/openbook/opensources/book/) - Очерки первопроходцев в области Open Source, таких как Линус Торвальдс (создатель Linux), Ларри Уолл (создатель Perl) и Ричард Столлман (создатель GNU).\n\n## Open Source инициативы контрибьютеров\n\n- [Up For Grabs](https://up-for-grabs.net/) - Содержит проекты с задачами, подходящими для начинающих.\n- [Только для новичков](https://www.firsttimersonly.com/) - Список багов, помеченных как «только для новичков».\n- [Первые вклады в Open Source](https://firstcontributions.github.io/) - Сделайте свой первый вклад в Open Source за 5 минут. Инструмент и руководство, чтобы помочь новичкам начать работу с разработкой. [Здесь](https://github.com/firstcontributions/first-contributions) находится исходный код GitHub для сайта и возможность внести свой вклад в сам репозиторий.\n- [Hacktoberfest](https://hacktoberfest.digitalocean.com/) - Программа поощрения вклада в Open Source. Зарабатывайте подарки, такие как футболки и наклейки, сделав не менее 4 pull request'ов в октябре.\n- [24 Pull Requests](https://24pullrequests.com) - 24 Pull Requests — это проект, направленный на продвижение сотрудничества в Open Source проектах в течение декабря.\n- [Ovio](https://ovio.org) - Платформа с тщательно отобранными проектами, удобными для контрибьюторов. У неё есть [мощный инструмент по поиску проблем](https://ovio.org/issues), а также она позволяет сохранять проекты и проблемы на потом.\n- [Google Summer of Code](https://summerofcode.withgoogle.com/) - Ежегодная платная программа Google, направленная на привлечение большего числа студентов-разработчиков к разработке программного обеспечения с открытым исходным кодом.\n- [Rails Girls Summer of Code](https://railsgirlssummerofcode.org/) - Глобальная программа стипендий для женщин и небинарных программистов, где они работают над существующими проектами с открытым исходным кодом и расширяют свой набор навыков.\n- [Major League Hacking Fellowship](https://fellowship.mlh.io/) - Альтернатива удаленной стажировке для начинающих технологов, где они создают или участвуют в проектах с открытым исходным кодом.\n\n## Open Source программы для практики\n\n- [Google Summer of Code](https://summerofcode.withgoogle.com)\n- [FossAsia](https://fossasia.org)\n- [MLH Fellowship](https://fellowship.mlh.io)\n- [Outreachy](https://www.outreachy.org)\n- [Hacktoberfest](https://hacktoberfest.digitalocean.com)\n- [CNCF](https://events.linuxfoundation.org/kubecon-cloudnativecon-north-america/)\n- [Microsoft Reinforcement learning](https://www.microsoft.com/en-us/research/academic-program/rl-open-source-fest/)\n\n## Лицензия\n<a rel=\"license\" href=\"http://creativecommons.org/licenses/by-sa/4.0/\"><img alt=\"Creative Commons License\" style=\"border-width:0\" src=\"https://i.creativecommons.org/l/by-sa/4.0/88x31.png\" /></a><br />This work is licensed under a <a rel=\"license\" href=\"http://creativecommons.org/licenses/by-sa/4.0/\">Creative Commons Attribution-ShareAlike 4.0 Международная лицензия</a>.\n"
  },
  {
    "path": "README-SA.md",
    "content": "<!-- Do not translate this -->\n<details>\n<summary>\n<strong> Read this guide in other languages </strong>\n</summary>\n    <ul>\n        <li><a href=\"./README.md\"> English </a></li>\n        <li><a href=\"./README-MR.md\"> मराठी </a></li>\n        <li><a href=\"./README-BN.md\"> বাংলা </a></li>\n        <li><a href=\"./README-CN.md\"> 中文 </a></li>\n        <li><a href=\"./README-RU.md\"> русский </a></li>\n        <li><a href=\"./README-RO.md\"> Românesc </a></li>\n        <li><a href=\"./README-IT.md\"> Italiano </a></li>\n        <li><a href=\"./README-ID.md\"> Indonesia </a></li>\n        <li><a href=\"./README-ES.md\"> Español </a></li>\n        <li><a href=\"./README-pt-BR.md\"> Português (BR) </a></li>\n        <li><a href=\"./README-DE.md\"> Deutsch </a></li>\n        <li><a href=\"./README-HE.md\"> עברית </a></li>\n        <li><a href=\"./README-GR.md\"> Ελληνικά </a></li>\n        <li><a href=\"./README-FR.md\"> Français </a></li>\n        <li><a href=\"./README-TR.md\"> Turkish </a></li>\n        <li><a href=\"./README-KO.md\"> 한국어 </a></li>\n        <li><a href=\"./README-JA.md\"> 日本語 </a></li>\n        <li><a href=\"./README-UZ.md\"> O'zbek</a></li>\n        <li><a href=\"./README-HI.md\"> हिंदी </a></li>\n        <li><a href=\"./README-FA.md\"> فارسی </a></li>\n        <li><a href=\"./README-UR.md\">اردو </a></li>\n        <li><a href=\"./README-AR.md\">اللغة العربية </a></li>\n        <li><a href=\"./README-TA.md\">தமிழ்</a></li>\n        <li><a href=\"./README-NE.md\">नेपाली</a></li>\n        <li><a href=\"./README-ML.md\">മലയാളം</a></li>\n    </ul>\n</details>\n<!-- Do not translate this -->\n\n# नवशिक्षिता: मुक्तस्रोतयोगदानकर्त्रृणां स्वागतं!\n\n[![अभ्यर्थनस्य स्वागतं कुर्वन्तु](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat)](http://makeapullrequest.com)\n[![प्रथमतया केवलं अनुरूप](https://img.shields.io/badge/first--timers--only-friendly-blue.svg)](https://www.firsttimersonly.com/)\n[![साधनानि परीक्ष्यन्ताम्](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml/badge.svg)](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml)\n\nएषा मुक्तस्रोतेषु योगदानं कर्तुं नवोदितानां कृते साधनानां सूची अस्ति।\n\nयदि भवन्त: अत्राधिकं साधनं प्राप्नुवन्ति तर्हि कृपया एकं पूल् अनुरोधस्य माध्यमेन योगदानं कुर्वन्तु।\n\nयदि भवतः कश्चन प्रश्नः वा टिप्पणी अस्ति तर्हि कृपया एकं मुद्दं निर्माणं कुर्वन्तु।\n\n**अन्तर्वस्तु**\n\n- [सामान्यरूपेण मुक्तस्रोतेषु योगदानं कर्तुं](#contributing-to-open-source-in-general)\n- [सीधा GitHub मध्ये अन्वेषणं कुर्वन्तु](#direct-github-searches)\n- [मोज़िला योगदानकर्तुः पारिस्थितिकतन्त्रं](#mozillas-contributor-ecosystem)\n- [नवमुक्तस्रोतयोगदानकर्तृणां कृते उपयोगीनि लेखानि](#useful-articles-for-new-open-source-contributors)\n- [संस्करणनियन्त्रणस्य उपयोगं कुर्वन्तु](#using-version-control)\n- [मुक्तस्रोतपुस्तकानि](#open-source-books)\n- [मुक्तस्रोतयोगदानपहलाः](#open-source-contribution-initiatives)\n- [लाइसेंसः](#license)\n\n## सामान्यरूपेण मुक्तस्रोतेषु योगदानं कर्तुं\n- [मुक्तस्रोतेषु योगदानं कर्तुं निश्चितगाइड्](https://www.freecodecamp.org/news/the-definitive-guide-to-contributing-to-open-source-900d5f9f2282/) by [@DoomHammerNG](https://twitter.com/DoomHammerNG)\n- [मुक्तस्रोतस्य एकं परिचयं](https://www.digitalocean.com/community/tutorial_series/an-introduction-to-open-source) - GitHub मध्ये भवतः सफलतायाः मार्गदर्शनाय DigitalOcean द्वारा ट्यूटोरियलम्।\n- [Issuehub.io](http://issuehub.io/) - लेबलं च भाषया GitHub समस्याः अन्वेष्टुं एकं उपकरणम्।\n- [Code Triage](https://www.codetriage.com/) - लोकप्रियभाण्डागाराणां च भाषया परीक्षणस्य कृते समस्याः अन्वेष्टुं उपकरणम्।\n- [Awesome-for-beginners](https://github.com/MunGell/awesome-for-beginners) - एकं GitHub रेपो यः नवयोगदानकर्तृणां कृते उत्तमानि बग्स् युक्तानि प्रोजेक्टान् संगृह्य वर्णयति च लेबलम्।\n- [Open Source Guides](https://opensource.guide/) - तेषां व्यक्तिनां, समुदायानां च कम्पनीनां कृते साधनानां संग्रहः यः मुक्तस्रोतप्रोजेक्टं चलयन्ति च तस्मिन् योगदानं कर्तुं शिक्षयन्ति।\n- [45 Github Issues Dos and Don’ts](https://hackernoon.com/45-github-issues-dos-and-donts-dfec9ab4b612) -GitHub मध्ये Do's च Don'ts।\n- [GitHub Guides](https://docs.github.com/en) - GitHub यः प्रभावशीलतया उपयोगं कर्तुं मूलगाइड्।\n- [Contribute to Open Source](https://github.com/danthareja/contribute-to-open-source) - एकं सिमुलेशनपरियोजनायाः कृते कोडस्य योगदानं कृत्वा GitHub workflow ज्ञातुम्।\n- [Linux Foundation's Open Source Guides for the Enterprise](https://www.linuxfoundation.org/resources/open-source-guides) - लिनक्सफाउंडेशनस्य मुक्तस्रोतस्य गाइड्।\n- [CSS Tricks An Open Source Etiquette Guidebook](https://css-tricks.com/open-source-etiquette-guidebook/) - केण्ट्सी डोड्स् च साराद्रैसनरः द्वारा लिखितं एकं मुक्तस्रोतशिष्टाचारगाइडबुक्।\n- [A to Z Resources for Students](https://github.com/dipakkr/A-to-Z-Resources-for-Students) - एकं नवीनकोडिङ्गभाषां ज्ञातुम् कॉलेज्चात्राणां कृते साधनानां च अवसराणां घुमावदारसूचिः।\n- [Pull Request Roulette](http://www.pullrequestroulette.com/) - एषा साइट् GitHub मध्ये होस्टिकृतानि मुक्तस्रोतप्रोजेक्टेभ्यः समन्वितानि समीक्षा कृते प्रस्तुतानि पूलानुरोधानां सूची अस्ति।\n- [\"How to Contribute to an Open Source Project on GitHub\" by Egghead.io](https://egghead.io/courses/how-to-contribute-to-an-open-source-project-on-github) - GitHub मध्ये मुक्तस्रोतपरियोजनायां योगदानं कथं आरभ्यते इति एकं क्रमबद्धं वीडियो गाइड्।\n- [Contributing to Open Source: A Live Walkthrough from Beginning to End](https://medium.com/@kevinjin/contributing-to-open-source-walkthrough-part-0-b3dc43e6b720) - एके मुक्तस्रोतयोगदाने अस्य पूर्वाभ्यासे एकं उपयुक्तं प्रोजेक्टं चुनन्ति च एकस्मिन् समस्यायां कर्म कृत्वा, PR मध्ये विलयः इति सर्वं समाहितम् अस्ति।\n- [\"How to Contribute to Open Source Project by\" Sarah Drasner](https://css-tricks.com/how-to-contribute-to-an-open-source-project/) - ते GitHub मध्ये अन्यस्य परियोजनायाः कृते एकं पूलानुरोधः (PR) योगदानं कर्तुं ध्यानं दत्तवन्तः सन्ति।\n- [\"How to get started with Open Source by\" Sayan Chowdhury](https://www.hackerearth.com:443/getstarted-opensource/) - एषः लेखः स्वप्संदीष्टया भाषया रुच्याधारितायां नौसिखियाणां कृते मुक्तस्रोतेषु योगदानं कर्तुं साधनान्य् अपि समावेशयति।\n- [\"Browse good first issues to start contributing to open source\"](https://github.blog/2020-01-22-browse-good-first-issues-to-start-contributing-to-open-source/) - GitHub इदानीं भवन्तं मुक्तस्रोतेषु योगदानं कर्तुं आरभ्य प्रथमं उत्तमानि समस्याः अन्वेष्टुं साहाय्यं करोति।\n- [\"How to Contribute to Open Source Project\" by Maryna Z](https://rubygarage.org/blog/how-contribute-to-open-source-projects) - एषः व्यापकलेखः व्यवसायानां कृते निर्दिष्टः अस्ति (किन्तु व्यक्तिगतयोगदानकर्तृणां कृते अपि उपयोगीनः) यत्र एषः मुक्तस्रोतप्रोजेक्टेभ्यः योगदानं कर्तुं कथं, किं च उचितं इति चर्चा अस्ति।\n- [\"start-here-guidelines\" by Andrei](https://github.com/zero-to-mastery/start-here-guidelines) - मुक्तस्रोतखेलस्य लोकः मुक्तस्रोतप्रयोजनाङ्गणे आरभते। विशेषतया शिक्षाया व्यावहारिकानुभवोद्देश्यानां कृते रचितम् अस्ति।\n\n## सीधा GitHub मध्ये अन्वेषणं कुर्वन्तु\nअन्वेषणस्य परिणामाः यः सीधा GitHub मध्ये योगदानं कर्तुं योग्यसमस्याः सूचयन्ति।\n- [is:issue is:open label:beginner](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Abeginner)\n- [is:issue is:open label:easy](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Aeasy)\n- [is:issue is:open label:first-timers-only](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Afirst-timers-only)\n- [is:issue is:open label:good-first-bug](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Agood-first-bug)\n- [is:issue is:open label:\"good first issue\"](https://github.com/search?utf8=%E2%9C%93&q\n\n=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22)\n- [is:issue is:open label:help wanted](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3A%22help+wanted%22)\n\n## मोज़िला योगदानकर्तुः पारिस्थितिकतन्त्रं\nमोज़िलायाः मुक्तस्रोतयोगदानकर्तृणां पर्यावरणे विभिन्नानि प्रकाराणि योगदानानि कर्तुं समर्था उपक्रमाः सन्ति।\n- [मोज़िला योगदानकर्तृणां गाइड्स्](https://mozilla.github.io/ecosystem-platform/docs/fundamentals/contributing)\n- [Good first bugs (GitHub)](https://github.com/search?l=&q=user%3Amozilla+label%3A\"good+first+issue\"&type=Issues)\n- [Open Innovation](https://wiki.mozilla.org/Innovation) - मोज़िलायाः नवाचारस्य भित्तिं समाहितम् अस्ति।\n- [What can I do for Mozilla?](https://whatcanidoformozilla.org/) - उपयोगकर्तृणां रुचिकरं कार्यं अन्वेष्टुं यः मोज़िलायाः स्वचालितं साधनं दत्तम् अस्ति।\n- [Common Voice](https://commonvoice.mozilla.org/en) - मोज़िलायाः मुक्तवाणीविकल्पायां योगदानं कर्तुं।\n- [WebMaker](https://webmaker.org/) - नवीननिर्माणकर्तृणां शिक्षायै एकं प्लेटफार्म अस्ति।\n\n## नवमुक्तस्रोतयोगदानकर्तृणां कृते उपयोगीनि लेखानि\nसामान्यरूपेण मुक्तस्रोतेषु योगदानस्य गाइडानुसरणाय।\n- [First Timers Only](http://www.firsttimersonly.com/) - स्वमुक्तस्रोतप्रथमयोजनायाः कृते एकं योगदानकर्तारं प्राप्तुं रुचंकरोति।\n- [आपणि प्रथमतया योगदानं कथं आरभ्यन्ते](https://medium.com/multiwavelength/getting-into-open-source-for-the-first-time-1a1e5)\n- [आपणि GitHub मध्ये योगदानं कथं कर्तुं आरभन्ते](https://thenewstack.io/getting-started-contributing-open-source-github/)\n\n## संस्करणनियन्त्रणस्य उपयोगं कुर्वन्तु\nभवतः संस्करणनियन्त्रणकौशलं सुधारयन्तु। यदि आपणे पूर्वं कदापि संस्करणनियन्त्रणस्य उपयोगः न कृतवान्तः तर्हि आपणं एतस्य अध्ययनं आवश्यकम् अस्ति।\n- [Git एकं संक्षिप्तगाइड्](https://rogerdudler.github.io/git-guide/index.html) - एकं संक्षिप्तगाइड् भवतः Git आरभ्य ज्ञानं शीघ्रं प्राप्तुं।\n- [टेक् टर्मिनल्](https://learngitbranching.js.org/?locale=hi_IN) - एकं उत्कृष्टं इंटरैक्टिव गिट शिक्षण साधनं।\n- [गिट-सक्षमं कर्तुं](https://happygitwithr.com/) - R आणि RStudio मध्ये कार्यं कुर्वन्ति।\n- [गिटमध्ये शाखायाः अभ्यासं कुर्वन्तु](https://learngitbranching.js.org/?locale=en_US) - एकं उत्कृष्टं इंटरैक्टिव गिट शिक्षण साधनं।\n- [वीडियोः आरभ्य - गिट् इनि फाइव मिनिट्स्](https://www.youtube.com/watch?v=3_mO9INqdZc) - एकं वीडियो यत्र आपणं पञ्चमिनिटेषु गिटं कथं प्रयोगं कुर्वन्ति इति शिक्षयति।\n- [गिट-वर्कफ्लो](https://www.atlassian.com/git/tutorials/comparing-workflows) - गिट वर्कफ्लो प्रक्रिया इत्यस्मिन् शिक्षणम्।\n- [गिट्-लेक्सिकॉनः](https://glossary.techinterviewhandbook.org/tools/git) - गिट-सम्बन्धितशब्दानां गूगल् सार्थः।\n\n## मुक्तस्रोतपुस्तकानि\n- [The Cathedral & the Bazaar](http://www.catb.org/esr/writings/cathedral-bazaar/cathedral-bazaar/) - एरिक्स् एस् रेमण्डस् द्वारा लिखिता, अनेकेषां मुक्तस्रोतदर्शनानां प्रेरणास्त्रोतम् अस्ति।\n- [Producing Open Source Software](http://producingoss.com/) - कार्लोस्स् द्वारा रचितः पाठः यः मुक्तस्रोतसॉफ़्टवेयर निर्माणाय शिक्षयति।\n- [The Art of Community](http://www.artofcommunityonline.org/) - मुक्तस्रोतसमुदायस्य निर्माणं कुर्वन्तः एकस्य लोकप्रियपुस्तकस्य साइट्।\n- [Open Advice](http://open-advice.org/) - नवयोजनानां जनानां कृते एकः उपयोगी पुस्तकः यः पूर्वसिद्धानां योगदानकर्तृणां कार्य्येषु योगदानं ददाति।\n- [Forge Your Future with Open Source](https://pragprog.com/book/vbopens/fyfos-forge-your-future-with-open-source) - ओपन सोर्स प्रोजेक्ट्स में योगदान करके कॅरिअर कैसे बनाएं।\n- [Free Software, Free Society](https://shop.fsf.org/books/free-software-free-society-selected-essays-richard-m-stallman) - आर.एम. स्टालमैन् द्वारा रचितः पाठः यः मुक्तस्रोतसॉफ्टवेयरविचाराधारस्य प्रारम्भिकेतिहासस्य च चर्चा अस्ति।\n\n## मुक्तस्रोतयोगदानपहलाः\nविविधासु मुक्तस्रोतपरियोजनासु योगदानं कुर्वन्तः विशेषतया आयोज्ये अनुष्ठानेषु भागं ग्रहीतुम् इच्छन्ति।\n- [Hacktoberfest](https://hacktoberfest.digitalocean.com/) - एषः प्रतिवर्षं अक्टोबर् मध्ये DigitalOcean आयोज्यः मुक्तस्रोतयोगदानानुष्ठानः अस्ति।\n- [Google Summer of Code](https://summerofcode.withgoogle.com/) - ग्रीष्मकालेषु छात्राणां कृते गूगल् यः वार्षिकं ग्रीष्मकालिनमुक्तस्रोतसंशोधनकार्यक्रमं निर्मायति।\n- [Outreachy](https://www.outreachy.org/) - स्त्रीणां अल्पसंख्यक समुदायानां च योगदानकर्तृणां कृते एकः उपक्रमः अस्ति।\n- [Hack for LA](https://www.hackforla.org/) - मुक्तस्रोतप्रयोजनं येन सामाजिकमुद्द्यानां समाधानं कर्तुं प्रयत्नं कुर्वन्तः।\n- [Open Source Day](https://anitab.org/open-source-day/) - मुक्तस्रोतयोगदानकर्तृणां कृते वार्षिकमुपक्रमः अस्ति।\n\n## लाइसेंसः\nमुक्तस्रोत परियोजनायाः कृते उचितां लाइसेंसं कथं चुनन्ति इति एषः खण्डः भवतः शिक्षयति।\n- [Licensing a repository](https://docs.github.com/en/free-pro-team@latest/github/building-a-strong-community/licensing-a-repository) - GitHub मध्ये मुक्तस्रोतप्रयोजनायां लाइसेंसं कथं जोड़न्ति।\n- [Choose a License](https://choosealicense.com/) - एषा साइट् यः प्रोजेक्टाय हेतु उचितलाइसेंसं कथं चुनन्ति इति शिक्षयति।"
  },
  {
    "path": "README-SI.md",
    "content": "<!-- Do not translate this -->\r\n<details>\r\n<summary>\r\n<strong> Read this guide in other languages </strong>\r\n</summary>\r\n    <ul>\r\n        <li><a href=\"./README.md\"> English </a></li>\r\n        <li><a href=\"./README-MR.md\"> मराठी </a></li>\r\n        <li><a href=\"./README-BN.md\"> বাংলা </a></li>\r\n        <li><a href=\"./README-CN.md\"> 中文 </a></li>\r\n        <li><a href=\"./README-RU.md\"> русский </a></li>\r\n        <li><a href=\"./README-RO.md\"> Românesc </a></li>\r\n        <li><a href=\"./README-IT.md\"> Italiano </a></li>\r\n        <li><a href=\"./README-ES.md\"> Español </a></li>\r\n        <li><a href=\"./README-pt-BR.md\"> Português (BR) </a></li>\r\n        <li><a href=\"./README-DE.md\"> Deutsch </a></li>\r\n        <li><a href=\"./README-GR.md\"> Ελληνικά </a></li>\r\n        <li><a href=\"./README-FR.md\"> Français </a></li>\r\n        <li><a href=\"./README-KO.md\"> 한국어 </a></li>\r\n        <li><a href=\"./README-JA.md\"> 日本語 </a></li>\r\n        <li><a href=\"./README-HI.md\"> हिंदी </a></li>\r\n    </ul>\r\n</details>\r\n<!-- Do not translate this -->\r\n\r\n# ආයුබෝවන්, නව විවෘත මූලාශ්‍ර දායකයිනි!\r\n\r\n[![Pull Requests Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat)](http://makeapullrequest.com)\r\n[![first-timers-only Friendly](https://img.shields.io/badge/first--timers--only-friendly-blue.svg)](https://www.firsttimersonly.com/)\r\n[![Check Resources](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml/badge.svg)](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml)\r\n\r\nමෙය විවෘත මූලාශ්‍ර වෙත සහාය දැක්වීමට කැමති නවකයන් සඳහා මූලාශ්‍ර ලැයිස්තුවකි.\r\n\r\nඔබට අමතර මූලාශ්‍ර ලැබුනහොත් pull request එකක් මඟින් සහාය දක්වන්න.\r\n\r\nඔබට ගැටළු හෝ අදහස් ඇත්නම්, කරුණාකර issue එකක් තනන්න.\r\n\r\n**අන්තර්ගතය**\r\n\r\n- [පොදුවේ විවෘත මූලාශ්‍ර සඳහා සහාය දැක්වීම](#පොදුවේ-විවෘත-මූලාශ්‍ර-සඳහා-සහාය-දැක්වීම)\r\n- [සෘජු GitHub සෙවුම්](#සෘජු-GitHub-සෙවුම්)\r\n- [Mozilla හි දායක පද්ධතිය](#mozillas-contributor-ecosystem)\r\n- [නව විවෘත මූලාශ්‍ර දායකයින් සඳහා වටිනා ලිපි](#useful-articles-for-new-open-source-contributors)\r\n- [අනුවාද පාලනය භාවිතා කිරීම](#using-version-control)\r\n- [විවෘත මූලාශ්‍ර පොත්පත්](#open-source-books)\r\n- [විවෘත මූලාශ්‍ර දානය සඳහා මුලපිරීම්](#open-source-contribution-initiatives)\r\n- [සහභාගීවීම සඳහා විවෘත මූලාශ්‍ර මෘදුකාංග](#open-source-programs-to-participate-in)\r\n- [බලපත්‍රය](#license)\r\n\r\n## පොදුවේ විවෘත මූලාශ්‍ර සඳහා සහාය දැක්වීම\r\n\r\n-  [@DoomHammerNG](https://twitter.com/DoomHammerNG) විසින් රචිත [The Definitive Guide to Contributing to Open Source](https://www.freecodecamp.org/news/the-definitive-guide-to-contributing-to-open-source-900d5f9f2282/)\r\n- [An Intro to Open Source](https://www.digitalocean.com/community/tutorial_series/an-introduction-to-open-source) - GitHub හි දායක සාර්ථකත්වය වෙත ඔබ රැගෙන යාම සඳහා DigitalOcean මඟින් සකස් කළ නිබන්ධ.\r\n- [Issuehub.pro](http://issuehub.pro/) - GitHub හි issues ලේබල හා භාෂා අනුව සෙවීම සඳහා මෙවලමක්.\r\n- [Code Triage](https://www.codetriage.com/) - තවත් repositories සහ issues ලේබල හා භාෂා අනුව පෙරහන් කිරීම සඳහා වැදගත් මෙවලමක්.\r\n- [Awesome-for-beginners](https://github.com/MunGell/awesome-for-beginners) - නව දායකයින් සඳහා හොඳ දෝෂ සහිත ව්‍යාපෘති එකතු කර, ඒවාට ලේබල එකතු කරන GitHub repoවක්.\r\n- [Open Source Guides](https://opensource.guide/) - විවෘත මූලාශ්‍ර ව්‍යාපෘති පවත්වාගෙන යාම හා දායකත්වය දැක්වීම පිළිබඳ පෞද්ගලික, සාමාජික හා ව්‍යාපාර සඳහා මූලාශ්‍රවල එකතුවක්.\r\n- [45 Github Issues Dos and Don’ts](https://hackernoon.com/45-github-issues-dos-and-donts-dfec9ab4b612) - GitHub හි කළ යුතු හා නොකළ යුතු දෑ.\r\n- [GitHub Guides](https://docs.github.com/en) - basic guides on how to use GitHub සාර්ථකව භාවිතා කිරීම පිළිබඳ මූලික මාර්ගෝපදේශ.\r\n- [Contribute to Open Source](https://github.com/danthareja/contribute-to-open-source) - අනුකරණ ව්‍යාපෘතියකට කේත දායකත්වය දක්වමින් GitHub කාර්යය ප්‍රවාහය ඉගෙන ගැනීමට.\r\n- [Linux Foundation's Open Source Guides for the Enterprise](https://www.linuxfoundation.org/resources/open-source-guides) - Linux පදනමෙහි විවෘත මූලාශ්‍ර ව්‍යාපෘති සඳහා මාර්ගෝපදේශය.\r\n- [CSS Tricks An Open Source Etiquette Guidebook](https://css-tricks.com/open-source-etiquette-guidebook/) - Kent C. Dodds සහ Sarah Drasner විසින් රචිත විවෘත මූලාශ්‍ර ආචාරධර්ම පිළිබඳ මාර්ගෝපදේශය.\r\n- [A to Z Resources for Students](https://github.com/dipakkr/A-to-Z-Resources-for-Students) - පාසල් සිසුන් සඳහා නව ක්‍රමලේඛ භාෂාවන් ඉගෙන ගැනීමට සම්පත් සහ අවස්ථා රැගත් සංවෘත ලැයිස්තුවක්.\r\n- [Pull Request Roulette](http://www.pullrequestroulette.com/) - මෙම අඩවියේ Github හි ඇතුළත් විවෘත මූලාශ්‍ර ව්‍යාපෘතියන් හි සමාලෝචනය සඳහා ඉදිරිපත් කළ pull requests ලැයිස්තුවක් පවතියි.\r\n- [\"How to Contribute to an Open Source Project on GitHub\" by Egghead.io](https://egghead.io/courses/how-to-contribute-to-an-open-source-project-on-github) - GitHub හි විවෘත මූලාශ්‍ර ව්‍යාපෘති සඳහා දායක වීම ඇරඹීම පිළිබඳ පියවරෙන් පියවර ඇසිදිසි මාර්ගෝපදේශයක්.\r\n- [Contributing to Open Source: A Live Walkthrough from Beginning to End](https://medium.com/@kevinjin/contributing-to-open-source-walkthrough-part-0-b3dc43e6b720) - මෙම විවෘත මූලාශ්‍ර දායකත්ව මාර්ගෝපදේශය මඟින් ගැළපෙන ව්‍යාපෘතියක් තෝරාගැනීම, දෝෂයක් සමඟ වැඩ කිරීමේ සිට PR merge කරගැනීම දක්වා සියල්ලම දක්වා ඇත.\r\n- [\"How to Contribute to Open Source Project by\" Sarah Drasner](https://css-tricks.com/how-to-contribute-to-an-open-source-project/) - මෙම රචකයන් GitHub හි වෙනත් කෙනකුගේ ව්‍යාපෘතියකට pull request (PR) එකකින් දායක වීම පිළිබඳ සියළුම කරුණු වෙත අවධානය යොමු කරයි.\r\n- [\"How to get started with Open Source by\" Sayan Chowdhury](https://www.hackerearth.com:443/getstarted-opensource/) - මෙම ලිපි නවකයින්ට විවෘත මූලාශ්‍ර වෙත තමන් කැමති ක්‍රමලේඛ භාෂාව යොදාගනිමින් දායකවීම පිළිබඳ වැදගත් කරුණු ගෙනෙයි.\r\n- [\"Browse good first issues to start contributing to open source\"](https://github.blog/2020-01-22-browse-good-first-issues-to-start-contributing-to-open-source/) - GitHub දැන් ඔබට විවෘත මූලාශ්‍ර සඳහා සහාය දැක්වීමට හොඳ පළමු issues සෙවීමට උපකාර කරයි.\r\n- [\"How to Contribute to Open Source Project\" by Maryna Z](https://rubygarage.org/blog/how-contribute-to-open-source-projects) - මෙම පුළුල් ලිපිය ව්‍යාපාර (තනි පුද්ගලයින්ටත් වැදගත්) වෙත කිනම් විවෘත මූලාශ්‍ර ව්‍යාපෘති වෙත සහාය දැක්විය යුතුද, ඒ ඇයි හා කෙසේද යන්න සාකච්ඡා කරයි.\r\n- [\"start-here-guidelines\" by Andrei](https://github.com/zero-to-mastery/start-here-guidelines) -\r\n  Lets Git started in the world of opensource, විවෘත මූලාශ්‍ර ක්‍රීඩා පිටියේ ආරම්භය සනිටුහන් කිරීම පිළිබඳ. විශේෂයෙන්ම අධ්‍යාපන හා ප්‍රායෝගික කුසලතා වැඩිදියුණු කිරීමේ අරමුණින් සකසා ඇත.\r\n- [\"Getting Started with Open Source\" by NumFocus](https://github.com/numfocus/getting-started-with-open-source) - a GitHub repo that helps contributors overcome barriers to entry in දායකයන් හට open-source හි අවතීරණය වීමට ඇති බාධා ජයගැනීමට උදව් වන GitHub repo වක්.\r\n- [\"Opensoure-4-everyone\" by Chryz-hub ](https://github.com/chryz-hub/opensource-4-everyone) - විවෘත මූලාශ්‍ර පිළිබඳ සියල්ල රැගත් repository එකක්. මෙම ව්‍යාපෘතිය GitHub හි සාමාජිකත්ව දෘශ්‍යතාව, මූලික හා උසස් git විධාන සමඟ පුහුණු වීම, විවෘත මූලාශ්‍ර හා සම්බන්ධ වීම සහ තවත් බොහෝ දෑ පිළිබඳ සහාය ලබාදෙයි.\r\n- [\"Open Advice\"](http://open-advice.org/) - නිදහස් මෘදුකාංග ව්‍යාපෘති විශාල ප්‍රමාණයක් පිළිබඳ තොරතුරු එකතුවකි. එහි ජනප්‍රිය දායකයින් 42ක් නිදහස් මෘදුකාංග ලෝකයට අවතීරණ වීමට පෙර දැන සිටියානම් යැයි පවසන ගැටළු කිහිපයකට පිළිතුරු සපයයි. එමඟින් ඔබටත් කොහේ, කෙසේ දායක වූවත්, එයට පන්නරයක් ලබාගත හැක.\r\n- [\"GitHub Learning Lab\"](https://lab.github.com/) - GitHub Learning Lab සමඟ ඔබගේ කුසලතා වර්ධනය කරගන්න. අපගේ මිත්‍රශීලී සහකරු ඔබව උපකාරක ප්‍රතිපෝශණ ලබාදෙන අතරම ඉතා ඉක්මණින් ඔබට අවශ්‍ය කුසලතා, විනෝදජනක හා ප්‍රායෝගික ව්‍යාපෘති මඟින් කියා දෙයි.\r\n- [\"Ten simple rules for helping newcomers become contributors to open projects\"](https://journals.plos.org/ploscompbiol/article?id=10.1371/journal.pcbi.1007296) - මෙම ලිපිය විශාල සමාජ හා එහි සාමාජිකයන්ගේ, නායකයින්ගේ හා ප්‍රෙක්ෂකයන්ගේ අත්දැකීම් ඇසුරු කරගෙන නීති රීති පද්ධති පිළිබඳ සාකච්ඡා කරයි.\r\n- [\"Step-by-Step guide to contributing on GitHub\"](https://www.dataschool.io/how-to-contribute-on-github/) - මෙම මාර්ගෝපදේශය විවෘත මූලාශ්‍ර ව්‍යාපෘතියකට දායක වීමෙහි සම්පූර්ණ ක්‍රියාවලිය, දෘෂ්‍ය හා දිගු භාවිතා කරමින් පියවරෙන් පියවර කියා දේ.\r\n\r\n## සෘජු GitHub සෙවුම්\r\n\r\nGitHub හි දායක වීමට සුදුසු issues වෙත සෘජුවම ගෙනයන සෙවුම් දිගු.\r\n\r\n- [is:issue is:open label:beginner](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Abeginner&type=issues)\r\n- [is:issue is:open label:easy](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Aeasy&type=issues)\r\n- [is:issue is:open label:first-timers-only](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Afirst-timers-only&type=issues)\r\n- [is:issue is:open label:good-first-bug](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Agood-first-bug&type=issues)\r\n- [is:issue is:open label:\"good first issue\"](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22&type=issues)\r\n- [is:issue is:open label:starter](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Astarter&type=issues)\r\n- [is:issue is:open label:up-for-grabs](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Aup-for-grabs&type=issues)\r\n- [is:issue is:open label:easy-fix](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Aeasy-fix&type=issues)\r\n- [is:issue is:open label:\"beginner friendly\"](https://github.com/search?q=beginner+friendly&state=open&type=Issues)\r\n\r\n## Mozilla හි දායකත්ව පද්ධතිය\r\n\r\n- [Good First Bugs](https://bugzilla.mozilla.org/buglist.cgi?quicksearch=sw:%22[good%20first%20bug]%22&limit=0) - ව්‍යාපෘතිය වෙත අවතීරණ වීමට ගැළපේ යැයි ඉන්ජිනේරුවන් විසින් හඳුනාගෙන ඇති දෝෂ.\r\n- [MDN Web Docs](https://developer.mozilla.org/en-US/docs/MDN/Contribute) - MDN Web Docs කණ්ඩායම වෙත අන්තර්ගත දෝෂ හා platform දෝෂ නිරාකරණය කරමින් web platform එක ලේඛනගත කිරීමට සහාය වන්න.\r\n- [Mentored Bugs](https://bugzilla.mozilla.org/buglist.cgi?quicksearch=mentor%3A%40) - විසඳුමක් සකසමින් සිටින විට ගැටළුවක් පැන නැගුනහොත් ඔබට IRC හි උපකාර වීමට උපදේශකයකු පත්කර ඇති දෝෂ.\r\n- [Bugs Ahoy](https://www.joshmatthews.net/bugsahoy/) - Bugzilla හි දෝෂ සෙවීම සඳහා වෙන් කළ අඩවියක්.\r\n- [Firefox DevTools](http://firefox-dev.tools/) - Firefox browser හි developer tools වල සොයාගත් දෝෂ පිළිබඳ තොරතුරු ඇතුළත් අඩවියක්.\r\n- [Start Mozilla](https://twitter.com/StartMozilla) - Mozilla පද්ධතියෙහි නව දායකයින් හට ගැළපෙන issues පිළිබඳ tweet කරන Twitter ගිණුමක්.\r\n\r\n## නව විවෘත මූලාශ්‍ර දායකයින් හට අවශ්‍ය වන ලිපි\r\n\r\n- [How to choose (and contribute to) your first Open Source project](https://github.com/collections/choosing-projects), රචනය: [@GitHub](https://github.com/github)\r\n- [How to find your first Open Source bug to fix](https://www.freecodecamp.org/news/finding-your-first-open-source-project-or-bug-to-work-on-1712f651e5ba/), රචනය: [@Shubheksha](https://github.com/Shubheksha)\r\n- [First Timers Only](https://kentcdodds.com/blog/first-timers-only), රචනය: [@kentcdodds](https://github.com/kentcdodds)\r\n- [Bring Kindness Back to Open Source](https://web.archive.org/web/20201009150545/https://www.hanselman.com/blog/bring-kindness-back-to-open-source), රචනය: [@shanselman](https://github.com/shanselman)\r\n- [Getting into Open Source for the First Time](https://www.nearform.com/blog/getting-into-open-source-for-the-first-time/), රචනය: [@mcdonnelldean](https://github.com/mcdonnelldean)\r\n- [How to Contribute to Open Source](https://opensource.guide/how-to-contribute/), රචනය: [@GitHub](https://github.com/github/opensource.guide)\r\n- [How to Find a Bug in Your Code](https://8thlight.com/insights/how-to-find-a-bug-in-your-code), රචනය: [@dougbradbury](https://twitter.com/dougbradbury)\r\n- [Mastering Markdown](https://docs.github.com/features/mastering-markdown/), රචනය: [@GitHub](https://github.com/githubhttps://github.com/github/docs)\r\n- [First mission: Contributors page](https://forcrowd.medium.com/first-mission-contributors-page-df24e6e70705#.2v2g0no29), රචනය: [@forCrowd](https://github.com/forCrowd)\r\n- [How to make your first Open Source contribution in just 5 minutes](https://www.freecodecamp.org/news/how-to-make-your-first-open-source-contribution-in-just-5-minutes-aaad1fc59c9a/), රචනය: [@roshanjossey](https://github.com/Roshanjossey/)\r\n- [I just got my free Hacktoberfest shirt. Here’s a quick way you can get yours.](https://www.freecodecamp.org/news/i-just-got-my-free-hacktoberfest-shirt-heres-a-quick-way-you-can-get-yours-fa78d6e24307/), රචනය: [@quincylarson](https://www.freecodecamp.org/news/author/quincylarson/)\r\n- [A Bitter Guide To Open Source](https://medium.com/codezillas/a-bitter-guide-to-open-source-a8e3b6a3c1c4), රචනය: [@ken_wheeler](https://medium.com/@ken_wheeler)\r\n- [A junior developer’s step-by-step guide to contributing to Open Source for the first time](https://hackernoon.com/contributing-to-open-source-the-sharks-are-photoshopped-47e22db1ab86), රචනය: [@LetaKeane](https://hackernoon.com/u/letakeane)\r\n- [Learn Git and GitHub Step By Step (on Windows)](https://medium.com/illumination/path-to-learning-git-and-github-be93518e06dc), රචනය: [@ows-ali](https://ows-ali.medium.com/)\r\n- [Why Open Source and How?](https://careerkarma.com/blog/open-source-projects-for-beginners/), රචනය: [@james-gallagher](https://careerkarma.com/blog/author/jamesgallagher/)\r\n- [How to get started with Open Source - By Sayan Chowdhury](https://www.hackerearth.com/getstarted-opensource/)\r\n- [An immersive introductory guide to Open-source](https://developeraspire.hashnode.dev/an-immersive-introductory-guide-to-open-source), රචනය: [Franklin Okolie](https://twitter.com/DeveloperAspire)\r\n- [What open-source should I contribute to](https://kentcdodds.com/blog/what-open-source-project-should-i-contribute-to/), රචනය: [@kentcdodds](https://github.com/kentcdodds)\r\n- [Getting started with contributing to open source](https://stackoverflow.blog/2020/08/03/getting-started-with-contributing-to-open-source/), රචනය: [Zara Cooper](https://stackoverflow.blog/author/zara-cooper/)\r\n- [Beginner's guide to open-source contribution](https://workat.tech/general/article/open-source-contribution-guide-xmhf1k601vdj), රචනය: [Sudipto Ghosh](https://github.com/pydevsg)\r\n- [8 non-code ways to contribute to open source](https://opensource.com/life/16/1/8-ways-contribute-open-source-without-writing-code), රචනය: [OpenSource](https://twitter.com/OpenSourceWay)\r\n- [What is Open Source Software? OSS Explained in Plain English](https://www.freecodecamp.org/news/what-is-open-source-software-explained-in-plain-english/), රචනය: [Jessica Wilkins](https://www.freecodecamp.org/news/author/jessica-wilkins/)\r\n\r\n## අනුවාද පාලනය භාවිතා කිරීම\r\n\r\n- [Think Like (a) Git](http://think-like-a-git.net/) - අරගලයක නිරත වන \"උසස් ආරම්භක,\" යන් හට git සමඟ අත්හදා බැලීමට සරළ උපාය මාර්ග පෙන්වන git ආරම්භක ලේඛනයක්.\r\n- [Try Git](https://docs.github.com/en/get-started/quickstart/set-up-git) - විනාඩි 15 කින් ඔබගේ බ්‍රව්සරයෙන්ම නොමිලේ Git ඉගෙනගන්න.\r\n- [Everyday Git](https://git-scm.com/docs/giteveryday) - දෛනිකව අවශ්‍ය වන සරළම Git විධාන එකතුවක්.\r\n- [Oh shit, git!](https://ohshitgit.com/) - පොදු `git` වැරදි නිවැරදි කරගන්නා ආකාරය සරළ ඉංග්‍රීසියෙන්; රළු වචන නොමැතිව මෙය කියවීමට [Dangit, git!](https://dangitgit.com/) බලන්න.\r\n- [Atlassian Git Tutorials](https://www.atlassian.com/git/tutorials) - `git` භාවිතය පිළිබඳ විවිධ නිබන්ධ.\r\n- [GitHub Git Cheat Sheet](https://education.github.com/git-cheat-sheet-education.pdf) (PDF)\r\n- [freeCodeCamp's Wiki on Git Resources](https://forum.freecodecamp.org/t/wiki-git-resources/13136)\r\n- [GitHub Flow](https://www.youtube.com/watch?v=juLIxo42A_s) (42:06) - Pull request එකක් කිරීම පිළිබඳව GitHub කතාබහක්.\r\n- [GitHub Learning Resources](https://docs.github.com/en/get-started/quickstart/git-and-github-learning-resources) - Git සහ GitHub ඉගෙනීමේ මූලාශ්‍ර.\r\n- [Pro Git](https://git-scm.com/book/en/v2) - Scott Chacon සහ Ben Straub විසින් රචිත, Apress මඟින් පළ කළ සම්පූර්ණ Pro Git පොත.\r\n- [Git-it](https://github.com/jlord/git-it-electron) - Git නිබන්ධ සහිත පියවරෙන් පියවර desktop මෘදුකාංගය.\r\n- [Flight Rules for Git](https://github.com/k88hudson/git-flight-rules) - යමක් වැරදුනු විටක කළයුතු දෑ පිළිබඳ මඟපෙන්වීමක්.\r\n- [Git Guide for Beginners in Spanish](https://platzi.github.io/git-slides/#/) - ස්පාඤ්ඤ භාෂාවෙන් ලියැවුනු සම්පූර්ණ git සහ GitHub පිළිබඳ විනිවිදක (Slides) එකතුවක්. Una guía completa de diapositivas sobre git y GitHub explicadas en Español.\r\n- [Git Kraken](https://www.gitkraken.com/git-client) - අනුවාද පාලනයට දෘෂ්‍ය, බහු පද්ධති හා ප්‍රායෝගික `git` desktop මෘදුකාංගය.\r\n- [Git Tips](https://github.com/git-tips/tips) - වැඩියෙන්ම භාවිතා වන git ඉඟි හා උපක්‍රම එකතුවක්.\r\n- [Git Best Practices](https://sethrobertson.github.io/GitBestPractices/) - Commit Often, Perfect Later, Publish Once: Git Best Practices.\r\n- [Git Interactive Tutorial](https://learngitbranching.js.org/) - Git ඉගෙනීමට හොඳම දෘශ්‍ය හා ප්‍රායොගික ක්‍රමය.\r\n- [Complete Git and GitHub Tutorial](https://www.youtube.com/watch?v=apGV9Kg7ics) (1:12:39) - [Kunal Kushwaha](https://www.youtube.com/channel/UCBGOUQHNNtNGcGzVq5rIXjw) විසින් සකස් කළ සම්පූර්ණ Git සහ GitHub මාර්ගෝපදේශය.\r\n\r\n## විවෘත මූලාශ්‍ර පොත්පත්\r\n\r\n- [Producing Open Source Software](https://producingoss.com/) - Producing Open Source Software යනු විවෘත මූලාශ්‍ර සංවර්ධනය පිළිබඳ මානව දෘශ්ටියකින් බලන පොතකි. එය සාර්ථක ව්‍යාපෘති ක්‍රියා කරන ආකාරය, පරිශීලකයන් හා ඉංජිනේරුවන් අතර අපේක්ෂා හා විවෘත මෘදුකාංග හා සම්බන්ධ සංස්කෘතිය හදාරයි.\r\n- [Open Source Book Series](https://opensource.com/resources/ebooks) - https://opensource.com වෙතින් ඉදිරිපත් කරන විවෘත මූලාශ්‍ර හා එහි වැඩෙන සමූහය පිළිබඳ විශේෂිත නොමිලේ ලබාදෙන විද්‍යුත් පොත් එකතුව.\r\n- [Software Release Practice HOWTO](https://tldp.org/HOWTO/Software-Release-Practice-HOWTO/) - මෙම HOWTO මාර්ගෝපදේශය Linux සහ වෙනත් විවෘත මූලාශ්‍ර ව්‍යාපෘති සඳහා ගැළපෙන හොඳ release practices කියා දේ. මෙම ක්‍රියා අනුගමනය කිරීමෙන් ඔබට පරිශීලකයන් හට සරලවම කේතය ගොනු කිරීමට ද, වෙනත් ඉංජිනේරුවන් හට ඔබගේ කේතය තේරුම් ගෙන ඔබ සමඟ එය දියුණු කිරීමට ද හැකියාව ලබා දේ.\r\n- [Open Sources 2.0 : The Continuing Evolution](https://archive.org/details/opensources2.000diborich) (2005) - විවෘත මූලාශ්‍ර 2.0 යනු 1999 ගොනු කෙරුණු  Open Sources: Voices from the Revolution පොතෙහි ගෙන ආ පරිදි වර්තමාන තාක්ෂණික පුරෝගාමීන්ගේ වටිනා, සිතුවිලි දනවන රචනා කිහිපයක එකතුවකි.\r\n- [The Architecture of Open Source Applications](http://www.aosabook.org/en/git.html) - ‍Git හි විවිධ අංගයන් distributed workflows සාර්ථක කිරීමට අභ්‍යන්තරයෙන් ක්‍රියා කරන ආකාරය පෙන්වන අතර එය වෙනත් version control systems (VCSs) වලින් වෙනස් වන ආකාරය ද පැහැදිලි කරයි.\r\n- [Open Sources: Voices from the Open Source Revolution](https://www.oreilly.com/openbook/opensources/book/) - Linus Torvalds (Linux), Larry Wall (Perl) සහ Richard Stallman (GNU) යන විවෘත මූලාශ්‍ර හි පුරෝගාමීන්ගේ රචනා එකතුවක්.\r\n\r\n## විවෘත මූලාශ්‍ර දායක මුලපිරීම්\r\n\r\n- [Up For Grabs](https://up-for-grabs.net/) - නවකයින්ට ගැලපෙන issues ඇතුළත් ව්‍යාපෘති ඇත\r\n- [First Contributions](https://firstcontributions.github.io/) - විනාඩි 5ක් ඇතුළත ඔබගේ පළමු විවෘත මූලාශ්‍ර දායකත්වය දක්වන්න. නවකයන් හට දායකත්ව සමඟ එකතු වීමට හොඳ මෙවලමක් හා නිබන්ධයක්. [මෙහි ඇත්තේ](https://github.com/firstcontributions/first-contributions) එම වෙබ් අඩවියෙහි GitHub විවෘත කේතය හා එම repository එකට උපකාර කිරීමට හැකි ආකාරයයි.\r\n- [First Timers Only](https://www.firsttimersonly.com/) - \"first-timers-only\" ලෙස ලේබලගත කළ දෝෂවල ලැයිස්තුවක්.\r\n- [Hacktoberfest](https://hacktoberfest.digitalocean.com/) - විවෘත මූලාශ්‍ර දායකත්ව දිරිමත් කිරීමට සකස් කළ ව්‍යාපෘතියකි. ඔක්තෝම්බර් මාසයේ අවම වශයෙන් pull requests 4ක් වත් කර ටීශර්ට් හා ස්ටිකර වැනි තෑගි දිනාගන්න.\r\n- [24 Pull Requests](https://24pullrequests.com) - 24 Pull Requests යනු විවෘත මූලාශ්‍ර සහයෝගිතාව වැඩිදියුණු කිරීමට දෙසැම්බර් මාසයේ පැවැත්වෙන ව්‍යාපෘතියකි.\r\n- [Ovio](https://ovio.org) - දායකයින්ට ගැළපෙන තෝරාගත් ව්‍යාපෘතිවල එකතුවකි. මෙය පසුව බැලීමට සුරැකිව තැබීමට ද හැකි [ගුණාත්මක issues සෙවුම් මෙවලමකින්](https://ovio.org/issues) ද සමන්විත ය.\r\n- [Google Summer of Code](https://summerofcode.withgoogle.com/) - තව තවත් සිසු ඉංජිනේරුවන් විවෘත මූලාශ්‍ර මෘදුකාංග සැකසීමට ගෙන ඒමට Google විසින් පවත්වනු ලබන මුදල් ලබාදෙන වාර්ෂික වැඩසටහනකි.\r\n- [Rails Girls Summer of Code](https://railsgirlssummerofcode.org/) - පවතින විවෘත මූලාශ්‍ර ව්‍යාපෘති සමඟ සම්බන්ධ වී කාන්තාවන් හා ද්වි නොවන පුද්ගලයන් හට තම හැකියා දියුණු කරගැනීමට අවස්ථාව සපයන ගෝලීය සහයෝගිතාවයකි.\r\n- [Major League Hacking Fellowship](https://fellowship.mlh.io/) - විශිෂ්ඨ තාක්ෂ්‍ණිකයන් හට විවෘත මූලාශ්‍ර ව්‍යාපෘති සැකසීමට හා ඒවාට උපකාර කිරීමට දුරස්ථ පුහුණු මාධ්‍යයක්.\r\n\r\n## සහභාගි වීමට විවෘත මූලාශ්‍ර වැඩසටහන්\r\n\r\n- [Google Summer of Code](https://summerofcode.withgoogle.com)\r\n- [FossAsia](https://fossasia.org)\r\n- [MLH Fellowship](https://fellowship.mlh.io)\r\n- [Outreachy](https://www.outreachy.org)\r\n- [Hacktoberfest](https://hacktoberfest.digitalocean.com)\r\n- [CNCF](https://events.linuxfoundation.org/kubecon-cloudnativecon-north-america/)\r\n- [Microsoft Reinforcement learning](https://www.microsoft.com/en-us/research/academic-program/rl-open-source-fest/)\r\n\r\n## බලපත්‍රය\r\n\r\n<a rel=\"license\" href=\"https://creativecommons.org/licenses/by-sa/4.0/\"><img alt=\"Creative Commons License\" style=\"border-width:0\" src=\"https://licensebuttons.net/l/by-sa/4.0/88x31.png\" /></a><br />මෙම ව්‍යාපෘතිය <a rel=\"license\" href=\"https://creativecommons.org/licenses/by-sa/4.0/\">Creative Commons Attribution-ShareAlike 4.0 International License</a> යටතේ බලපත්‍රගත කර ඇත."
  },
  {
    "path": "README-SL.md",
    "content": "<!-- Do not translate this -->\n<details>\n<summary>\n<strong> Read this guide in other languages </strong>\n</summary>\n    <ul>\n        <li><a href=\"./README.md\"> English </a></li>\n        <li><a href=\"./README-MR.md\"> मराठी </a></li>\n        <li><a href=\"./README-BN.md\"> বাংলা </a></li>\n        <li><a href=\"./README-CN.md\"> 中文 </a></li>\n        <li><a href=\"./README-RU.md\"> русский </a></li>\n        <li><a href=\"./README-RO.md\"> Românesc </a></li>\n        <li><a href=\"./README-IT.md\"> Italiano </a></li>\n        <li><a href=\"./README-ES.md\"> Español </a></li>\n        <li><a href=\"./README-pt-BR.md\"> Português (BR) </a></li>\n        <li><a href=\"./README-DE.md\"> Deutsch </a></li>\n        <li><a href=\"./README-GR.md\"> Ελληνικά </a></li>\n        <li><a href=\"./README-FR.md\"> Français </a></li>\n        <li><a href=\"./README-KO.md\"> 한국어 </a></li>\n        <li><a href=\"./README-JA.md\"> 日本語 </a></li>\n        <li><a href=\"./README-HI.md\"> हिंदी </a></li>\n    </ul>\n</details>\n<!-- Do not translate this -->\n\n# Dobrodošli novinci odprtokodnih projektov! \n\n[![Pull Requests Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat)](http://makeapullrequest.com)\n[![first-timers-only Friendly](https://img.shields.io/badge/first--timers--only-friendly-blue.svg)](https://www.firsttimersonly.com/)\n[![Check Resources](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml/badge.svg)](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml)\n\nTukaj je seznam virov za ljudi, ki so novi pri sodelovanju pri odprtokodnih projektih.\n\nČe najdete dodatne vire, prosimo naredite `pull request`.\n\nČe imate kakšna vprašanja ali komentarje, prosimo ustvarite `issues`.\n\n**Vsebina**\n\n- [Prispevanje odprtokodnim projektom v splošnem](#prispevanje-odprtokodnim-projektom-v-splošnem)\n- [Neposredni GitHub zadetki](#neposredni-GitHub-zadetki)\n- [Mozilla ekosistem prispevanja](#mozilla-ekosistem-prispevanja)\n- [Uporabni članki za nove pri prispevanju odprtokodnim projektom](#uporabni-članki-za-nove-pri-prispevanju-odprtokodnim-projektom)\n- [Uporabljanje Version Control](#uporabljanje-Version-Control)\n- [Knjige o odprtokodnih projektih](#knjige-o-odprtokodnih-projektih)\n- [Pobude za odprtokodne prispevke](#pobude-za-odprtokodne-prispevke)\n- [Odprtokodni programi za sodelovanje](#odprtokodni-programi-za-sodelovanje)\n- [Licenca](#licenca)\n\n## Prispevanje odprtokodnim projektom v splošnem\n\n- [Dokončni vodnik za prispevanje k odprtokodnim projektom](https://www.freecodecamp.org/news/the-definitive-guide-to-contributing-to-open-source-900d5f9f2282/) by [@DoomHammerNG](https://twitter.com/DoomHammerNG)\n- [Uvod k odprtokodnim projektom](https://www.digitalocean.com/community/tutorial_series/an-introduction-to-open-source) - Vodniki DigitalOcean, ki vas vodijo na poti uspešnega prispevanja na GitHub.\n- [Issuehub.pro](http://issuehub.pro/) - orodje za iskanje `issues` na GitHubu po oznaki in jeziku.\n- [Code Triage](https://www.codetriage.com/) - Še eno orodje za iskanje popularnih projektov in `issues` filtriranih po jeziku.\n- [Odlično za začetnike](https://github.com/MunGell/awesome-for-beginners) - GitHub, ki zbira projekte z dobrimi `bugs` za nove sodelavce in uporablja `labels`, da jih opiše.\n- [Odprtokodni vodiči](https://opensource.guide/) - Zbirka virov za posameznike, skupnosti in podjetja, ki se želijo naučiti voditi in prispevati k odprtokodnemu projektu.\n- [45 Github Issues Dos and Don’ts](https://hackernoon.com/45-github-issues-dos-and-donts-dfec9ab4b612) - Kaj JA in kaj NE na GitHubu.\n- [GitHub vodiči](https://docs.github.com/en) - Osnovni vodiči kako uporabljati GitHub učinkovito.\n- [Prispevanje odprtokodnim projektom](https://github.com/danthareja/contribute-to-open-source) - Naučite se delovnega poteka GitHub tako, da prispevate kodo k simulacijskemu projektu.\n- [Odprtokodni vodniki za podjetja Linux Foundation](https://www.linuxfoundation.org/resources/open-source-guides) - Vodniki Fundacije Linux za odprtokodne projekte.\n- [CSS triki, odprtokodni vodnik za bonton](https://css-tricks.com/open-source-etiquette-guidebook/) - Odprtokodni vodnik po bontonu, ki sta ga napisala Kent C. Dodds in Sarah Drasner.\n- [Viri od A do Ž za študente](https://github.com/dipakkr/A-to-Z-Resources-for-Students) - Pripravljen seznam virov in priložnosti za študente, da se naučijo novega jezika.\n- [Pull Request Roulette](http://www.pullrequestroulette.com/) - To spletno mesto ima seznam `pull request`, predloženih v pregled, ki pripadajo odprtokodnim projektom, ki so na Githubu.\n- [\"How to Contribute to an Open Source Project on GitHub\" by Egghead.io](https://egghead.io/courses/how-to-contribute-to-an-open-source-project-on-github) - Video vodnik po korakih, kako začeti prispevati k odprtokodnim projektom na GitHubu.\n- [Contributing to Open Source: A Live Walkthrough from Beginning to End](https://medium.com/@kevinjin/contributing-to-open-source-walkthrough-part-0-b3dc43e6b720) - Ta pregled odprtokodnega prispevka zajema vse od izbire primernega projekta, dela na `issues` do združitve `pull request`.\n- [\"How to Contribute to Open Source Project by\" Sarah Drasner](https://css-tricks.com/how-to-contribute-to-an-open-source-project/) - Osredotočajo se na bistvo prispevanja `pull request` k projektu nekoga drugega na GitHubu.\n- [\"How to get started with Open Source by\" Sayan Chowdhury](https://www.hackerearth.com:443/getstarted-opensource/) - Ta članek zajema vire za prispevanje k odprtokodnim za začetnike na podlagi njihovega najljubšega jezika.\n- [\"Browse good first issues to start contributing to open source\"](https://github.blog/2020-01-22-browse-good-first-issues-to-start-contributing-to-open-source/) - GitHub vam zdaj pomaga najti dobre prve `issues`, s katerimi lahko začnete prispevati k odprtokodnim projektom.\n- [\"How to Contribute to Open Source Project\" by Maryna Z](https://rubygarage.org/blog/how-contribute-to-open-source-projects) - Ta izčrpen članek je namenjen podjetjem (vendar še vedno uporaben za posamezne sodelavce), kjer govori o tem, zakaj, kako in h katerim odprtokodnim projektom prispevati.\n- [\"start-here-guidelines\" by Andrei](https://github.com/zero-to-mastery/start-here-guidelines) - Naj Git začne v svetu odprtokodnih, začenši na odprtokodnem igrišču. Posebej zasnovan za izobraževanje in praktične izkušnje.\n- [\"Getting Started with Open Source\" by NumFocus](https://github.com/numfocus/getting-started-with-open-source) - GitHub `repo`, ki pomaga sodelavcem premagati ovire za vstop v odprtokodno.\n- [\"Opensoure-4-everyone\" by Chryz-hub ](https://github.com/chryz-hub/opensource-4-everyone) - `Repo` za vse, kar je povezano z odprtokodnimi projekti. To je projekt, ki pomaga pri prepoznavnosti članstva v GitHubu, vaditi z osnovnimi in naprednimi ukazi git, začeti z odprtokodnim projekti in še več.\n- [\"Open Advice\"](http://open-advice.org/) - Zbirka znanja iz najrazličnejših projektov brezplačne programske opreme. Odgovarja na vprašanje, kaj bi 42 uglednih sodelavcev želelo vedeti, ko so začeli, da bi lahko dobili prednost, ne glede na to, kako in kje prispevate.\n- [\"GitHub Learning Lab\"](https://lab.github.com/) - Izboljšajte svoje sposobnosti z GitHub Learning Lab. Naš prijazen bot vas bo popeljal skozi vrsto zabavnih, praktičnih projektov, da se boste v kratkem času naučili veščin, ki jih potrebujete, in ob tem delil koristne povratne informacije.\n- [\"Ten simple rules for helping newcomers become contributors to open projects\"](https://journals.plos.org/ploscompbiol/article?id=10.1371/journal.pcbi.1007296) - Ta članek zajema pravila, ki temeljijo na študijah številnih skupnosti in izkušnjah članov, voditeljev in opazovalcev.\n- [\"Step-by-Step guide to contributing on GitHub\"](https://www.dataschool.io/how-to-contribute-on-github/) - vodnik po korakih s podpornimi vizualnimi elementi in povezavami glede celotnega procesa prispevanja k odprtokodnemu projektu.\n\n## Neposredni GitHub zadetki\n\nPovezave, ki neposredno usmerjajo na primerne `issues`, s katerim lahko prispevate na GitHubu.\n\n- [is:issue is:open label:beginner](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Abeginner&type=issues)\n- [is:issue is:open label:easy](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Aeasy&type=issues)\n- [is:issue is:open label:first-timers-only](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Afirst-timers-only&type=issues)\n- [is:issue is:open label:good-first-bug](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Agood-first-bug&type=issues)\n- [is:issue is:open label:\"good first issue\"](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22&type=issues)\n- [is:issue is:open label:starter](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Astarter&type=issues)\n- [is:issue is:open label:up-for-grabs](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Aup-for-grabs&type=issues)\n- [is:issue is:open label:easy-fix](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Aeasy-fix&type=issues)\n- [is:issue is:open label:\"beginner friendly\"](https://github.com/search?q=beginner+friendly&state=open&type=Issues)\n\n## Mozilla ekosistem prispevanja\n\n- [Good First Bugs](https://bugzilla.mozilla.org/buglist.cgi?quicksearch=sw:%22[good%20first%20bug]%22&limit=0) - `bugs` ki so jih razvijalci prepoznali kot dober uvod v projekt.\n- [MDN Web Docs](https://developer.mozilla.org/en-US/docs/MDN/Contribute) - pomagajte skupini MDN Web Docs pri dokumentiranju spletne platforme, tako da odpravite težave z vsebino in napake platforme.\n- [Mentored Bugs](https://bugzilla.mozilla.org/buglist.cgi?quicksearch=mentor%3A%40) - `bugs` ki imajo dodeljenega mentorja, ki vam bo pomagal, ko se vam zatakne med delom na popravku.\n- [Bugs Ahoy](https://www.joshmatthews.net/bugsahoy/) - spletno mesto, namenjeno iskanju `bugs` na Bugzilli.\n- [Firefox DevTools](http://firefox-dev.tools/) - spletno mesto, namenjeno `bugs`, vloženim za orodja za razvijalce v brskalniku Firefox.\n- [Start Mozilla](https://twitter.com/StartMozilla) - račun na Twitterju, ki tvita o težavah, ki so primerne za nove sodelavce v ekosistemu Mozilla.\n\n## Uporabni članki za nove pri prispevanju odprtokodnim projektom\n\n- [Kako izbrati (in prispevati k) prvemu odprtokodnemu projektu](https://github.com/collections/choosing-projects) by [@GitHub](https://github.com/github)\n- [Kako najti prvo napako v Open Source](https://www.freecodecamp.org/news/finding-your-first-open-source-project-or-bug-to-work-on-1712f651e5ba/) by [@Shubheksha](https://github.com/Shubheksha)\n- [Za začetnike](https://kentcdodds.com/blog/first-timers-only) by [@kentcdodds](https://github.com/kentcdodds)\n- [Vrnite prijaznost odprtokodnim projektom](https://web.archive.org/web/20201009150545/https://www.hanselman.com/blog/bring-kindness-back-to-open-source) by [@shanselman](https://github.com/shanselman)\n- [Prvič z odprtokodnimi programi](https://www.nearform.com/blog/getting-into-open-source-for-the-first-time/) by [@mcdonnelldean](https://github.com/mcdonnelldean)\n- [Kako prispevati k odprtokodnim projektom](https://opensource.guide/how-to-contribute/) by [@GitHub](https://github.com/github/opensource.guide)\n- [Kako najti napake v svoji kodi](https://8thlight.com/insights/how-to-find-a-bug-in-your-code) by [@dougbradbury](https://twitter.com/dougbradbury)\n- [Obvladovanje Markdowna](https://docs.github.com/features/mastering-markdown/) by [@GitHub](https://github.com/github/docs)\n- [Prva misija: stran za sodelavce](https://forcrowd.medium.com/first-mission-contributors-page-df24e6e70705#.2v2g0no29) by [@forCrowd](https://github.com/forCrowd)\n- [Kako narediti svoj prvi odprtokodni prispevek v samo 5 minutah](https://www.freecodecamp.org/news/how-to-make-your-first-open-source-contribution-in-just-5-minutes-aaad1fc59c9a/) by [@roshanjossey](https://github.com/Roshanjossey/)\n- [Pravkar sem dobil svojo brezplačno majico Hacktoberfest. Tukaj je hiter način, kako lahko dobite svojo.](https://www.freecodecamp.org/news/i-just-got-my-free-hacktoberfest-shirt-heres-a-quick-way-you-can-get-yours-fa78d6e24307/) by [@quincylarson](https://www.freecodecamp.org/news/author/quincylarson/)\n- [Grenak vodnik za odprto kodo](https://medium.com/codezillas/a-bitter-guide-to-open-source-a8e3b6a3c1c4) by [@ken_wheeler](https://medium.com/@ken_wheeler)\n- [Vodnik po korakih za mlajše razvijalce, kako prvič prispevati k odprtokodni različici](https://hackernoon.com/contributing-to-open-source-the-sharks-are-photoshopped-47e22db1ab86) by [@LetaKeane](https://hackernoon.com/u/letakeane)\n- [Naučite se Git in GitHub korak za korakom (v sistemu Windows)](https://medium.com/illumination/path-to-learning-git-and-github-be93518e06dc) by [@ows-ali](https://ows-ali.medium.com/)\n- [Zakaj odprtokodna in kako?](https://careerkarma.com/blog/open-source-projects-for-beginners/) by [@james-gallagher](https://careerkarma.com/blog/author/jamesgallagher/)\n- [Kako začeti z odprto kodo - avtor Sayan Chowdhury](https://www.hackerearth.com/getstarted-opensource/)\n- [Poglobljeni uvodni vodnik za odprtokodno](https://developeraspire.hashnode.dev/an-immersive-introductory-guide-to-open-source) by [Franklin Okolie](https://twitter.com/DeveloperAspire)\n- [Katerim odprtokodnim projektom prispevati?](https://kentcdodds.com/blog/what-open-source-project-should-i-contribute-to/) by [@kentcdodds](https://github.com/kentcdodds)\n- [Začetek s prispevanjem k odprtokodnemu](https://stackoverflow.blog/2020/08/03/getting-started-with-contributing-to-open-source/) by [Zara Cooper](https://stackoverflow.blog/author/zara-cooper/)\n- [Vodnik za začetnike za odprtokodni prispevek](https://workat.tech/general/article/open-source-contribution-guide-xmhf1k601vdj) by [Sudipto Ghosh](https://github.com/pydevsg)\n- [8 načinov brez kodiranja, kako prispevati k odprtokodni kodi](https://opensource.com/life/16/1/8-ways-contribute-open-source-without-writing-code) by [OpenSource](https://twitter.com/OpenSourceWay)\n- [Kaj je odprtokodna programska oprema? OPO razloženo v navadni angleščini](https://www.freecodecamp.org/news/what-is-open-source-software-explained-in-plain-english/) by [Jessica Wilkins](https://www.freecodecamp.org/news/author/jessica-wilkins/)\n\n## Uporabljanje Version Control\n\n- [Think Like (a) Git](https://think-like-a-git.net/) - Git uvod za \"napredne začetnike\", da bi vam ponudili preprosto strategijo za varno eksperimentiranje z git.\n- [Try Git](https://docs.github.com/en/get-started/quickstart/set-up-git) - Brezplačno se naučite Git v 15 minutah v svojem brskalniku.\n- [Everyday Git](https://git-scm.com/docs/giteveryday) - Uporaben minimalni nabor ukazov za vsakodnevni Git.\n- [Oh shit, git!](https://ohshitgit.com/) - kako se znebiti pogostih `git` napak, opisanih v preprosti angleščini; glej tudi [Dangit, git!](https://dangitgit.com/) za stran brez kletvic.\n- [Atlassian Git Tutorials](https://www.atlassian.com/git/tutorials) - različni vodiči kako uporabljati `git`.\n- [GitHub Git Cheat Sheet](https://education.github.com/git-cheat-sheet-education.pdf) (PDF)\n- [freeCodeCamp's Wiki on Git Resources](https://forum.freecodecamp.org/t/wiki-git-resources/13136)\n- [GitHub Flow](https://www.youtube.com/watch?v=juLIxo42A_s) (42:06) - GitHub govori o tem, kako narediti `pull request`.\n- [GitHub Learning Resources](https://docs.github.com/en/get-started/quickstart/git-and-github-learning-resources) - Git in GitHub viri za učenje.\n- [Pro Git](https://git-scm.com/book/en/v2) - Celotna knjiga Pro Git, ki sta jo napisala Scott Chacon in Ben Straub in izdala Apress.\n- [Git-it](https://github.com/jlord/git-it-electron) - Namizna aplikacija Git po korakih.\n- [Flight Rules for Git](https://github.com/k88hudson/git-flight-rules) - Vodnik o tem, kaj storiti, ko gre kaj narobe.\n- [Git Guide for Beginners in Spanish](https://platzi.github.io/git-slides/#/) - Popoln vodnik diapozitivov o git in GitHub, razložen v španščini. Una guía completa de diapositivas sobre git y GitHub explicadas en Español.\n- [Git Kraken](https://www.gitkraken.com/git-client) - Vizualna, večplatformska in interaktivna namizna aplikacija `git` za nadzor različic.\n- [Git Tips](https://github.com/git-tips/tips) - Zbirka najpogosteje uporabljenih `git` nasvetov in trikov.\n- [Git Best Practices](https://sethrobertson.github.io/GitBestPractices/) - Commit Often, Perfect Later, Publish Once: Najboljše prakse git.\n- [Git Interactive Tutorial](https://learngitbranching.js.org/) - Naučite se Git na najbolj vizualen in interaktiven način.\n- [Complete Git and GitHub Tutorial](https://www.youtube.com/watch?v=apGV9Kg7ics) (1:12:39) - Celoten postopek Git in GitHub [Kunal Kushwaha](https://www.youtube.com/channel/UCBGOUQHNNtNGcGzVq5rIXjw).\n\n## Knjige o odprtokodnih projektih\n\n- [Producing Open Source Software](https://producingoss.com/) - Producing Open Source Software je knjiga o človeški strani odprtokodnega razvoja. Opisuje delovanje uspešnih projektov, pričakovanja uporabnikov in razvijalcev ter kulturo brezplačne programske opreme.\n- [Open Source Book Series](https://opensource.com/resources/ebooks) - Več o odprti kodi in rastočem odprtokodnem gibanju s obsežnim seznamom brezplačnih e-knjig z https://opensource.com.\n- [Software Release Practice HOWTO](https://tldp.org/HOWTO/Software-Release-Practice-HOWTO/) - Ta HOWTO opisuje dobre prakse izdaje za Linux in druge odprtokodne projekte. Z upoštevanjem teh praks boste uporabnikom čim bolj olajšali izdelavo in uporabo vaše kode, drugim razvijalcem pa boste omogočili razumevanje vaše kode in sodelovali z vami, da jo izboljšajo.\n- [Open Sources 2.0 : The Continuing Evolution](https://archive.org/details/opensources2.000diborich) (2005) - Open Sources 2.0 je zbirka pronicljivih in miselnih esejev današnjih tehnoloških voditeljev, ki še naprej ustvarjajo evolucijsko sliko, ki se je razvila v knjigi Open Sources: Voices from the Revolution iz leta 1999.\n- [The Architecture of Open Source Applications](http://www.aosabook.org/en/git.html) - Pokažite, kako različni vidiki Gita delujejo pod pokrovom, da omogočite porazdeljene poteke dela, in kako se razlikuje od drugih sistemov za nadzor različic (VCS).\n- [Open Sources: Voices from the Open Source Revolution](https://www.oreilly.com/openbook/opensources/book/) - Eseji odprtokodnih pionirjev, kot so Linus Torvalds (Linux), Larry Wall (Perl) in Richard Stallman (GNU).\n\n## Pobude za odprtokodne prispevke\n\n- [Up For Grabs](https://up-for-grabs.net/) - Vsebuje projekte z začetnikom prijaznimi težavami\n- [First Contributions](https://firstcontributions.github.io/) - Naredite svoj prvi odprtokodni prispevek v 5 minutah. Orodje in vadnica za pomoč začetnikom pri začetku dela s prispevki. [Tukaj](https://github.com/firstcontributions/first-contributions) je izvorna koda GitHub za spletno mesto in priložnost, da prispevate k samemu repozitoriju.\n- [First Timers Only](https://www.firsttimersonly.com/) - Seznam hroščev, ki so označeni kot \"samo za začetnike\".\n- [Hacktoberfest](https://hacktoberfest.digitalocean.com/) - Program za spodbujanje odprtokodnih prispevkov. Prislužite si darila, kot so majice in nalepke, tako da naredite vsaj 4 `pull request` v mesecu oktobru.\n- [24 Pull Requests](https://24pullrequests.com) - 24 Pull Requests je projekt za spodbujanje odprtokodnega sodelovanja v mesecu decembru.\n- [Ovio](https://ovio.org) - Platforma z izbranim izborom sodelujočim prijaznih projektov. Ima [zmogljivo orodje za iskanje težav] (https://ovio.org/issues) in vam omogoča, da projekte in težave shranite za pozneje.\n- [Google Summer of Code](https://summerofcode.withgoogle.com/) - Googlov program, ki ga vsako leto izvaja, je bil osredotočen na privabljanje več študentov razvijalcev v razvoj odprtokodne programske opreme.\n- [Rails Girls Summer of Code](https://railsgirlssummerofcode.org/) -Globalni štipendijski program za ženske in nebinarne kodirke, kjer delajo na obstoječih odprtokodnih projektih in širijo svoje znanje.\n- [Major League Hacking Fellowship](https://fellowship.mlh.io/) - Alternativa za pripravništvo na daljavo za ambiciozne tehnologe, kjer gradijo ali prispevajo k odprtokodnim projektom.\n\n## Odprtokodni programi za sodelovanje\n\n- [Google Summer of Code](https://summerofcode.withgoogle.com)\n- [FossAsia](https://fossasia.org)\n- [MLH Fellowship](https://fellowship.mlh.io)\n- [Outreachy](https://www.outreachy.org)\n- [Hacktoberfest](https://hacktoberfest.digitalocean.com)\n- [CNCF](https://events.linuxfoundation.org/kubecon-cloudnativecon-north-america/)\n- [Microsoft Reinforcement learning](https://www.microsoft.com/en-us/research/academic-program/rl-open-source-fest/)\n\n## Licenca\n\n<a rel=\"license\" href=\"https://creativecommons.org/licenses/by-sa/4.0/\"><img alt=\"Creative Commons License\" style=\"border-width:0\" src=\"https://licensebuttons.net/l/by-sa/4.0/88x31.png\" /></a><br />This work is licensed under a <a rel=\"license\" href=\"https://creativecommons.org/licenses/by-sa/4.0/\">Creative Commons Attribution-ShareAlike 4.0 International License</a>."
  },
  {
    "path": "README-TA.md",
    "content": "<details>\n<summary>\n<strong> இந்த வழிகாட்டியை பிற மொழிகளில் படிக்க </strong>\n</summary>\n    <ul>\n        <li><a href=\"./README.md\"> English </a></li>\n        <li><a href=\"./README-CN.md\"> 中文 </a></li>\n        <li><a href=\"./README-RU.md\"> русский </a></li>\n        <li><a href=\"./README-RO.md\"> Românesc </a></li>\n        <li><a href=\"./README-IT.md\"> Italiano </a></li>\n        <li><a href=\"./README-ES.md\"> Español </a></li>\n        <li><a href=\"./README-pt-BR.md\"> Português (BR) </a></li>\n        <li><a href=\"./README-DE.md\"> Deutsch </a></li>\n        <li><a href=\"./README-GR.md\"> Ελληνικά </a></li>\n        <li><a href=\"./README-FR.md\"> Français </a></li>\n        <li><a href=\"./README-KO.md\"> 한국어 </a></li>\n        <li><a href=\"./README-JA.md\"> 日本語 </a></li>\n        <li><a href=\"./README-TA.md\"> தமிழ் </a></li>\n    </ul>\n</details>\n\n# புதிய திறமூல (Open Source) பங்களிப்பாளர்களை வரவேற்கிறோம்!\n\n[![Pull Requests Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat)](http://makeapullrequest.com)\n[![first-timers-only Friendly](https://img.shields.io/badge/first--timers--only-friendly-blue.svg)](https://www.firsttimersonly.com/)\n[![Check Resources](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml/badge.svg)](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml)\n\nதிறமூலத்திற்கு பங்களிப்பதில் புதிய நபர்களுக்கான வளங்களின் பட்டியல் இது.\n\nகூடுதல் ஆதாரங்களைக் கண்டால், தயவுசெய்து பங்களிக்கவும்.\n\nஉங்களிடம் கேள்விகள் அல்லது கருத்துகள் இருந்தால், தயவுசெய்து issue உருவாக்கவும்.\n\n**பொருளடக்கம்**\n\n- [பொதுவாக திறமூலத்திற்கு பங்களிப்பு](#பொதுவாக-திறமூலத்திற்கு-பங்களிப்பு)\n- [நேரடி கிட்ஹப் தேடல்கள்](#நேரடி-கிட்ஹப்-தேடல்கள்)\n- [மொஸில்லாவின் பங்களிப்பாளர் சுற்றுச்சூழல் அமைப்பு](#மொஸில்லாவின்-பங்களிப்பாளர்-சுற்றுச்சூழல்-அமைப்பு)\n- [புதிய திறமூல பங்களிப்பாளர்களுக்கு பயனுள்ள கட்டுரைகள்](#புதிய-திறமூல-பங்களிப்பாளர்களுக்கு-பயனுள்ள-கட்டுரைகள்)\n- [Version Control பயன்படுத்துதல்](#Version-Control-பயன்படுத்துதல்)\n- [திறமூல புத்தகங்கள்](#திறமூல-புத்தகங்கள்)\n- [திறமூல பங்களிப்பு முயற்சிகள்](#திறமூல-பங்களிப்பு-முயற்சிகள்)\n- [உரிமம்](#உரிமம்)\n\n## பொதுவாக திறமூலத்திற்கு பங்களிப்பு\n- [The Definitive Guide to Contributing to Open Source](https://www.freecodecamp.org/news/the-definitive-guide-to-contributing-to-open-source-900d5f9f2282/) by [@DoomHammerNG](https://twitter.com/DoomHammerNG)\n- [An Intro to Open Source](https://www.digitalocean.com/community/tutorial_series/an-introduction-to-open-source) - கிட்ஹப்பில் வெற்றிப் பங்களிப்புகான வழியை உங்களுக்கு வழிகாட்ட டிஜிட்டல் ஓஷனின் பயிற்சிகள்.\n- [Issuehub.io](http://issuehub.pro/) - GitHub சிக்கல்களை லேபிள் மற்றும் மொழி மூலம் தேடுவதற்கான ஒரு கருவி.\n- [Code Triage](https://www.codetriage.com/) - another, really nice, tool for finding popular repositories and issues filtered by language.\n- [Awesome-for-beginners](https://github.com/MunGell/awesome-for-beginners) - புதிய பங்களிப்பாளர்களுக்கு நல்ல பிழைகள் கொண்ட திட்டங்களை சேகரிக்கும் ஒரு கிட்ஹப் ரெப்போ, அவற்றை விவரிக்க லேபிள்களைப் பயன்படுத்துகிறது.\n- [Open Source Guides](https://opensource.guide/) - திறந்த மூல திட்டத்திற்கு எவ்வாறு இயங்குவது மற்றும் பங்களிப்பது என்பதை அறிய விரும்பும் தனிநபர்கள், சமூகங்கள் மற்றும் நிறுவனங்களுக்கான ஆதாரங்களின் சேகரிப்பு.\n- [45 Github Issues Dos and Don’ts](https://hackernoon.com/45-github-issues-dos-and-donts-dfec9ab4b612) - கிட்ஹப்பில் செய்ய வேண்டியவை மற்றும் செய்யக்கூடாதவை.\n- [GitHub Guides](https://docs.github.com/en) - GitHub ஐ எவ்வாறு திறம்பட பயன்படுத்துவது என்பதற்கான அடிப்படை வழிகாட்டிகள்.\n- [Contribute to Open Source](https://github.com/danthareja/contribute-to-open-source) - Learn the GitHub workflow by contributing code to a simulation project.\n- [Linux Foundation's Open Source Guides for the Enterprise](https://www.linuxfoundation.org/resources/open-source-guides) - திறமூல திட்டங்களுக்கு லினக்ஸ் அறக்கட்டளையின் வழிகாட்டிகள்.\n- [CSS Tricks An Open Source Etiquette Guidebook](https://css-tricks.com/open-source-etiquette-guidebook/) - An Open Source Etiquette Guidebook, written by Kent C. Dodds And Sarah Drasner.\n- [A to Z Resources for Students](https://github.com/dipakkr/A-to-Z-Resources-for-Students) - கல்லூரி மாணவர்கள் புதியு மொழியைக் கற்றுக்கொள்வதற்கான வளங்கள் மற்றும் வாய்ப்புகளின் பட்டியல்.\n- [Pull Request Roulette](http://www.pullrequestroulette.com/) - This site has a list of pull requests submitted for review belonging to Open Source projects hosted on Github.\n- [\"How to Contribute to an Open Source Project on GitHub\" by Egghead.io](https://egghead.io/courses/how-to-contribute-to-an-open-source-project-on-github) - A step-by-step video guide of how to start contributing to Open Source projects on GitHub.\n- [Contributing to Open Source: A Live Walkthrough from Beginning to End](https://medium.com/@kevinjin/contributing-to-open-source-walkthrough-part-0-b3dc43e6b720) - This walkthrough of an open source contribution covers everything from picking a suitable project, working on an issue, to getting the PR merged in.\n- [\"How to Contribute to Open Source Project by\" Sarah Drasner](https://css-tricks.com/how-to-contribute-to-an-open-source-project/) - They are focusing on the nitty-gritty of contributing a pull request (PR) to someone else’s project on GitHub.\n- [\"How to get started with Open Source by\" Sayan Chowdhury](https://www.hackerearth.com:443/getstarted-opensource/) - இந்த கட்டுரை ஆரம்பகால விருப்பமான மொழி ஆர்வத்தின் அடிப்படையில் திறமூலத்திற்கு பங்களிப்பதற்கான ஆதாரங்களை உள்ளடக்கியது.\n- [\"Browse good first issues to start contributing to open source\"](https://github.blog/2020-01-22-browse-good-first-issues-to-start-contributing-to-open-source/) - GitHub now helps you find good first issues to start contributing to open source.\n- [\"How to Contribute to Open Source Project\" by Maryna Z](https://rubygarage.org/blog/how-contribute-to-open-source-projects) - This comprehensive article is directed towards businesses (but still useful for individual contributors) where it talks about why, how, and what open-source projects to contribute to.\n- [\"start-here-guidelines\" by Andrei](https://github.com/zero-to-mastery/start-here-guidelines) -\nLets Git started in the world of opensource, starting in the opensource playground. Especially designed for education and practical experience purposes.\n\n\n## நேரடி கிட்ஹப் தேடல்கள்\nGitHub இல் பங்களிக்க பொருத்தமான சிக்கல்களை நேரடியாக சுட்டிக்காட்டும் இணைப்புகளைத் தேடுங்கள்.\n- [is:issue is:open label:beginner](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Abeginner)\n- [is:issue is:open label:easy](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Aeasy)\n- [is:issue is:open label:first-timers-only](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Afirst-timers-only)\n- [is:issue is:open label:good-first-bug](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Agood-first-bug)\n- [is:issue is:open label:\"good first issue\"](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3A\"good+first+issue\")\n- [is:issue is:open label:starter](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Astarter)\n- [is:issue is:open label:up-for-grabs](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Aup-for-grabs)\n\n## மொஸில்லாவின் பங்களிப்பாளர் சுற்றுச்சூழல் அமைப்பு\n- [Good First Bugs](https://bugzilla.mozilla.org/buglist.cgi?quicksearch=sw:%22[good%20first%20bug]%22&limit=0) - டெவலப்பர்கள், திட்டத்திற்கு ஒரு நல்ல அறிமுகமாக அடையாளம் கண்ட பிழைகள்.\n- [Mentored Bugs](https://bugzilla.mozilla.org/buglist.cgi?quicksearch=mentor%3A%40) - bugs that have a mentor assigned who will be there on IRC to help you when you get stuck while working on a fix.\n- [Bugs Ahoy](https://www.joshmatthews.net/bugsahoy/) - பக்ஸில்லாவில் பிழைகள் கண்டுபிடிக்க அர்ப்பணிக்கப்பட்ட ஒரு தளம்.\n- [Firefox DevTools](http://firefox-dev.tools/) - a site dedicated to bugs filed for the developer tools in the Firefox browser.\n- [Start Mozilla](https://twitter.com/StartMozilla) - a Twitter account that tweets about issues fit for contributors new to the Mozilla ecosystem.\n\n## புதிய திறமூல பங்களிப்பாளர்களுக்கு பயனுள்ள கட்டுரைகள்\n- [How to choose (and contribute to) your first Open Source project](https://github.com/collections/choosing-projects) by [@GitHub](https://github.com/github)\n- [How to find your first Open Source bug to fix](https://www.freecodecamp.org/news/finding-your-first-open-source-project-or-bug-to-work-on-1712f651e5ba/) by [@Shubheksha](https://github.com/Shubheksha)\n- [First Timers Only](https://kentcdodds.com/blog/first-timers-only) by [@kentcdodds](https://github.com/kentcdodds)\n- [Bring Kindness Back to Open Source](https://web.archive.org/web/20201009150545/https://www.hanselman.com/blog/bring-kindness-back-to-open-source) by [@shanselman](https://github.com/shanselman)\n- [Getting into Open Source for the First Time](https://www.nearform.com/blog/getting-into-open-source-for-the-first-time/) by [@mcdonnelldean](https://github.com/mcdonnelldean)\n- [How to Contribute to Open Source](https://opensource.guide/how-to-contribute/) by [@GitHub](https://github.com/github/opensource.guide)\n- [How to Find a Bug in Your Code](https://8thlight.com/insights/how-to-find-a-bug-in-your-code) by [@dougbradbury](https://twitter.com/dougbradbury)\n- [Mastering Markdown](https://docs.github.com/features/mastering-markdown/) by [@GitHub](https://github.com/github)\n- [First mission: Contributors page](https://forcrowd.medium.com/first-mission-contributors-page-df24e6e70705#.2v2g0no29) by [@forCrowd](https://github.com/forCrowd)\n- [How to make your first Open Source contribution in just 5 minutes](https://www.freecodecamp.org/news/how-to-make-your-first-open-source-contribution-in-just-5-minutes-aaad1fc59c9a/) by [@roshanjossey](https://github.com/Roshanjossey/)\n- [Hacktoberfest 2019: How you can get your free shirt — even if you’re new to coding](https://www.freecodecamp.org/news/hacktoberfest-2018-how-you-can-get-your-free-shirt-even-if-youre-new-to-coding-96080dd0b01b/) by [@quincylarson](https://www.freecodecamp.org/news/author/quincylarson/)\n- [A Bitter Guide To Open Source](https://medium.com/codezillas/a-bitter-guide-to-open-source-a8e3b6a3c1c4) by [@ken_wheeler](https://medium.com/@ken_wheeler)\n- [A junior developer’s step-by-step guide to contributing to Open Source for the first time](https://hackernoon.com/contributing-to-open-source-the-sharks-are-photoshopped-47e22db1ab86) by [@LetaKeane](https://hackernoon.com/u/letakeane)\n- [Learn Git and GitHub Step By Step (on Windows)](https://medium.com/illumination/path-to-learning-git-and-github-be93518e06dc) by [@ows-ali](https://medium.com/@ows_ali)\n- [Why Open Source and How?](https://careerkarma.com/blog/open-source-projects-for-beginners/) by [@james-gallagher](https://careerkarma.com/blog/author/jamesgallagher/)\n- [How to get started with Open Source - By Sayan Chowdhury](https://www.hackerearth.com/getstarted-opensource/)\n- [What open-source should I contribute to](https://kentcdodds.com/blog/what-open-source-project-should-i-contribute-to) by Kent C. Dodds\n\n## Version Control பயன்படுத்துதல்\n- [Think Like (a) Git](https://think-like-a-git.net/) - Git introduction for \"advanced beginners,\" but are still struggling, in order to give you a simple strategy to safely experiment with git.\n- [Try Git](https://docs.github.com/en/get-started/quickstart/set-up-git) - Learn Git in 15 minutes from within your browser for free.\n- [Everyday Git](https://git-scm.com/docs/giteveryday) - A useful minimum set of commands for Everyday Git.\n- [Oh shit, git!](https://ohshitgit.com/) - how to get out of common `git` mistakes described in plain English; also see [Dangit, git!](https://dangitgit.com/) for the page without swears.\n- [Atlassian Git Tutorials](https://www.atlassian.com/git/tutorials) - various tutorials on using `git`.\n- [GitHub Git Cheat Sheet](https://education.github.com/git-cheat-sheet-education.pdf) (PDF)\n- [freeCodeCamp's Wiki on Git Resources](https://forum.freecodecamp.org/t/wiki-git-resources/13136)\n- [GitHub Flow](https://www.youtube.com/watch?v=juLIxo42A_s) (42:06) - GitHub talk on how to make a pull request.\n- [GitHub Learning Resources](https://docs.github.com/en/free-pro-team@latest/github/getting-started-with-github/git-and-github-learning-resources) - Git and GitHub learning resources.\n- [Pro Git](https://git-scm.com/book/en/v2) - The entire Pro Git book, written by Scott Chacon and Ben Straub and published by Apress.\n- [Git-it](https://github.com/jlord/git-it-electron) - படிப்படியாக கிட் டுடோரியல் டெஸ்க்டாப் பயன்பாடு.\n- [Flight Rules for Git](https://github.com/k88hudson/git-flight-rules) - A guide about what to do when things go wrong.\n- [Git Guide for Beginners in Spanish](https://platzi.github.io/git-slides/#/) - கிட் மற்றும் கிட்ஹப் மீதான ஸ்லைடுகளுக்கான முழுமையான வழிகாட்டி ஸ்பானிஷ் மொழியில் விளக்கப்பட்டுள்ளது.\n- [Git Kraken](https://www.gitkraken.com/git-client) - Visual, cross-platform, and interactive `git` desktop application for version control.\n- [Git Tips](https://github.com/git-tips/tips) - Collection of most commonly used git tips and tricks.\n- [Git Best Practices](https://sethrobertson.github.io/GitBestPractices/) - Commit Often, Perfect Later, Publish Once: Git Best Practices.\n- [Git Interactive Tutorial](https://learngitbranching.js.org/) - Learn Git in the most visual and interactive way.\n\n## திறமூல புத்தகங்கள்\n- [Producing Open Source Software](https://producingoss.com/) - Producing Open Source Software is a book about the human side of Open Source development. It describes how successful projects operate, the expectations of users and developers, and the culture of free software.\n- [Open Source Book Series](https://opensource.com/resources/ebooks) - Learn more about Open Source and the growing Open Source movement with a comprehensive list of free eBooks from https://opensource.com.\n- [Software Release Practice HOWTO](https://en.tldp.org/HOWTO/Software-Release-Practice-HOWTO/) - This HOWTO describes good release practices for Linux and other Open-Source projects. By following these practices, you will make it as easy as possible for users to build your code and use it, and for other developers to understand your code and cooperate with you to improve it.\n- [Open Sources 2.0 : The Continuing Evolution](https://archive.org/details/opensources2.000diborich) (2005) - Open Sources 2.0 is a collection of insightful and thought-provoking essays from today's technology leaders that continues painting the evolutionary picture that developed in the 1999 book, Open Sources: Voices from the Revolution.\n- [The Architecture of Open Source Applications](http://www.aosabook.org/en/git.html) - Show how various aspects of Git work under the covers to enable distributed workflows, and how it differs from other version control systems (VCSs).\n- [Open Sources: Voices from the Open Source Revolution](https://www.oreilly.com/openbook/opensources/book/) - திறந்த மூல முன்னோடிகளான லினஸ் டொர்வால்ட்ஸ் (லினக்ஸ்), லாரி வால் (பெர்ல்) மற்றும் ரிச்சர்ட் ஸ்டால்மேன் (குனு) ஆகியோரின் கட்டுரைகள்.\n\n## திறமூல பங்களிப்பு முயற்சிகள்\n- [Up For Grabs](https://up-for-grabs.net/) - Contains projects with beginner-friendly issues\n- [First Timers Only](https://www.firsttimersonly.com/) - A list of bugs that are labelled \"first-timers-only\".\n- [First Contributions](https://firstcontributions.github.io/) - உங்கள் முதல் திறமூல பங்களிப்பை 5 நிமிடங்களில் செய்யுங்கள். ஆரம்பகால பங்களிப்புகளுடன் தொடங்க உதவும் ஒரு கருவி மற்றும் பயிற்சி. [Here](https://github.com/firstcontributions/first-contributions) is the GitHub source code for the site and opportunity to make a contribution to the repository itself.\n- [Hacktoberfest](https://hacktoberfest.digitalocean.com/) - திறந்த மூல பங்களிப்புகளை ஊக்குவிக்கும் திட்டம். அக்டோபர் மாதத்தில் குறைந்தது 4 இழுத்தல் கோரிக்கைகளைச் செய்வதன் மூலம் டி-ஷர்ட்கள் மற்றும் ஸ்டிக்கர்கள் போன்ற பரிசுகளைப் பெறுங்கள்.\n- [24 Pull Requests](https://24pullrequests.com) - 24 Pull Requests என்பது டிசம்பர் மாதத்தில் திறந்த மூல ஒத்துழைப்பை மேம்படுத்துவதற்கான ஒரு திட்டமாகும்.\n\n## உரிமம்\n<a rel=\"license\" href=\"https://creativecommons.org/licenses/by-sa/4.0/\"><img alt=\"Creative Commons License\" style=\"border-width:0\" src=\"https://licensebuttons.net/l/by-sa/4.0/88x31.png\" /></a><br />This work is licensed under a <a rel=\"license\" href=\"https://creativecommons.org/licenses/by-sa/4.0/\">Creative Commons Attribution-ShareAlike 4.0 International License</a>."
  },
  {
    "path": "README-TE.md",
    "content": "<!-- Do not translate this -->\n<details>\n<summary>\n<strong> ఈ గైడ్‌ని ఇతర భాషల్లో చదవండి </strong>\n</summary>\n    <ul>\n        <li><a href=\"./README.md\"> English </a></li>\n        <li><a href=\"./README-TE.md\">తెలుగు</a></li>\n        <li><a href=\"./README-MR.md\"> मराठी </a></li>\n        <li><a href=\"./README-BN.md\"> বাংলা </a></li>\n        <li><a href=\"./README-CN.md\"> 中文 </a></li>\n        <li><a href=\"./README-RU.md\"> русский </a></li>\n        <li><a href=\"./README-RO.md\"> Românesc </a></li>\n        <li><a href=\"./README-IT.md\"> Italiano </a></li>\n        <li><a href=\"./README-ID.md\"> Indonesia </a></li>\n        <li><a href=\"./README-ES.md\"> Español </a></li>\n        <li><a href=\"./README-pt-BR.md\"> Português (BR) </a></li>\n        <li><a href=\"./README-DE.md\"> Deutsch </a></li>\n        <li><a href=\"./README-HE.md\"> עברית </a></li>\n        <li><a href=\"./README-GR.md\"> Ελληνικά </a></li>\n        <li><a href=\"./README-FR.md\"> Français </a></li>\n        <li><a href=\"./README-TR.md\"> Turkish </a></li>\n        <li><a href=\"./README-KO.md\"> 한국어 </a></li>\n        <li><a href=\"./README-JA.md\"> 日本語 </a></li>\n        <li><a href=\"./README-HI.md\"> हिंदी </a></li>\n        <li><a href=\"./README-FA.md\"> فارسی </a></li>\n        <li><a href=\"./README-UR.md\">اردو </a></li>\n        <li><a href=\"./README-AR.md\">اللغة العربية </a></li>\n        <li><a href=\"./README-TA.md\">தமிழ்</a></li>\n        <li><a href=\"./README-NE.md\">नेपाली</a></li>\n    </ul>\n</details>\n<!-- Do not translate this -->\n\n# ఇక్కడకు వచ్చిన కొత్త ఓపెన్ సోర్స్ కంట్రిబ్యూటర్‌లకు/సహకారకులకు స్వాగతం!\n\n[![Pull Requests Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat)](https://makeapullrequest.com)\n[![first-timers-only Friendly](https://img.shields.io/badge/first--timers--only-friendly-blue.svg)](https://www.firsttimersonly.com/)\n[![Check Resources](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml/badge.svg)](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml)\n\nఇది ఓపెన్ సోర్స్‌కి కొత్తగా సహకరించే వ్యక్తుల కోసం వనరుల/పదార్థాల జాబితా.\n\nమీరు అదనపు వనరులను కనుగొంటే, దయచేసి లాగుడు-అభ్యర్థనను/పుల్ రిక్వెస్ట్ అందించండి.\n\nమీకు ప్రశ్నలు లేదా సూచనలు ఉంటే, దయచేసి సమస్యను/ఇష్యూ సృష్టించండి.\n\n**విషయాలు**\n\n- [సాధారణంగా ఓపెన్ సోర్స్‌కి ' సహకారం అందించడం / కాంట్రిబ్యూట్ చెయ్యడం '](#contributing-to-open-source-in-general)\n- [ప్రత్యక్ష గిట్-హబ్/github శోధనలు](#direct-github-searches)\n- [మొజిల్లా/Mozilla సహకారిక-వ్యవస్థ / కంట్రిబ్యూటర్-ఎకోసిస్టమ్](#mozillas-contributor-ecosystem)\n- [కొత్త ఓపెన్ సోర్స్ కంట్రిబ్యూటర్‌ల/సహకారకుల కోసం ఉపయోగకరమైన కథనాలు](#useful-articles-for-new-open-source-contributors)\n- [సంస్కరణ-నియంత్రణను/వెర్షన్-కంట్రోల్ ను ఉపయోగించడం](#using-version-control)\n- [ఓపెన్ సోర్స్ పుస్తకాలు](#open-source-books)\n- [ఓపెన్ సోర్స్ సహకార కార్యక్రమాలు](#open-source-contribution-initiatives)\n- [పాల్గొనడానికి ఓపెన్ సోర్స్ కార్యక్రమాలు ](#open-source-programs-to-participate-in)\n- [ఉత్తర్వు / లైసెన్స్](#license)\n\n## సాధారణంగా ఓపెన్ సోర్స్‌కి  సహకారం అందించడం / కాంట్రిబ్యూట్ చెయ్యడం \n\n> ఓపెన్ సోర్స్ యొక్క ప్రపంచం మరియు సంస్కృతిని చర్చించే కథనాలు మరియు వనరులు/పదార్థాలు.\n\n- [The Definitive Guide to Contributing to Open Source / ది  డెఫినిటివ్  గైడ్  టు  కాంట్రిబ్యూటింగ్ టు  ఓపెన్ సోర్స్  ](https://www.freecodecamp.org/news/the-definitive-guide-to-contributing-to-open-source-900d5f9f2282/) ... [@DoomHammerNG / డూమ్ హామ్మర్ ఎన్. జి. ](https://twitter.com/DoomHammerNG)\n- [An Intro to Open Source / అన్ ఇంట్రో  టు  ఓపెన్  సోర్స్ ](https://www.digitalocean.com/community/tutorial_series/an-introduction-to-open-source) - గిట్-హబ్/GitHubలో విజయాన్ని అందించడానికి మీ మార్గంలో మీకు మార్గనిర్దేశం చేసేందుకు DigitalOcean ద్వారా పాఠాలు/ట్యుటోరియల్స్.\n- [Code Triage / కోడ్  త్రియాజ్ ](https://www.codetriage.com/) - జనాదరణ పొందిన రిపోజిటరీలు మరియు భాష ద్వారా ఫిల్టర్ చేయబడిన సమస్యలను కనుగొనడానికి మరొకటి\n- [Forge Your Future with Open Source / ఫోర్జ్  యువర్  ఫ్యూచర్  విత్  ఓపెన్  సోర్స్ ](https://pragprog.com/titles/vbopens/forge-your-future-with-open-source/) ($) - ఓపెన్ సోర్స్, ప్రాజెక్ట్‌ను ఎలా కనుగొనాలి మరియు సహకారం ఎలా ప్రారంభించాలో వివరించడానికి అంకితమైన పుస్తకం. ప్రోగ్రామర్లు మాత్రమే కాకుండా సాఫ్ట్‌వేర్ డెవలప్‌మెంట్‌లో అన్ని పాత్రలను కలుపుకొని.\n- [Awesome-for-beginners / ఆసమ్ -ఫర్ -బిగినర్స్ ](https://github.com/MunGell/awesome-for-beginners) - కొత్త కంట్రిబ్యూటర్‌ల కోసం మంచి లోపం/బగ్‌లతో ప్రాజెక్ట్‌లను సేకరించి, వాటిని వివరించడానికి లేబుల్‌లను వర్తింపజేసే గిట్-హబ్/GitHub రెపో.\n- [Open Source Guides / ఓపెన్  సోర్స్  గైడ్స్ ](https://opensource.guide/) - ఓపెన్ సోర్స్ ప్రాజెక్ట్‌ను ఎలా అమలు చేయాలో మరియు దానికి ఎలా సహకరించాలో తెలుసుకోవాలనుకునే వ్యక్తులు, సంఘాలు మరియు కంపెనీల కోసం వనరుల సేకరణ.\n- [45 Github Issues Dos and Don’ts / 45 గిట్ హబ్ ఇష్యూస్  డూస్   అండ్  డోంట్స్  ](https://hackernoon.com/45-github-issues-dos-and-donts-dfec9ab4b612) - గిట్-హబ్/GitHubలో చేయవలసినవి మరియు చేయకూడనివి.\n- [GitHub Guides / గిట్ హబ్  గైడ్స్ ](https://docs.github.com/) - గిట్-హబ్/GitHubని ఎలా సమర్థవంతంగా ఉపయోగించాలో ప్రాథమిక మార్గదర్శకాలు.\n- [Contribute to Open Source / కాంట్రిబ్యూట్ టు  ఓపెన్  సోర్స్ ](https://github.com/danthareja/contribute-to-open-source) - అనుకరణ ప్రాజెక్ట్‌కు కోడ్‌ని అందించడం ద్వారా గిట్-హబ్/GitHub వర్క్‌ఫ్లో తెలుసుకోండి.\n- [Linux Foundation's Open Source Guides for the Enterprise / లినక్స్  ఫౌండషన్స్  ఓపెన్  సోర్స్  గైడ్స్  ఫర్  ది  ఎంటర్ప్రైస్](https://www.linuxfoundation.org/resources/open-source-guides/) - ఓపెన్ సోర్స్ ప్రాజెక్ట్‌లకు Linux ఫౌండేషన్ మార్గదర్శకాలు.\n- [CSS Tricks An Open Source Etiquette Guidebook / సి ఎస్ ఎస్ (CSS)  ట్రిక్స్ అన్  ఓపెన్  సోర్స్  ఏటికెట్ట్   గైడ్ బుక్ ](https://css-tricks.com/open-source-etiquette-guidebook/) - కెంట్ సి. డాడ్స్ మరియు సారా డ్రాస్నర్ రాసిన ఓపెన్ సోర్స్ మర్యాద మార్గదర్శక పుస్తకం.\n- [A to Z Resources for Students / ఏ(A) టు  జెడ్(Z)  రిసోర్సెస్  ఫర్  స్టూడెంట్స్ ](https://github.com/dipakkr/A-to-Z-Resources-for-Students) - కళాశాల విద్యార్థులు కొత్త కోడింగ్ భాషను నేర్చుకోవడానికి వనరులు మరియు అవకాశాల క్యూరేటెడ్ జాబితా.\n- [Pull Request Roulette / పుల్  రిక్వెస్ట్  రౌలెట్ ](http://www.pullrequestroulette.com/) - ఈ సైట్ గిట్-హబ్/Githubలో హోస్ట్ చేయబడిన ఓపెన్ సోర్స్ ప్రాజెక్ట్‌లకు సంబంధించిన సమీక్ష కోసం సమర్పించిన పుల్ అభ్యర్థనల జాబితాను కలిగి ఉంది.\n- [\"How to Contribute to an Open Source Project on GitHub\" by Egghead.io / \"హౌ  టు  కాంట్రిబ్యూట్  టు  అన్  ఓపెన్  సోర్స్  ప్రాజెక్ట్  ఆన్  గిట్ హబ్ \" బై  ఎగ్ హెడ్ .ఐ ఓ (Egghead.io)](https://egghead.io/courses/how-to-contribute-to-an-open-source-project-on-github) - గిట్-హబ్/GitHubలో ఓపెన్ సోర్స్ ప్రాజెక్ట్‌లకు సహకారం అందించడం ఎలా అనేదానికి దశల వారీ వీడియో గైడ్.\n- [Contributing to Open Source: A Live Walkthrough from Beginning to End / కాంట్రిబ్యూటింగ్  టు  ఓపెన్  సోర్స్ : ఏ  లైవ్  వాల్క్త్రోయుగ్  ఫ్రొమ్  బెగిన్నింగ్  టు   ఎండ్ ](https://medium.com/@kevinjin/contributing-to-open-source-walkthrough-part-0-b3dc43e6b720) - ఓపెన్ సోర్స్ కంట్రిబ్యూషన్ యొక్క ఈ వాక్‌త్రూ తగిన ప్రాజెక్ట్‌ను ఎంచుకోవడం, సమస్యపై పని చేయడం, PRని విలీనం చేయడం వరకు ప్రతిదీ కవర్ చేస్తుంది.\n- [\"How to Contribute to Open Source Project\" by Sarah Drasner / \"హౌ  టు  కాంట్రిబ్యూట్  టు   ఓపెన్  సోర్స్  ప్రాజెక్ట్ \" బై  సరః  డ్రాస్నేర్ ](https://css-tricks.com/how-to-contribute-to-an-open-source-project/) - వారు గిట్-హబ్/GitHubలో వేరొకరి ప్రాజెక్ట్‌కి పుల్ రిక్వెస్ట్ (PR)ని అందించడంలో నిస్సందేహంగా దృష్టి సారిస్తున్నారు.\n- [\"How to get started with Open Source\" by Sayan Chowdhury / \"హౌ  టు  గెట్  స్టార్టెడ్ విత్  ఓపెన్  సోర్స్ \" బై  సాయెన్  చౌధురి ](https://www.hackerearth.com:443/getstarted-opensource/) - ఈ కథనం ప్రారంభకులకు వారి ఇష్టమైన భాషా ఆసక్తి ఆధారంగా ఓపెన్ సోర్స్‌కు సహకరించే వనరులను కవర్ చేస్తుంది.\n- [\"Browse good first issues to start contributing to open source / బ్రౌజ్  గుడ్  ఫస్ట్  ఇష్యూస్  టు  స్టార్ట్  కాంట్రిబ్యూటింగ్  టు  ఓపెన్  సోర్స్ \"](https://github.blog/2020-01-22-browse-good-first-issues-to-start-contributing-to-open-source/) - గిట్-హబ్/GitHub ఇప్పుడు ఓపెన్ సోర్స్‌కి సహకరించడం ప్రారంభించడానికి మంచి మొదటి సమస్యలను కనుగొనడంలో మీకు సహాయపడుతుంది.\n- [\"How to Contribute to Open Source Project\" by Maryna Z / \"హౌ  టు  కాంట్రిబ్యూట్  టు  ఓపెన్  సోర్స్  ప్రాజెక్ట్ \" బై  మారిన  జెడ్ ](https://rubygarage.org/blog/how-contribute-to-open-source-projects) - ఈ సమగ్ర కథనం వ్యాపారాల వైపు మళ్లించబడింది (కానీ వ్యక్తిగత సహకారులకు ఇప్పటికీ ఉపయోగకరంగా ఉంటుంది) ఇక్కడ ఎందుకు, ఎలా మరియు ఏ ఓపెన్ సోర్స్ ప్రాజెక్ట్‌లకు సహకరించాలి అనే దాని గురించి మాట్లాడుతుంది.\n- [\"start-here-guidelines\" by Andrei / \"స్టార్ట్ -హియర్ -గైడ్లైన్స్ \" బై  అంద్రెయ ](https://github.com/zero-to-mastery/start-here-guidelines) -\n  ఓపెన్‌సోర్స్ ప్లేగ్రౌండ్‌లో ప్రారంభించి ఓపెన్‌సోర్స్ ప్రపంచంలో ప్రారంభించండి. విద్య మరియు ఆచరణాత్మక అనుభవ ప్రయోజనాల కోసం ప్రత్యేకంగా రూపొందించబడింది.\n- [\"Getting Started with Open Source\" by NumFocus / \"గెట్టింగ్  స్టార్టెడ్  విత్  ఓపెన్  సోర్స్ \" బై  నం-ఫోకస్ (NumFocus)](https://github.com/numfocus/getting-started-with-open-source) - ఓపెన్ సోర్స్‌లో ప్రవేశానికి ఉన్న అడ్డంకులను అధిగమించడంలో సహకారులకు సహాయపడే గిట్-హబ్/GitHub రెపో.\n- [\"Opensoure-4-everyone\" by Chryz-hub / \"ఓపెన్సోర్స్ -4-ఎవరీ వన్  \" బై  క్రిజ్ -హబ్ ](https://github.com/chryz-hub/opensource-4-everyone) - ఓపెన్ సోర్స్‌లో ప్రవేశానికి ఉన్న అడ్డంకులను అధిగమించడంలో సహకారులకు సహాయపడే గిట్-హబ్/GitHub రెపో.\n- [\"Open Advice / ఓపెన్  ఆడవాయ్స్\"](http://open-advice.org/) - అనేక రకాల ఉచిత సాఫ్ట్‌వేర్ ప్రాజెక్ట్‌ల నుండి జ్ఞాన సేకరణ. 42 మంది ప్రముఖ కంట్రిబ్యూటర్‌లు ఎప్పుడు ప్రారంభించారో తెలుసుకోవాలనుకుంటున్నారనే ప్రశ్నకు ఇది సమాధానమిస్తుంది, కాబట్టి మీరు ఎలా మరియు ఎక్కడ సహకారం అందించినా మీరు ముందుగా ప్రారంభించవచ్చు.\n- [\"GitHub Skills / గిట్ హబ్  స్కిల్స్ \"](https://skills.github.com) - గిట్-హబ్/GitHub నైపుణ్యాలతో మీ నైపుణ్యాలను పెంచుకోండి. మా స్నేహపూర్వక బోట్ మీకు అవసరమైన నైపుణ్యాలను ఏ సమయంలోనైనా నేర్చుకునేందుకు సరదాగా, ఆచరణాత్మకమైన ప్రాజెక్ట్‌ల శ్రేణి ద్వారా మిమ్మల్ని తీసుకెళ్తుంది మరియు మార్గంలో సహాయకరమైన అభిప్రాయాన్ని పంచుకుంటుంది.\n- [\"Ten simple rules for helping newcomers become contributors to open projects / టెన్  సింపుల్  రూల్స్  ఫర్  హెల్పింగ్  న్యూ కామర్స్   బికమ్  కాంట్రిబ్యూటర్స్  టు  ఓపెన్  ప్రాజెక్ట్స్ \"](https://doi.org/10.1371/journal.pcbi.1007296) - ఈ కథనం అనేక సంఘాల అధ్యయనాలు మరియు సభ్యులు, నాయకులు మరియు పరిశీలకుల అనుభవాల ఆధారంగా నియమాలను కవర్ చేస్తుంది.\n- [\"Step-by-Step guide to contributing on GitHub / స్టెప్ -బై -స్టెప్  గైడ్  టు  కాంట్రిబ్యూటింగ్  ఆన్  గిట్ హబ్ \"](https://www.dataschool.io/how-to-contribute-on-github/) - ఓపెన్ సోర్స్ ప్రాజెక్ట్‌కు సహకరించే మొత్తం ప్రక్రియకు సంబంధించి సపోర్టింగ్ విజువల్స్ మరియు లింక్‌లతో దశల వారీ గైడ్.\n- [Open Source with Pradumna / ఓపెన్  సోర్స్  విత్  ప్రదుంణ](https://github.com/Pradumnasaraf/open-source-with-pradumna) - ఈ రెపోలో ఓపెన్ సోర్స్, గిట్/Git మరియు గిట్-హబ్/GitHub నేర్చుకోవడానికి మరియు ప్రారంభించడానికి వనరులు మరియు మెటీరియల్‌లు ఉన్నాయి.\n- [\"FOSS Community Acronyms / ఎఫ్ ఓ ఎస్ ఎస్ /FOSS కమ్యూనిటీ  అక్రోనీమ్స్ \"](https://github.com/d-edge/foss-acronyms) - ఈ రెపోలో FOSS (ఫ్రీ అండ్ ఓపెన్ సోర్స్) కమ్యూనిటీలో ఉపయోగించిన సంక్షిప్త పదాల జాబితా, వాటి నిర్వచనాలు మరియు వినియోగాలు ఉన్నాయి..\n- [\"Open Source Fiesta - Open Source Fiesta /  ఓపెన్  సోర్స్  ఫీస్టా   - ఓపెన్  సోర్స్  ఫీస్టా  \"](https://zubi.gitbook.io/open-source-fiesta/) - గిట్-హబ్/GitHub రిపోజిటరీలకు ఎలా సహకరించాలి అనేదానిపై దశల వారీ సూచన మరియు git కమాండ్ లైన్ చీట్‌షీట్‌ను కలిగి ఉంటుంది.\n\n## ప్రత్యక్ష గిట్-హబ్/github శోధనలు\n\n> గిట్-హబ్/GitHub లో సహకరించడానికి తగిన సమస్యలను నేరుగా సూచించే లింక్‌లను శోధించండి.\n\n- [is:issue is:open label:beginner](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Abeginner&type=issues)\n- [is:issue is:open label:easy](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Aeasy&type=issues)\n- [is:issue is:open label:first-timers-only](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Afirst-timers-only&type=issues)\n- [is:issue is:open label:good-first-bug](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Agood-first-bug&type=issues)\n- [is:issue is:open label:\"good first issue\"](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22&type=issues)\n- [is:issue is:open label:starter](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Astarter&type=issues)\n- [is:issue is:open label:up-for-grabs](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Aup-for-grabs&type=issues)\n- [is:issue is:open label:easy-fix](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Aeasy-fix&type=issues)\n- [is:issue is:open label:\"beginner friendly\"](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3A%22beginner+friendly%22&type=issues)\n- [is:issue is:open label:your-first-pr](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Ayour-first-pr&type=issues)\n\n## మొజిల్లా/Mozilla సహకారిక-వ్యవస్థ / కంట్రిబ్యూటర్-ఎకోసిస్టమ్\n\n> మొజిల్లా/Mozilla ఆరోగ్యకరమైన ఇంటర్నెట్ కోసం ప్రతిజ్ఞ చేస్తుంది మరియు దానితో పాటు, దాని ఓపెన్ సోర్స్ ప్రాజెక్ట్‌లకు సహకరించే అవకాశాలను కలిగి ఉంది.\n\n- [Good First Bugs / గుడ్  ఫస్ట్  బగ్స్ ](https://bugzilla.mozilla.org/buglist.cgi?quicksearch=good-first-bug) - డెవలపర్‌లు ప్రాజెక్ట్‌కి మంచి పరిచయంగా గుర్తించిన బగ్‌లు.\n- [MDN Web Docs / ఎమ్. డి. ఎన్ (MDN) వెబ్  డాక్స్ ](https://developer.mozilla.org/en-US/docs/MDN/Contribute) - కంటెంట్ సమస్యలు మరియు ప్లాట్‌ఫారమ్ బగ్‌లను పరిష్కరించడం ద్వారా వెబ్ ప్లాట్‌ఫారమ్‌ను డాక్యుమెంట్ చేయడంలో MDN వెబ్ డాక్స్ బృందానికి సహాయం చేయండి.\n- [Mentored Bugs / మెంటార్డ్  బగ్స్ ](https://bugzilla.mozilla.org/buglist.cgi?quicksearch=mentor%3A%40) - పరిష్కారానికి పని చేస్తున్నప్పుడు మీరు చిక్కుకుపోయినప్పుడు మీకు సహాయం చేయడానికి IRCలో ఉన్న ఒక మెంటర్‌ని నియమించిన బగ్‌లు.\n- [Bugs Ahoy / బగ్స్  ఆహోయ్ ](https://www.joshmatthews.net/bugsahoy/) - బగ్‌జిల్లాలో బగ్‌లను కనుగొనడానికి అంకితమైన సైట్.\n- [Firefox DevTools / ఫైరుఫాక్స్  డేవ్ టూల్స్ ](https://firefox-dev.tools/) - Firefox బ్రౌజర్‌లోని డెవలపర్ సాధనాల కోసం ఫైల్ చేసిన బగ్‌లకు అంకితమైన సైట్.\n- [What Can I Do For Mozilla / వాట్  కాన్  ఐ  డు  ఫర్  మొజిల్లా ](https://whatcanidoformozilla.org/) - మీ నైపుణ్యం సెట్ మరియు ఆసక్తుల గురించి కొన్ని ప్రశ్నలకు సమాధానం ఇవ్వడం ద్వారా మీరు ఏమి పని చేయగలరో గుర్తించండి.\n- [Start Mozilla / స్టార్ట్  మొజిల్లా ](https://twitter.com/StartMozilla) -మొజిల్లా పర్యావరణ వ్యవస్థకు కొత్త సహకారులకు సరిపోయే సమస్యల గురించి ట్వీట్ చేసే ట్విట్టర్ ఖాతా.\n\n## కొత్త ఓపెన్ సోర్స్ కంట్రిబ్యూటర్‌ల/సహకారకుల కోసం ఉపయోగకరమైన కథనాల\n\n> ఎలా ప్రారంభించాలో కొత్త కంట్రిబ్యూటర్‌లను ఉద్దేశించి ఉపయోగపడే కథనాలు మరియు బ్లాగ్‌లు.\n\n- [Finding ways to contribute to open source on GitHub](https://docs.github.com/en/get-started/exploring-projects-on-github/finding-ways-to-contribute-to-open-source-on-github) by [@GitHub](https://github.com/github)\n- [How to choose (and contribute to) your first Open Source project](https://github.com/collections/choosing-projects) by [@GitHub](https://github.com/github)\n- [How to find your first Open Source bug to fix](https://www.freecodecamp.org/news/finding-your-first-open-source-project-or-bug-to-work-on-1712f651e5ba/) by [@Shubheksha](https://github.com/Shubheksha)\n- [First Timers Only](https://kentcdodds.com/blog/first-timers-only) by [@kentcdodds](https://github.com/kentcdodds)\n- [Bring Kindness Back to Open Source](https://web.archive.org/web/20201009150545/https://www.hanselman.com/blog/bring-kindness-back-to-open-source) by [@shanselman](https://github.com/shanselman)\n- [Getting into Open Source for the First Time](https://www.nearform.com/blog/getting-into-open-source-for-the-first-time/) by [@mcdonnelldean](https://github.com/mcdonnelldean)\n- [How to Contribute to Open Source](https://opensource.guide/how-to-contribute/) by [@GitHub](https://github.com/github)\n- [How to Find a Bug in Your Code](https://8thlight.com/blog/doug-bradbury/2016/06/29/how-to-find-bug-in-your-code.html) by [@dougbradbury](https://twitter.com/dougbradbury)\n- [Mastering Markdown](https://docs.github.com/github/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax) by [@GitHub](https://github.com/github)\n- [First mission: Contributors page](https://forcrowd.medium.com/first-mission-contributors-page-df24e6e70705) by [@forCrowd](https://github.com/forCrowd)\n- [How to make your first Open Source contribution in just 5 minutes](https://www.freecodecamp.org/news/how-to-make-your-first-open-source-contribution-in-just-5-minutes-aaad1fc59c9a/) by [@roshanjossey](https://github.com/Roshanjossey/)\n- [I just got my free Hacktoberfest shirt. Here’s a quick way you can get yours.](https://www.freecodecamp.org/news/i-just-got-my-free-hacktoberfest-shirt-heres-a-quick-way-you-can-get-yours-fa78d6e24307/) by [@quincylarson](https://www.freecodecamp.org/news/author/quincylarson/)\n- [A Bitter Guide To Open Source](https://medium.com/codezillas/a-bitter-guide-to-open-source-a8e3b6a3c1c4) by [@ken_wheeler](https://medium.com/@ken_wheeler)\n- [A junior developer’s step-by-step guide to contributing to Open Source for the first time](https://hackernoon.com/contributing-to-open-source-the-sharks-are-photoshopped-47e22db1ab86) by [@LetaKeane](https://hackernoon.com/u/letakeane)\n- [Learn Git and GitHub Step By Step (on Windows)](https://medium.com/illumination/path-to-learning-git-and-github-be93518e06dc) by [@ows-ali](https://ows-ali.medium.com/)\n- [Why Open Source and How?](https://careerkarma.com/blog/open-source-projects-for-beginners/) by [@james-gallagher](https://careerkarma.com/blog/author/jamesgallagher/)\n- [How to get started with Open Source - By Sayan Chowdhury](https://www.hackerearth.com/getstarted-opensource/)\n- [What open-source should I contribute to](https://kentcdodds.com/blog/what-open-source-project-should-i-contribute-to) by [@kentcdodds](https://github.com/kentcdodds)\n- [An immersive introductory guide to Open-source](https://developeraspire.hashnode.dev/an-immersive-introductory-guide-to-open-source) by [Franklin Okolie](https://twitter.com/DeveloperAspire)\n- [Getting started with contributing to open source](https://stackoverflow.blog/2020/08/03/getting-started-with-contributing-to-open-source/) by [Zara Cooper](https://stackoverflow.blog/author/zara-cooper/)\n- [Beginner's guide to open-source contribution](https://workat.tech/general/article/open-source-contribution-guide-xmhf1k601vdj) by [Sudipto Ghosh](https://github.com/pydevsg)\n- [8 non-code ways to contribute to open source](https://opensource.com/life/16/1/8-ways-contribute-open-source-without-writing-code) by [OpenSource](https://twitter.com/OpenSourceWay)\n- [What is Open Source Software? OSS Explained in Plain English](https://www.freecodecamp.org/news/what-is-open-source-software-explained-in-plain-english/) by [Jessica Wilkins](https://www.freecodecamp.org/news/author/jessica-wilkins/)\n- [How to Start an Open Source Project on GitHub – Tips from Building My Trending Repo](https://www.freecodecamp.org/news/how-to-start-an-open-source-project-on-github-tips-from-building-my-trending-repo/) by [@Rishit-dagli](https://github.com/Rishit-dagli)\n\n## సంస్కరణ-నియంత్రణను/వెర్షన్-కంట్రోల్ ను  ఉపయోగించడం\n\n> సంస్కరణ నియంత్రణను/వెర్షన్-కంట్రోల్ ను ఉపయోగించడంపై వివిధ స్థాయిల ట్యుటోరియల్‌లు మరియు వనరులు/పదార్థాలు, సాధారణంగా గిట్/Git మరియు గిట్-హబ్/GitHub.\n\n- [Video tutorial for Git and Github by Harvard University](https://www.youtube.com/watch?v=NcoBAfJ6l2Q) - గిట్/Git మరియు గిట్-హబ్/GitHubని అర్థం చేసుకోవడం మరియు గిట్/Git ఆదేశాలతో పని చేయడంపై వారి CS50 వెబ్ డెవలప్‌మెంట్ కోర్సులో భాగంగా హార్వర్డ్ విశ్వవిద్యాలయం ద్వారా ట్యుటోరియల్.\n- [Think Like (a) Git](https://think-like-a-git.net/) - \"అధునాతన ప్రారంభకులకు\" గిట్/Git పరిచయం, కానీ మీరు గిట్/gitతో సురక్షితంగా ప్రయోగాలు చేయడానికి సులభమైన వ్యూహాన్ని అందించడానికి ఇప్పటికీ పోరాడుతున్నారు.\n- [Quickstart - Set up Git](https://docs.github.com/en/get-started/quickstart/set-up-git) - మీ అభ్యాస ప్రయాణంలో తదుపరి దశలతో పాటు స్థానికంగా గిట్/Gitని ఎలా సెటప్ చేయాలో మరియు ప్రామాణీకరణను ఎలా సెటప్ చేయాలో తెలుసుకోండి.\n- [Everyday Git](https://git-scm.com/docs/giteveryday) - రోజువారీ గిట్/Git కోసం ఉపయోగకరమైన కనీస కమాండ్‌ల సెట్.\n- [Oh shit, git!](https://ohshitgit.com/) - సాధారణ ఆంగ్లంలో వివరించిన సాధారణ `git` తప్పుల నుండి ఎలా బయటపడాలి; ప్రమాణాలు లేని పేజీ కోసం [Dangit, git!](https://dangitgit.com/) కూడా చూడండి.\n- [Atlassian Git Tutorials](https://www.atlassian.com/git/tutorials) - `git`ని ఉపయోగించడంపై వివిధ ట్యుటోరియల్స్.\n- [GitHub Git Cheat Sheet](https://education.github.com/git-cheat-sheet-education.pdf) (PDF)\n- [freeCodeCamp's Wiki on Git Resources](https://forum.freecodecamp.org/t/wiki-git-resources/13136)\n- [GitHub Flow](https://www.youtube.com/watch?v=juLIxo42A_s) (42:06) - పుల్ రిక్వెస్ట్ ఎలా చేయాలో Gగిట్-హబ్/itHub చర్చ.\n- [Quickstart - GitHub Learning Resources](https://docs.github.com/en/get-started/quickstart/git-and-github-learning-resources) - గిట్/Git మరియు గిట్-హబ్/GitHub అభ్యాస వనరులు.\n- [Pro Git](https://git-scm.com/book/en/v2) - స్కాట్ చాకన్ మరియు బెన్ స్ట్రాబ్ వ్రాసిన మరియు Apress ప్రచురించిన మొత్తం Pro Git పుస్తకం.\n- [Git-it](https://github.com/jlord/git-it-electron) - దశల వారీగా Git ట్యుటోరియల్ డెస్క్‌టాప్ యాప్.\n- [Flight Rules for Git](https://github.com/k88hudson/git-flight-rules) - విషయాలు తప్పు అయినప్పుడు ఏమి చేయాలనే దాని గురించి గైడ్.\n- [Git Guide for Beginners in Spanish](https://platzi.github.io/git-slides/#/) - స్పానిష్‌లో వివరించిన git మరియు GitHub గురించిన స్లయిడ్‌ల పూర్తి గైడ్. Una guía completa de diapositivas sobre git y GitHub explicadas en Español.\n- [Git Kraken](https://www.gitkraken.com/git-client) - సంస్కరణ నియంత్రణ కోసం దృశ్య, క్రాస్-ప్లాట్‌ఫారమ్ మరియు ఇంటరాక్టివ్ `git` డెస్క్‌టాప్ అప్లికేషన్.\n- [Git Tips](https://github.com/git-tips/tips) - సాధారణంగా ఉపయోగించే git చిట్కాలు మరియు ట్రిక్‌ల సేకరణ.\n- [Git Best Practices](https://sethrobertson.github.io/GitBestPractices/) - తరచుగా కమిట్, పర్ఫెక్ట్ తర్వాత, ఒకసారి పబ్లిష్ చేయండి: Git బెస్ట్ ప్రాక్టీసెస్.\n- [Git Interactive Tutorial](https://learngitbranching.js.org/) - గిట్/Gitని అత్యంత దృశ్యమానంగా మరియు ఇంటరాక్టివ్‌గా నేర్చుకోండి.\n- [Git Cheat Sheets](https://devhints.io/?q=git) - గిట్/gitపై గ్రాఫికల్ చీట్ షీట్‌ల సమితి.\n- [Complete Git and GitHub Tutorial](https://www.youtube.com/watch?v=apGV9Kg7ics) (1:12:39) - పూర్తి గిట్/Git మరియు గిట్/GitHub నడక ద్వారా [Kunal Kushwaha](https://www.youtube.com/channel/UCBGOUQHNNtNGcGzVq5rIXjw).\n- [A Tutorial Introduction to Git](https://git-scm.com/docs/gittutorial) - గిట్/Git ద్వారా ప్రారంభకులకు ట్యుటోరియల్.\n- [First Aid Git](https://firstaidgit.io/#/) - చాలా తరచుగా అడిగే గిట్/Git ప్రశ్నల శోధించదగిన సేకరణ. ఈ ప్రశ్నలకు సమాధానాలు వ్యక్తిగత అనుభవం, Stackoverflow మరియు అధికారిక గిట్/Git డాక్యుమెంటేషన్ నుండి సేకరించబడ్డాయి.\n- [Git by Susan Potter](https://www.aosabook.org/en/git.html) - పంపిణీ చేయబడిన వర్క్‌ఫ్లోలను ఎనేబుల్ చేయడానికి కవర్‌ల క్రింద గిట్/Git యొక్క వివిధ సాంకేతిక అంశాలు ఎలా పనిచేస్తాయో మరియు ఇది ఇతర వెర్షన్ కంట్రోల్ సిస్టమ్‌ల (VCSలు) నుండి ఎలా భిన్నంగా ఉందో చూపండి.\n\n## ఓపెన్ సోర్స్ పుస్తకాల\n\n>  ఓపెన్ సోర్ అన్ని విషయాలపై పుస్తకాలు: సంస్కృతి, చరిత్ర, ఉత్తమ పద్ధతులు మొదలైనవి.\n\n- [Producing Open Source Software](https://producingoss.com/) - ఓపెన్ సోర్స్ సాఫ్ట్‌వేర్‌ను ఉత్పత్తి చేయడం అనేది ఓపెన్ సోర్స్ అభివృద్ధి యొక్క మానవ వైపు గురించిన పుస్తకం. ఇది విజయవంతమైన ప్రాజెక్ట్‌లు ఎలా పనిచేస్తుందో, వినియోగదారులు మరియు డెవలపర్‌ల అంచనాలను మరియు ఉచిత సాఫ్ట్‌వేర్ సంస్కృతిని వివరిస్తుంది.\n- [The Architecture of Open Source Applications](https://www.aosabook.org/en/index.html) - ఇరవై-నాలుగు ఓపెన్ సోర్స్ అప్లికేషన్‌ల రచయితలు తమ సాఫ్ట్‌వేర్ ఎలా నిర్మాణాత్మకంగా ఉందో మరియు ఎందుకు అని వివరిస్తారు. వెబ్ సర్వర్‌లు మరియు కంపైలర్‌ల నుండి హెల్త్ రికార్డ్ మేనేజ్‌మెంట్ సిస్టమ్‌ల వరకు, మీరు మెరుగైన డెవలపర్‌గా మారడంలో సహాయపడటానికి అవి ఇక్కడ అందించబడ్డాయి.\n- [Open Source Book Series](https://opensource.com/resources/ebooks) - నుండి ఉచిత eBooks యొక్క సమగ్ర జాబితాతో ఓపెన్ సోర్స్ మరియు పెరుగుతున్న ఓపెన్ సోర్స్ ఉద్యమం గురించి మరింత తెలుసుకోండి https://opensource.com.\n- [Software Release Practice HOWTO](https://tldp.org/HOWTO/Software-Release-Practice-HOWTO/) - ఇది Linux మరియు ఇతర ఓపెన్-సోర్స్ ప్రాజెక్ట్‌ల కోసం మంచి విడుదల పద్ధతులను ఎలా వివరిస్తుంది. ఈ పద్ధతులను అనుసరించడం ద్వారా, వినియోగదారులు మీ కోడ్‌ని రూపొందించడం మరియు ఉపయోగించడం మరియు ఇతర డెవలపర్‌లు మీ కోడ్‌ను అర్థం చేసుకోవడం మరియు దాన్ని మెరుగుపరచడానికి మీతో సహకరించడం వంటి వాటిని మీరు వీలైనంత సులభతరం చేస్తారు.\n- [Open Sources 2.0 : The Continuing Evolution](https://archive.org/details/opensources2.000diborich) (2005) - ఓపెన్ సోర్సెస్ 2.0 అనేది 1999 పుస్తకం, ఓపెన్ సోర్సెస్: వాయిస్‌లు ఫ్రమ్ ది రివల్యూషన్‌లో అభివృద్ధి చెందిన పరిణామ చిత్రాన్ని పెయింటింగ్ చేస్తూనే ఉన్న నేటి సాంకేతిక నాయకుల నుండి అంతర్దృష్టి మరియు ఆలోచనలను రేకెత్తించే వ్యాసాల సమాహారం.\n- [Open Sources: Voices from the Open Source Revolution](https://www.oreilly.com/openbook/opensources/book/) - Linus Torvalds (Linux), Larry Wall (Perl) మరియు Richard Stallman (GNU) వంటి ఓపెన్ సోర్స్ మార్గదర్శకుల నుండి వ్యాసాలు.\n\n## ఓపెన్ సోర్స్ సహకారం కార్యక్రమాల\n\n> ప్రారంభకులకు అనుకూలమైన సమస్యలను పని చేయడానికి లేదా కాలానుగుణ ఈవెంట్‌లను సమగ్రపరిచే కార్యక్రమాల జాబితా.\n\n- [Up For Grabs](https://up-for-grabs.net/) - ప్రారంభకులకు అనుకూలమైన సమస్యలతో కూడిన ప్రాజెక్ట్‌లను కలిగి ఉంటుంది\n- [First Timers Only](https://www.firsttimersonly.com/) - \"మొదటిసారి మాత్రమే\" అని లేబుల్ చేయబడిన బగ్‌ల జాబితా.\n- [First Contributions](https://firstcontributions.github.io/) - మీ మొదటి ఓపెన్ సోర్స్ సహకారాన్ని 5 నిమిషాల్లో చేయండి. ప్రారంభకులకు సహకారంతో ప్రారంభించడంలో సహాయపడే సాధనం మరియు ట్యుటోరియల్. [ఇక్కడ](https://github.com/firstcontributions/first-contributions) అనేది సైట్ కోసం గిట్-హబ్ / GitHub సోర్స్ కోడ్ మరియు రిపోజిటరీకి సహకారం అందించే అవకాశం.\n- [Hacktoberfest](https://hacktoberfest.digitalocean.com/) - ఓపెన్ సోర్స్ సహకారాలను ప్రోత్సహించే కార్యక్రమం. అక్టోబర్ నెలలో కనీసం 4 పుల్ రిక్వెస్ట్‌లు చేయడం ద్వారా టీ-షర్టులు మరియు స్టిక్కర్‌లు వంటి బహుమతులను పొందండి.\n- [24 Pull Requests](https://24pullrequests.com) - 24 పుల్ రిక్వెస్ట్‌లు అనేది డిసెంబర్ నెలలో ఓపెన్ సోర్స్ సహకారాన్ని ప్రోత్సహించే ప్రాజెక్ట్.\n- [Ovio](https://ovio.org) - కంట్రిబ్యూటర్-ఫ్రెండ్లీ ప్రాజెక్ట్‌ల క్యూరేటెడ్ ఎంపికతో కూడిన ప్లాట్‌ఫారమ్. ఇది [శక్తివంతమైన సమస్య శోధన సాధనం](https://ovio.org/issues)ని కలిగి ఉంది మరియు మీరు ప్రాజెక్ట్‌లు మరియు సమస్యలను తర్వాత కోసం సేవ్ చేద్దాం.\n- [Contribute-To-This-Project](https://github.com/Syknapse/Contribute-To-This-Project) - మొదటిసారిగా కంట్రిబ్యూటర్‌లు సరళమైన మరియు సులభమైన ప్రాజెక్ట్‌లో పాల్గొనడానికి మరియు గిట్-హబ్ / GitHubని ఉపయోగించడంలో సౌకర్యవంతంగా ఉండటానికి ఇది ఒక ట్యుటోరియల్.\n- [Open Source Welcome Committee](https://www.oswc.is/) - ఓపెన్ సోర్స్ వెల్ కమ్ కమిటీ (OSWC) ఓపెన్ సోర్స్ యొక్క అసాధారణ ప్రపంచంలో చేరడానికి కొత్తవారికి సహాయం చేస్తుంది. మీ ఓపెన్ సోర్స్ ప్రాజెక్ట్‌లను మాతో సమర్పించండి!\n\n## పాల్గొనడానికి ఓపెన్ సోర్స్ కార్యక్రమాలు\n\n> ఓపెన్ సోర్స్ సాఫ్ట్‌వేర్ ప్రాజెక్ట్‌లకు సహకరించడానికి మెంటార్‌లు మరియు రిసోర్స్‌లతో బిగినింగ్ కంట్రిబ్యూటర్‌లను మ్యాచ్ చేయడంలో సహాయపడటానికి కమ్యూనిటీ హోస్ట్ చేసిన ప్రోగ్రామ్, ఇంటర్న్‌షిప్ లేదా ఫెలోషిప్.\n\n- [All Linux Foundation (LF) Mentorships](https://mentorship.lfx.linuxfoundation.org/#projects_all)\n- [Cloud Native Computing Foundation](https://events.linuxfoundation.org/kubecon-cloudnativecon-north-america/)\n- [Beginner friendly Open Source programs with their timelines](https://github.com/arpit456jain/Open-Source-Programs)\n- [FossAsia](https://fossasia.org)\n- [Free Software Foundation (FSF) Internship](https://www.fsf.org/volunteer/internships)\n- [Google Summer of Code](https://summerofcode.withgoogle.com/) -Google ద్వారా ఏటా నిర్వహించబడే చెల్లింపు కార్యక్రమం మరింత మంది విద్యార్థి డెవలపర్‌లను ఓపెన్ సోర్స్ సాఫ్ట్‌వేర్ డెవలప్‌మెంట్‌లోకి తీసుకురావడంపై దృష్టి పెట్టింది.\n- [Hacktoberfest](https://hacktoberfest.digitalocean.com)\n- [LF Networking Mentorship](https://wiki.lfnetworking.org/display/LN/LFN+Mentorship+Program)\n- [Microsoft Reinforcement Learning](https://www.microsoft.com/en-us/research/academic-program/rl-open-source-fest/)\n- [Open Summer of Code](https://osoc.be/students)\n- [Outreachy](https://www.outreachy.org)\n- [Processing Foundation Internship](https://processingfoundation.org/fellowships/)\n- [Social Summer of Code](https://ssoc.getsocialnow.co/) - సోషల్ ఫౌండేషన్ విద్యార్థులు ఓపెన్ సోర్స్ కల్చర్ గురించి తెలుసుకోవడానికి మరియు కమ్యూనిటీలో పాల్గొనడానికి ఈ రెండు నెలల సుదీర్ఘ వేసవి కార్యక్రమాన్ని అందిస్తుంది. అనుభవజ్ఞులైన సలహాదారుల మార్గదర్శకత్వంలో పాల్గొనేవారు నిజ జీవిత ప్రాజెక్ట్‌లకు సహకరిస్తారు.\n- [Girlscript Summer of Code](https://gssoc.girlscript.tech/) - గర్ల్‌స్క్రిప్ట్ ఫౌండేషన్ ద్వారా ప్రతి వేసవిలో మూడు నెలల పాటు ఓపెన్ సోర్స్ ప్రోగ్రామ్ నిర్వహించబడుతుంది. నిరంతర ప్రయత్నాలతో, పాల్గొనేవారు ఈ నెలల్లో నైపుణ్యం కలిగిన మార్గదర్శకుల యొక్క తీవ్ర మార్గదర్శకత్వంలో అనేక ప్రాజెక్ట్‌లకు సహకరిస్తారు. అటువంటి ఎక్స్పోజర్‌తో, విద్యార్థులు తమ ఇళ్ల సౌలభ్యం నుండి వాస్తవ-ప్రపంచ ప్రాజెక్టులకు సహకరించడం ప్రారంభిస్తారు.\n- [Rails Girls Summer of Code](https://railsgirlssummerofcode.org/) - మహిళలు మరియు నాన్-బైనరీ కోడర్‌ల కోసం గ్లోబల్ ఫెలోషిప్ ప్రోగ్రామ్, అక్కడ వారు ఇప్పటికే ఉన్న ఓపెన్ సోర్స్ ప్రాజెక్ట్‌లలో పని చేస్తారు మరియు వారి నైపుణ్యాన్ని విస్తరించారు.\n- [Major League Hacking (MLH) Fellowship](https://fellowship.mlh.io/) - ఔత్సాహిక సాంకేతిక నిపుణుల కోసం రిమోట్ ఇంటర్న్‌షిప్ ప్రత్యామ్నాయం వారు నిర్మించే లేదా ఓపెన్ సోర్స్ ప్రాజెక్ట్‌లకు దోహదపడతారు.\n\n## ఉత్తర్వు / లైసెన్స్\n\n<a rel=\"license\" href=\"https://creativecommons.org/licenses/by-sa/4.0/\"><img alt=\"Creative Commons License\" style=\"border-width:0\" src=\"https://licensebuttons.net/l/by-sa/4.0/88x31.png\" /></a><br />ఈ పని <a rel=\"license\" href=\"https://creativecommons.org/licenses/by-sa/4.0/\">Creative Commons Attribution-ShareAlike 4.0 International License</a> క్రింద లైసెన్స్ పొందింది.\n"
  },
  {
    "path": "README-TR.md",
    "content": "<!-- Do not translate this -->\n<details>\n<summary>\n<strong> Read this guide in other languages </strong>\n</summary>\n    <ul>\n        <li><a href=\"./README.md\"> English </a></li>\n        <li><a href=\"./README-MR.md\"> मराठी </a></li>\n        <li><a href=\"./README-BN.md\"> বাংলা </a></li>\n        <li><a href=\"./README-CN.md\"> 中文 </a></li>\n        <li><a href=\"./README-RU.md\"> русский </a></li>\n        <li><a href=\"./README-RO.md\"> Românesc </a></li>\n        <li><a href=\"./README-IT.md\"> Italiano </a></li>\n        <li><a href=\"./README-ES.md\"> Español </a></li>\n        <li><a href=\"./README-pt-BR.md\"> Português (BR) </a></li>\n        <li><a href=\"./README-DE.md\"> Deutsch </a></li>\n        <li><a href=\"./README-GR.md\"> Ελληνικά </a></li>\n        <li><a href=\"./README-FR.md\"> Français </a></li>\n        <li><a href=\"./README-TR.md\"> Turkish </a></li>\n        <li><a href=\"./README-KO.md\"> 한국어 </a></li>\n        <li><a href=\"./README-JA.md\"> 日本語 </a></li>\n        <li><a href=\"./README-HI.md\"> हिंदी </a></li>\n    </ul>\n</details>\n<!-- Do not translate this -->\n\n# Merhaba, Yeni Başlamış Açık Kaynak Katkı Sağlayıcıları!\n\n[![Pull Requests Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat)](http://makeapullrequest.com)\n[![first-timers-only Friendly](https://img.shields.io/badge/first--timers--only-friendly-blue.svg)](http://www.firsttimersonly.com/)\n[![Check Resources](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml/badge.svg)](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml)\n\n### Kelime kılavuzu\n- **_repository_**: repo, depo\n- **_contributor_**: katkı sağlayıcı\n- **_workflow_** : dinamik\n- **_review_** : Gözden Geçirme\n\n### Çevrilmeyenler ( yerleşmiş özel isim gibi değerlendirilenler )\n- **_pull request_**\n- **_issue_**\n- **_bug_**\n- **_markdown_**\n- **_cheat sheet_**\n\nAçık kaynağa katkı sağlamak konusunda yeni olanlar için kaynak listesi.\n\nİlave olarak kaynak bulursanız lütfen pull request atarak katkı sağlayın. \n\nEğer bir sorunuz veya yorumunuz varsa lütfen \"issue\" oluşturun.\n\n**İçerikler**\n\n- [Genel olarak Açık Kaynağa katkı sağlamak](#Genel-olarak-Açık-Kaynağa-katkı-sağlamak)\n- [Doğrudan Github aramaları](#Doğrudan-Github-aramaları)\n- [Mozilla'nın katkı sağlayıcıları ekosistemi](#Mozilla'nın-katkı-sağlayıcıları-ekosistemi)\n- [Yeni Açık Kaynak katkı sağlayıcıları için faydalı makaleler](#Yeni-Açık-Kaynak-katkı-sağlayıcıları-için-faydalı-makaleler)\n- [Versiyon Kontrol Kullanmak](#Versiyon-Kontrol-Kullanmak)\n- [Açık Kaynak Kitapları](#Açık-Kaynak-Kitapları)\n- [Açık Kaynağa katkı girişimleri](#Açık-Kaynağa-katkı-girişimleri)\n- [Katılabileceğiniz Açık kaynaklı programlar](#Katılabileceğiniz-Açık-kaynaklı-programlar)\n- [Lisans](#Lisans)\n\n## Genel olarak Açık Kaynağa katkı sağlamak\n> Açık Kaynak dünyasını ve kültürünü tartışan makaleler ve kaynaklar.\n- [Açık Kaynağa katkı sağlamak hakkında açıklayıcı kılavuz](https://medium.freecodecamp.org/the-definitive-guide-to-contributing-to-open-source-900d5f9f2282) by [@DoomHammerNG](https://twitter.com/DoomHammerNG)\n- [Açık Kaynağa Giriş](https://www.digitalocean.com/community/tutorial_series/an-introduction-to-open-source) - DigitalOcean tarafından hazırlanan GitHub'da başarılı katkı için yolunda kılavuz olacak dersler \n- [Issuehub.io](http://issuehub.pro/) - GitHub issuelarını etiket ve dile göre aramak için araç\n- [Code Triage](https://www.codetriage.com/) - Dil bazlı filtrelenmiş popüler repoları ve issueları bulmak için gayet hoş başka bir araç \n- [Awesome-for-beginners](https://github.com/MunGell/awesome-for-beginners) - Uygun bugları etiketler uygulayarak repoları toplamış olan faydalı bir repo \n- [Open Source Guides](https://opensource.guide/) - Bireyler, topluluklar ve şirketler için Açık Kaynağa nasıl katkı sağlayacakları konusunda yardımcı kaynakların toplandığı koleksiyon\n- [Yapılması ve yapılmaması gereken 45 Github konusu](https://hackernoon.com/45-github-issues-dos-and-donts-dfec9ab4b612) - Github'da yapılması ve yapılmaması gerekenler\n- [GitHub Kılavuzları](https://docs.github.com/en) - Github'u nasıl daha etkili kullanılabileceğini ihtiva eden kılavuzlar\n- [Contribute to Open Source](https://github.com/danthareja/contribute-to-open-source) - \nSimülasyon prosine kod katkısı sağlayarak GitHub dinamiklerini öğren\n- [Linux Foundation's Open Source Guides for the Enterprise](https://www.linuxfoundation.org/resources/open-source-guides) - Açık kaynak projeler için Linux Vakfı kılavuzları\n- [CSS Tricks An Open Source Etiquette Guidebook](https://css-tricks.com/open-source-etiquette-guidebook/) - Kent C. Dodds ve Sarah Drasner tarafından yazılan Açık Kaynak görgü kuralları\n- [Öğrenciler için A'dan Z'ye Kaynaklar](https://github.com/dipakkr/A-to-Z-Resources-for-Students) - Öğrenciler için yeni bir kodlama dilini öğrenirlerken kullanabilecekleri kaynak listesi\n- [İlk Açık Kaynak projene katkı sağlarken: Pratik Bir Bakış Açısı](https://blog.devcenter.co/contributing-to-your-first-open-source-project-a-practical-approach-1928c4cbdae) - İlk Açık Kaynak projene katkı sağlarken adım adım bakış açısı   \n- [Abati Adewale](https://www.acekyd.com).\n- [Pull Request Ruleti](http://www.pullrequestroulette.com/) - Açık Kaynak projelere ait gözden geçirilmesi için gönderilmiş pull requestler. \n- [\"GitHub'daki açık kaynak projelere nasıl katkı sağlanır.\" Egghead.io](https://egghead.io/courses/how-to-contribute-to-an-open-source-project-on-github) - \"GitHub'daki açık kaynak projelere adım adım nasıl katkı sağlanır?\" ile ilgili videolar.\n\n## Doğrudan Github aramaları\n> Direkt olarak uygun issuelara referans veren katkı sağlanabilecek arama bağlantıları.\n- [is:issue is:open label:beginner](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Abeginner)\n- [is:issue is:open label:easy](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Aeasy)\n- [is:issue is:open label:first-timers-only](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Afirst-timers-only)\n- [is:issue is:open label:good-first-bug](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Agood-first-bug)\n- [is:issue is:open label:\"good first issue\"](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3A\"good+first+issue\")\n- [is:issue is:open label:starter](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Astarter)\n- [is:issue is:open label:up-for-grabs](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Aup-for-grabs)\n\n## Mozilla'nın katkı sağlayıcıları ekosistemi\n> Mozilla, sağlıklı bir internet sözü veriyor ve bununla birlikte açık kaynak projelerine katkıda bulunma fırsatlarına sahip oluyor.\n- [Good First Bugs](https://bugzilla.mozilla.org/buglist.cgi?quicksearch=sw:%22[good%20first%20bug]%22&limit=0) - İyi bir başlangıç olarak tanımlanmış bug'lar \n- [Mentored Bugs](https://bugzilla.mozilla.org/buglist.cgi?quicksearch=mentor%3A%40) - Üzerinde çalışırken sıkıştığında sohbet aracılığı ile yardım alabileceğin, mentörler tarafından atanmış bug'lar\n- [Bugs Ahoy](http://www.joshmatthews.net/bugsahoy/) - Bugzilla üzerinden bug bulabileceğiniz websitesi.\n- [Firefox DevTools](http://firefox-dev.tools/) - Firefox tarayıcı içerisinde bug bulabileceğiniz ve inceleyebileceğiniz araçlar \n- [Start Mozilla](https://twitter.com/StartMozilla) - Mozilla ekosisteminde yeni olan katkı sağlayıcıları için tweetler atan Twitter hesabı \n\n## Yeni Açık Kaynak Katkı Sağlayıcıları için faydalı makaleler \n> Nasıl başlayacağınıza dair yeni katkıda bulunanlara yönelik faydalı makaleler ve bloglar.\n- [İlk Açık Kaynak Projenizi nasıl seçersiniz?](https://github.com/collections/choosing-projects) yazan [@GitHub](https://github.com/github)\n- [Düzeltmek için ilk Açık Kaynak Bug'ınızı nasıl bulursunuz?](https://medium.freecodecamp.org/finding-your-first-open-source-project-or-bug-to-work-on-1712f651e5ba#.slc8i2h1l) yazan [@Shubheksha](https://github.com/Shubheksha)\n- [İlk Defa Açık Kaynağa başlayacaklar için](https://kentcdodds.com/blog/first-timers-only) by [@kentcdodds](https://github.com/kentcdodds)\n- [Açık Kaynağa iyiliği Geri Getirmek](http://www.hanselman.com/blog/BringKindnessBackToOpenSource.aspx) yazan [@shanselman](https://github.com/shanselman)\n- [İlk defa Açık Kaynağın içine girmek](https://www.nearform.com/blog/getting-into-open-source-for-the-first-time/) yazan [@mcdonnelldean](https://github.com/mcdonnelldean)\n- [Açık Kaynağa Nasıl Katkı Sağlanır](https://opensource.guide/how-to-contribute/) yazan [@GitHub](https://github.com/github/opensource.guide)\n- [Kodunuzda Bug'ı Nasıl Bulabilirsiniz?](https://8thlight.com/insights/how-to-find-a-bug-in-your-code) yazan [@dougbradbury](https://twitter.com/dougbradbury)\n- [Markdownda Uzmanlaşmak](https://docs.github.com/features/mastering-markdown/) by [@GitHubGuides](https://docs.github.com/en)\n- [İlk Görev: Katkı Sağlayıcı Sayfası](https://forcrowd.medium.com/first-mission-contributors-page-df24e6e70705#.2v2g0no29) yazan [@forCrowd](https://github.com/forCrowd)\n- [5 Dakika İçerisinde Açık Kaynağa Nasıl Katkı Sağlarsın](https://medium.freecodecamp.org/how-to-make-your-first-open-source-contribution-in-just-5-minutes-aaad1fc59c9a) yazan [@roshanjossey](https://medium.freecodecamp.org/@roshanjossey)\n- [Hacktoberfest 2018: Nasıl ücretsiz t-shirt alırsın — Kodlama Yeni Olsan Dahi](https://medium.freecodecamp.org/hacktoberfest-2018-how-you-can-get-your-free-shirt-even-if-youre-new-to-coding-96080dd0b01b) yazan [@quincylarson](https://medium.freecodecamp.org/@quincylarson)\n- [Açık Kaynak için Acı Kılavuz](https://medium.com/codezillas/a-bitter-guide-to-open-source-a8e3b6a3c1c4) yazan [@ken_wheeler](https://medium.com/@ken_wheeler)\n- [Yeni Geliştiriciler için Adım Adım İlk Defa Açık Kaynağa Katkı Sağlama Kılavuzu](https://hackernoon.com/contributing-to-open-source-the-sharks-are-photoshopped-47e22db1ab86) yazan [@LetaKeane](http://www.letakeane.com/)\n- [Windows üzerinde Adım Adım Git ve GitHub Öğren)](https://medium.com/@ows_ali/be93518e06dc) yazan [@ows-ali](https://medium.com/@ows_ali)\n- [Neden Açık Kaynak ve Nasıl?](https://careerkarma.com/blog/open-source-projects-for-beginners/) by [@james-gallagher](https://careerkarma.com/blog/author/jamesgallagher/)\n- [Açık Kaynağı kullanmaya nasıl başlanır? - By Sayan Chowdhury](https://www.hackerearth.com/getstarted-opensource/)\n- [Hangi Açık Kaynağa Katkıda Bulunmalıyım?](https://kentcdodds.com/blog/what-open-source-project-should-i-contribute-to/) by [@kentcdodds](https://github.com/kentcdodds)\n- [Açık Kaynak için Sürükleyici bir Giriş Klavuzu](https://developeraspire.hashnode.dev/an-immersive-introductory-guide-to-open-source) by [Franklin Okolie](https://twitter.com/DeveloperAspire)\n- [Açık Kaynağa Katkıda bulunmaya Başlamak](https://stackoverflow.blog/2020/08/03/getting-started-with-contributing-to-open-source/) by [Zara Cooper](https://stackoverflow.blog/author/zara-cooper/)\n- [Yeni başlayanlar için Açık Kaynağa katkıda bulunmak](https://workat.tech/general/article/open-source-contribution-guide-xmhf1k601vdj) by [Sudipto Ghosh](https://github.com/pydevsg)\n- [Açık Kaynağa Kod Yazmadan Katkıda Bulunmanın 8 Yolu](https://opensource.com/life/16/1/8-ways-contribute-open-source-without-writing-code) by [OpenSource](https://twitter.com/OpenSourceWay)\n- [Açık Kaynaklı Yazılım Nedir? AKY(OSS) Sade Anlatım](https://www.freecodecamp.org/news/what-is-open-source-software-explained-in-plain-english/) by [Jessica Wilkins](https://www.freecodecamp.org/news/author/jessica-wilkins/)\n\n## Versiyon Kontrol Kullanmak\n> Genellikle Git ve GitHub olmak üzere sürüm kontrolünü kullanmayla ilgili çeşitli düzeylerde öğreticiler ve kaynaklar.\n- [Git Gibi Düşünmek](https://think-like-a-git.net/) - İleri Seviye Yeni Başlayan olup bazı noktalarda zorlananlar için güvenli bir deneyim sağlamaları için basit stratejiler veren Git Tanıtımı\n- [Git'i Dene](https://docs.github.com/en/get-started/quickstart/set-up-git) - Ücretsiz olarak tarayıcın üzerinde 15 dakikada Git Öğren\n- [Her Gün \"Git\"](https://git-scm.com/docs/giteveryday) - Her gün ihtiyaç duyabileceğiniz kullanışlı komutlar\n- [Oh shit, git!](http://ohshitgit.com/) - Düz bir ingilizce ile anlatılmış \"Git kullanırken yapılan ortak hatalardan nasıl kaçınırsın\" kılavuzu\n- [Atlassian'ın Git Dersleri](https://www.atlassian.com/git/tutorials/) - Çeşitli git kullanma kılavuzları.\n- [GitHub Git Cheat Sheet](https://education.github.com/git-cheat-sheet-education.pdf) (PDF)\n- [freeCodeCamp ın Viki Git Kaynakları](https://www.freecodecamp.org/forum/t/wiki-git-resources/13136)\n- [GitHub Akışı](https://www.youtube.com/watch?v=juLIxo42A_s) (42:06) - Pull Request nasıl yapılır hakkında bir Github Konuşması\n- [GitHub Öğrenme Kaynakları](https://help.github.com/articles/git-and-github-learning-resources/) - Git ve GitHub öğrenme kaynakları.\n- [Pro Git](https://git-scm.com/book/en/v2) - Scott Chacon ve Ben Straub tarafından yazılmış, ApressThe tarafından paylaşılmış \"Pro Git book\" kitabının tamamı.\n- [Git-it](https://github.com/jlord/git-it-electron) - Adım Adım Masaüstünde kullanabileceğiniz Git dersleri\n- [Git için Uçuş Kuralları](https://github.com/k88hudson/git-flight-rules) - İşler sarpa sardığında ne yapılması gerektiği ile ilgili kılavuz.\n- [Git and GitHub hakkında kapsamlı bir tanıtım](https://codeburst.io/git-good-part-a-e0d826286a2a) - Madhav Bahl tarafından yazılmış ki git ve GitHub'da yeniyseniz mutlaka görmelisiniz, Git Versiyon Kontrolünü detaylı olarak anlatan bir tanıtım.\n- [Başlangıç Seviyesi için İspanyolca Git Kılavuzu](https://platzi.github.io/git-slides/#/)git ve GitHub hakkında İspanyolca açıklanmış eksiksiz kılavuz slaytı. Una guía completa de diapositivas sobre git y GitHub explicadas en Español.\n- [Git Kraken](https://www.gitkraken.com/git-client) - Versiyon Kontrol için görsel, çapraz platform uyumlu ve interaktif git masaüstü uygulaması.\n- [Git Tips](https://github.com/git-tips/tips) - En sık kullanılan git ipuçları ve püf noktaları.\n- [Git Best Practices](https://sethrobertson.github.io/GitBestPractices/) - Sıklıkla commit oluşturun, Mükemmeleştirin, bir seferde Yayımlayın: En iyi git Pratikleri.\n- [Git Interactive Tutorial](https://learngitbranching.js.org/) - Git’i görsel içeriklerle ve interaktif bir şekilde öğrenin.\n- [Complete Git and GitHub Tutorial](https://www.youtube.com/watch?v=apGV9Kg7ics) (1:12:39) - Tam bir Git ve GitHub Eğitimi by [Kunal Kushwaha](https://www.youtube.com/channel/UCBGOUQHNNtNGcGzVq5rIXjw).\n\n## Açık Kaynak kitapları\n> Açık Kaynaklı her şey üzerine kitaplar: Kültür, Tarih, En İyi Uygulamalar, vb.\n- [Açık Kaynak Proje Üretmek](http://producingoss.com/) - \"Producing Open Source Software\"  kitabı Açık Kaynak Geliştirmenin İnsan tarafı hakkında bir kitaptır. Ücretsiz yazılım kültürünü, kullanıcı ve geliştiricilerden beklentileri ve başarı projelerin yönetimini anlatır. \n- [Açık Kaynak Kitap Serisi](https://opensource.com/resources/ebooks) - Açık Kaynak ve büyüyen Açık Kaynak Hareketi hakkında hakkında daha fazla bilgiler öğrenebileceğiniz https://opensource.com sitesinden kapsamlı ücretsiz kitap listesi\n- [Yazılım Yayınlama Pratikleri: Nasıl Yapılır](http://en.tldp.org/HOWTO/Software-Release-Practice-HOWTO/) - Linux ve diğer Açık-Kaynak projeler için doğru yayınlama pratiklerini açıklar. Bu pratikleri takip ederek, kullanıcıların kodunuzu daha iyi derlemesini, kullanmasını ve diğer geliştiriclerin kodunuzu anlayarak sizin işbirliği içinde kodunuzu iyileştirmesini sağlayacaksınız.\n- [Açık Kaynak 2.0 : Süregelen Evrim](https://archive.org/details/opensources2.000diborich) (2005) - Açık Kaynak 2.0 Bugünün teknoloji liderlerinden, 1999 yılında yayınlanmış kitap olan \"Açık Kaynak: Devrimden Sesler\" kitabının, süregelen evrimsel resmini yüksek idrak kabiliyetiyle resmeden ve düşünmeye sevk edici kompozisyon dizisidir. \n- [Açık Kaynaklı Uygulamalarının Mimarisi](http://www.aosabook.org/en/git.html) - Dağıtılmış iş akışlarını etkinleştirmek için Git’in çeşitli yönlerinin nasıl çalıştığını ve diğer sürüm kontrol sistemlerinden (VCS’ler) nasıl farklı olduğunu anlatır.\n- [Açık Kaynaklar: Açık Kaynak Devriminden Sesler](https://www.oreilly.com/openbook/opensources/book/) - Linus Torvalds (Linux), Larry Wall (Perl) ve Richard Stallman (GNU) gibi açık kaynak öncülerinden yazılar.\n\n## Açık Kaynağa Katkı girişimleri\n> Yeni başlayanlar için uygun sorunları veya mevsimsel etkinlikleri bir araya getiren girişimlerin listesi.\n- [Up For Grabs](http://up-for-grabs.net/#/) - Başlangıç seviyesi dostu issue'lar ile beraber projeleri içerir\n- [Yalnızca İlk Defa Başlayanlar İçin](http://www.firsttimersonly.com/) - \"first-timers-only\" olarak etkiketlenmiş bug listesi\n- [İlk Katkılar](https://firstcontributions.github.io/) - 5 dakika içerisinde ilk Açık Kaynak Katkını yap. Katkı yapmaya başlamak için yardım eden araç ve ders \n- [Hacktoberfest](https://hacktoberfest.digitalocean.com/) - Açık Kaynağa Katkı sağlamayı teşvik eden bir program. Ay bazında en az 5 pull request yaparak t-shirt ve sticker gibi hediyeler kazan.\n- [24 Pull Requests](https://24pullrequests.com) - Aralık ayı boyunca Açık Kaynak işbirliğini destekleyen proje. \n- [Ovio](https://ovio.org/) - Katılımcı dostu projeleri bir katalog olarak geliştiriciye sunan proje. [Güçlü bir sorun arama](https://ovio.org/issues) aracına sahiptir ve sorunları daha sonrası için kaydetmenize izin verir.\n- [Bu Projeye Katkıda Bulunun](https://github.com/Syknapse/Contribute-To-This-Project/blob/master/translations/README/TURKISH.md) - Bu, ilk kez katkıda bulunanların basit ve kolay bir projeye katılmalarına ve GitHub'ı kullanma konusunda rahat olmalarına yardımcı olacak bir eğitimdir.\n- [Open Source Welcome Committee](https://www.oswc.is) - Open Source Welcome Committee (OSWC), yeni gelenlerin olağanüstü Açık Kaynak dünyasına katılmalarına yardımcı olur.\n\n## Katılabileceğiniz Açık kaynaklı programlar\n> Açık kaynak yazılım projelerine katkıda bulunmak için yeni başlayanları danışmanlar ve kaynaklarla eşleştirmeye yardımcı olmak için bir topluluk tarafından barındırılan bir program, staj veya burs.\n- [All Linux Foundation (LF) Mentorships](https://mentorship.lfx.linuxfoundation.org/#projects_all)\n- [Beginner friendly Open Source programs with their timelines](https://github.com/arpit456jain/Open-Source-Programs)\n- [FossAsia](https://fossasia.org)\n- [Free Software Foundation (FSF) Internship](https://www.fsf.org/volunteer/internships)\n- [Girlscript Summer of Code](https://gssoc.girlscript.tech/) - Girlscript Vakfı tarafından her yaz yürütülen üç aylık bir Açık Kaynak Programı. Katılımcılar, sürekli çaba göstererek, bu aylarda yetenekli mentorların aşırı rehberliğinde çok sayıda projeye katkıda bulunur. Böyle bir teşhir ile öğrenciler evlerinin rahatlığında gerçek dünya projelerine katkıda bulunmaya başlarlar.\n- [Outreachy](https://www.outreachy.org)\n- [Hacktoberfest](https://hacktoberfest.digitalocean.com)\n- [CNCF](https://events.linuxfoundation.org/kubecon-cloudnativecon-north-america/)\n- [Google Summer of Code](https://summerofcode.withgoogle.com/) - Google, daha fazla öğrenci geliştiriciyi açık kaynaklı yazılım geliştirmeye teşvik etmek için her yıl bu ücretli programı gerçekleştirir. \n- [Rails Girls Summer of Code](https://railsgirlssummerofcode.org/) - Kadınlar ve ikilik dışı(ikili olmayan, nabinari, non-binary) yazılımcı bireyler için mevcut açık kaynaklı projeler üzerinde çalıştıkları ve becerilerini genişlettikleri küresel bir topluluk.\n- [Major League Hacking Fellowship](https://fellowship.mlh.io/) - Kalkınan teknoloji uzmanları için açık kaynaklı bir proje oluşturduğu veya katkı sağladığı için uzaktan bir staj alternatifi.\n- [Hyperledger Mentorship Program](https://wiki.hyperledger.org/display/INTERN) - Eğer Blockchain ile ilgileniyorsanız, bu sizin için. Hyperledger'a katkıda bulunabilirsiniz. Bu mentorluk programı, Hyperledger açık kaynak geliştirmeye pratik bir şekilde maruz kalmanızı sağlar. Hyperledger geliştirici topluluğunda son derece aktif olan danışmanlar olarak atanacaksınız.\n- [LF Networking Mentorship](https://wiki.lfnetworking.org/display/LN/LFN+Mentorship+Program)\n- [Microsoft Reinforcement Learning](https://www.microsoft.com/en-us/research/academic-program/rl-open-source-fest/)\n- [Open Summer of Code](https://osoc.be/students)\n- [Open Mainframe](https://www.openmainframeproject.org/all-projects/mentorship-program) - Open Mainframe Projesi'nin ayrıca kendi açık kaynak programı vardır ve danışanlar anabilgisayar teknolojisi konusundaki bilgilerini genişletebileceklerdir.\n- [Processing Foundation Internship](https://processingfoundation.org/fellowships/)\n- [Redox OS Summer of Code](https://www.redox-os.org/rsoc/)\n- [Social Summer of Code](https://ssoc.devfolio.co/) - Social Foundation, öğrencilerin açık kaynak kültürü hakkında bilgi edinmeleri ve topluluğa dahil olmaları için bu iki aylık uzun yaz programını sunar. Katılımcılar, deneyimli mentorların rehberliğinde gerçek hayat projelerine katkıda bulunurlar.\n- [Season of KDE](https://season.kde.org/) - KDE topluluğu tarafından düzenlenen ;The Season of KDE, dünyadaki tüm bireylere yönelik bir sosyal yardım programıdır. KDE, ücretsiz ve açık kaynaklı yazılım geliştiren uluslararası bir özgür yazılım topluluğudur ve KDE'nin Sezonu programı aracılığıyla KDE'ye katkıda bulunabilirsiniz.\n\n## Lisans\n<a rel=\"license\" href=\"http://creativecommons.org/licenses/by-sa/4.0/\"><img alt=\"Creative Commons License\" style=\"border-width:0\" src=\"https://i.creativecommons.org/l/by-sa/4.0/88x31.png\" /></a><br />Lisans türü: <a rel=\"license\" href=\"http://creativecommons.org/licenses/by-sa/4.0/\">Creative Commons Attribution-ShareAlike 4.0 International License</a>.\n"
  },
  {
    "path": "README-UK.md",
    "content": "<!-- Do not translate this -->\n<details>\n<summary>\n<strong> Read this guide in other languages </strong>\n</summary>\n    <ul>\n        <li><a href=\"./README.md\"> English </a></li>\n        <li><a href=\"./README-MR.md\"> मराठी </a></li>\n        <li><a href=\"./README-BN.md\"> বাংলা </a></li>\n        <li><a href=\"./README-CN.md\"> 中文 </a></li>\n        <li><a href=\"./README-RU.md\"> русский </a></li>\n        <li><a href=\"./README-RO.md\"> Românesc </a></li>\n        <li><a href=\"./README-IT.md\"> Italiano </a></li>\n        <li><a href=\"./README-ID.md\"> Indonesia </a></li>\n        <li><a href=\"./README-ES.md\"> Español </a></li>\n        <li><a href=\"./README-pt-BR.md\"> Português (BR) </a></li>\n        <li><a href=\"./README-DE.md\"> Deutsch </a></li>\n        <li><a href=\"./README-HE.md\"> עברית </a></li>\n        <li><a href=\"./README-GR.md\"> Ελληνικά </a></li>\n        <li><a href=\"./README-FR.md\"> Français </a></li>\n        <li><a href=\"./README-TR.md\"> Turkish </a></li>\n        <li><a href=\"./README-KO.md\"> 한국어 </a></li>\n        <li><a href=\"./README-JA.md\"> 日本語 </a></li>\n        <li><a href=\"./README-HI.md\"> हिंदी </a></li>\n        <li><a href=\"./README-FA.md\"> فارسی </a></li>\n        <li><a href=\"./README-UR.md\">اردو </a></li>\n        <li><a href=\"./README-AR.md\">اللغة العربية </a></li>\n        <li><a href=\"./README-TA.md\">தமிழ்</a></li>\n        <li><a href=\"./README-NE.md\">नेपाली</a></li>\n        <li><a href=\"./README-UK.md\">Українська</a> </li>\n    </ul>\n</details>\n<!-- Do not translate this -->\n\n# Ласкаво просиво нових розробників Open Source!\n\n[![Pull Requests Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat)](https://makeapullrequest.com)\n[![first-timers-only Friendly](https://img.shields.io/badge/first--timers--only-friendly-blue.svg)](https://www.firsttimersonly.com/)\n[![Check Resources](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml/badge.svg)](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml)\n\nЦе список ресурсів для новачків, які хочуть взяти участь в open source проектах.\n\nЯкщо ви знайдете додаткові ресурси, будь ласка, створіть pull request.\n\nЯкщо у вас є питання або коментарі, створіть issue.\n\n**Зміст**\n\n- [Внесення вкладу у відкритий вихідний код (статті англійською)](#Внесення-вкладу-у-відкритий-вихідний-код-%28статті-англійською%29)\n- [Прямий пошук на GitHub](#Прямий-пошук-на-GitHub)\n- [Екосистема контрибутора Mozilla](#Екосистема-контрибутора-Mozilla)\n- [Корисні статті для нових початківців Open Source](#Корисні-статті-для-початківців-Open-Source)\n- [Використання контролю версій](#Використання-контролю-версій)\n- [Книги Open Source](#Книги-Open-Source)\n- [Open Source ініціативи](#Open-Source-ініціативи)\n- [Програми з Open Source для участі](#Програми-з-Open-Source-для-участі)\n- [Ліцензія](#Ліцензія)\n\n## Внесення вкладу у відкритий вихідний код (статті англійською).\n\n> Статті та ресурси, які обговорюють світ і культуру відкритого коду.\n\n- [The Definitive Guide to Contributing to Open Source](https://www.freecodecamp.org/news/the-definitive-guide-to-contributing-to-open-source-900d5f9f2282/) від [@DoomHammerNG](https://twitter.com/DoomHammerNG).\n- [An Intro to Open Source](https://www.digitalocean.com/community/tutorial_series/an-introduction-to-open-source) - Навчальні посібники від DigitalOcean, які допоможуть вам досягти успіху тут, на GitHub.\n- [Code Triage](https://www.codetriage.com/) - ще один дуже гарний інструмент для пошуку популярних репозиторіїв та issue, відфільтрованих за мовою.\n- [Forge Your Future with Open Source](https://pragprog.com/titles/vbopens/forge-your-future-with-open-source/) ($) - Книга присвячена поясненню відкритого коду, як знайти проект і як це зробити. Включає всі ролі в розробці програмного забезпечення, а не лише програмістів.\n- [Awesome-for-beginners](https://github.com/MunGell/awesome-for-beginners) - репозиторій GitHub, яке збирає проекти з хорошими issue для нових учасників і застосовує мітки для їх опису.\n- [Open Source Guides](https://opensource.guide/) - Збір ресурсів для окремих осіб, спільнот і компаній, які хочуть навчитися керувати проектами з відкритим кодом і робити свій внесок у них.\n- [45 Github Issues Dos and Don’ts](https://hackernoon.com/45-github-issues-dos-and-donts-dfec9ab4b612) - Що можна і чого не можна робити на GitHub.\n- [GitHub Guides](https://docs.github.com/en) - основні посібники щодо ефективного використання GitHub.\n- [Contribute to Open Source](https://github.com/danthareja/contribute-to-open-source) - Вивчіть робочий процес GitHub, додавши код до проекту моделювання.\n- [Linux Foundation's Open Source Guides for the Enterprise](https://www.linuxfoundation.org/resources/open-source-guides) - Посібники Linux Foundation щодо проектів з відкритим кодом.\n- [CSS Tricks An Open Source Etiquette Guidebook](https://css-tricks.com/open-source-etiquette-guidebook/) - Посібник з етикету з відкритим вихідним кодом, написаний Кентом С. Доддсом і Сарою Драснер.\n- [A to Z Resources for Students](https://github.com/dipakkr/A-to-Z-Resources-for-Students) - Підібраний список ресурсів і можливостей для студентів коледжу вивчити нову мову програмування.\n- [\"How to Contribute to an Open Source Project on GitHub\" by Egghead.io](https://egghead.io/courses/how-to-contribute-to-an-open-source-project-on-github) - Покроковий відеопосібник про те, як почати робити внесок у проекти з відкритим кодом на GitHub.\n- [Contributing to Open Source: A Live Walkthrough from Beginning to End](https://medium.com/@kevinjin/contributing-to-open-source-walkthrough-part-0-b3dc43e6b720) - Це покрокове керівництво щодо внеску у проекти з відкритим кодом, що охоплює все: від вибору відповідного проекту, роботи над проблемою до включення PR.\n- [\"How to Contribute to Open Source Project\" by Sarah Drasner](https://css-tricks.com/how-to-contribute-to-an-open-source-project/) - Вони зосереджуються на дрібницях надсилання запиту на отримання (PR) до чужого проекту на GitHub.\n- [\"How to get started with Open Source\" by Sayan Chowdhury](https://www.hackerearth.com:443/getstarted-opensource/) - Ця стаття охоплює ресурси для створення внеску у проекти з відкритим кодом для початківців на основі їхніх мовних інтересів.\n- [\"Browse good first issues to start contributing to open source\"](https://github.blog/2020-01-22-browse-good-first-issues-to-start-contributing-to-open-source/) - GitHub тепер допомагає вам знайти хороші перші issue, щоб почати робити внесок у проекти з відкритим кодом.\n- [\"How to Contribute to Open Source Project\" by Maryna Z](https://rubygarage.org/blog/how-contribute-to-open-source-projects) - Ця вичерпна стаття спрямована на бізнес (але все ще корисна для окремих учасників), де розповідається про те, чому, як і в які проекти з відкритим кодом робити свій внесок.\n- [\"start-here-guidelines\" by Andrei](https://github.com/zero-to-mastery/start-here-guidelines) -\n  Lets Git почав з ігрового майданчика з відкритим кодом. Спеціально розроблений для освітніх цілей і практичного досвіду.\n- [\"Getting Started with Open Source\" by NumFocus](https://github.com/numfocus/getting-started-with-open-source) - репозиторій GitHub, який допомагає учасникам подолати бар’єри на вході до Open Source.\n- [\"Opensoure-4-everyone\" by Chryz-hub](https://github.com/chryz-hub/opensource-4-everyone) - Репозиторій усього, що стосується відкритого коду. Це проект, який допоможе з видимістю членства GitHub, потренуватися в базових і розширених командах git, розпочати роботу з відкритим кодом тощо.\n- [\"Open Advice\"](http://open-advice.org/) - Збір знань із широкого спектру проектів вільного програмного забезпечення. Він відповідає на запитання, що хотіли б знати 42 відомі учасники, коли вони починали, щоб ви могли отримати перевагу незалежно від того, як і де ви робите внески.\n- [\"GitHub Skills\"](https://skills.github.com) - Підвищуйте свої навички за допомогою GitHub Skills. Наш доброзичливий бот проведе вас через низку цікавих практичних проектів, щоб миттєво навчитися потрібним вам навичкам і попутно ділитися корисними відгуками.\n- [\"Ten simple rules for helping newcomers become contributors to open projects\"](https://doi.org/10.1371/journal.pcbi.1007296) - Ця стаття охоплює правила, засновані на дослідженнях багатьох спільнот і досвіді членів, лідерів і спостерігачів.\n- [\"Step-by-Step guide to contributing on GitHub\"](https://www.dataschool.io/how-to-contribute-on-github/) - покроковий посібник із допоміжними візуальними матеріалами та посиланнями щодо всього процесу участі в проекті з відкритим кодом.\n- [Open Source with Pradumna](https://github.com/Pradumnasaraf/open-source-with-pradumna) - Цей репозиторій містить ресурси та матеріали, щоб навчитися та почати працювати з Open Source, Git і GitHub.\n- [\"FOSS Community Acronyms\"](https://github.com/d-edge/foss-acronyms) - Цей репозиторій містить список скорочень, які використовуються в спільноті FOSS (Free and Open Source), а також їхні визначення та використання.\n- [\"Open Source Fiesta - Open Source Fiesta\"](https://zubi.gitbook.io/open-source-fiesta/) - Покрокова інструкція щодо того, як зробити внесок у GitHub репозиторії, і містить шпаргалку командного рядка git.\n- [\"6 Best Practices to Manage Pull Request Creation and Feedback\"](https://doordash.engineering/2022/08/23/6-best-practices-to-manage-pull-request-creation-and-feedback/) від Дженни Кіясу, інженера-програміста компанії DoorDash Engineering.\n- [\"Contribute to the Open-Source Community\"](https://arijitgoswami.hashnode.dev/contribute-to-the-open-source-community) - Переваги програмного забезпечення з відкритим кодом, як зрозуміти внутрішню роботу проекту з відкритим кодом і зробити перший внесок.\n- [\"Complete Guide to Open Source - How to Contribute\"](https://www.youtube.com/watch?v=yzeVMecydCE) (41:52) - Дізнайтесь, чому та як зробити внесок у програмне забезпечення з відкритим кодом разом з Едді Джаудом.\n\n## Прямий пошук на GitHub\n\n> Шукайте на GitHub посилання, які вказують безпосередньо на відповідні issue, щоб зробити свій внесок.\n\n- [is:issue is:open label:beginner](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Abeginner&type=issues)\n- [is:issue is:open label:easy](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Aeasy&type=issues)\n- [is:issue is:open label:first-timers-only](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Afirst-timers-only&type=issues)\n- [is:issue is:open label:good-first-bug](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Agood-first-bug&type=issues)\n- [is:issue is:open label:\"good first issue\"](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22&type=issues)\n- [is:issue is:open label:starter](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Astarter&type=issues)\n- [is:issue is:open label:up-for-grabs](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Aup-for-grabs&type=issues)\n- [is:issue is:open label:easy-fix](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Aeasy-fix&type=issues)\n- [is:issue is:open label:\"beginner friendly\"](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3A%22beginner+friendly%22&type=issues)\n\n## Екосистема контрибутора Mozilla\n\n> Mozilla бере участь у здоровому Інтернеті, а разом з цим має можливість робити внесок у свої проекти з відкритим кодом.\n\n- [Good First Bugs](https://bugzilla.mozilla.org/buglist.cgi?quicksearch=good-first-bug) - помилки, які розробники визначили як гарний вступ до проекту.\n- [MDN Web Docs](https://developer.mozilla.org/en-US/docs/MDN/Contribute) - допомогти команді MDN Web Docs у документуванні веб-платформи, виправивши проблеми з вмістом і помилки платформи.\n- [Mentored Bugs](https://bugzilla.mozilla.org/buglist.cgi?quicksearch=mentor%3A%40) - помилки, для яких призначено наставника, який буде там на IRC, щоб допомогти вам, коли у вас виникають складнощі під час роботи над виправленням.\n- [Bugs Ahoy](https://www.joshmatthews.net/bugsahoy/) - сайт, присвячений пошуку помилок у Bugzilla.\n- [Firefox DevTools](https://firefox-dev.tools/) - сайт, присвячений помилкам інструментів розробника у браузері Firefox.\n- [What Can I Do For Mozilla](https://whatcanidoformozilla.org/) - з’ясуйте, над чим ви можете працювати, відповівши на купу запитань про ваші навички та інтереси.\n- [Start Mozilla](https://twitter.com/StartMozilla) - обліковий запис у Твіттері, який повідомляє про issues, які підходять для тих, хто новачок у екосистемі Mozilla.\n\n## Корисні статті для нових початківців Open Source\n\n> Корисні статті та блоги, орієнтовані на нових учасників, про те, як почати.\n\n- [Finding ways to contribute to open source on GitHub](https://docs.github.com/en/get-started/exploring-projects-on-github/finding-ways-to-contribute-to-open-source-on-github) by [@GitHub](https://github.com/github)\n- [How to choose (and contribute to) your first Open Source project](https://github.com/collections/choosing-projects) by [@GitHub](https://github.com/collections)\n- [How to find your first Open Source bug to fix](https://www.freecodecamp.org/news/finding-your-first-open-source-project-or-bug-to-work-on-1712f651e5ba/) by [@Shubheksha](https://github.com/Shubheksha)\n- [First Timers Only](https://kentcdodds.com/blog/first-timers-only) by [@kentcdodds](https://github.com/kentcdodds)\n- [Bring Kindness Back to Open Source](https://web.archive.org/web/20201009150545/https://www.hanselman.com/blog/bring-kindness-back-to-open-source) by [@shanselman](https://github.com/shanselman)\n- [Getting into Open Source for the First Time](https://www.nearform.com/blog/getting-into-open-source-for-the-first-time/) by [@mcdonnelldean](https://github.com/mcdonnelldean)\n- [How to Contribute to Open Source](https://opensource.guide/how-to-contribute/) by [@GitHub](https://github.com/github/opensource.guide)\n- [How to Find a Bug in Your Code](https://8thlight.com/insights/how-to-find-a-bug-in-your-code) by [@dougbradbury](https://twitter.com/dougbradbury)\n- [Mastering Markdown](https://docs.github.com/en/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax) by [@GitHub](https://github.com/github/docs)\n- [First mission: Contributors page](https://forcrowd.medium.com/first-mission-contributors-page-df24e6e70705) by [@forCrowd](https://github.com/forCrowd)\n- [How to make your first Open Source contribution in just 5 minutes](https://www.freecodecamp.org/news/how-to-make-your-first-open-source-contribution-in-just-5-minutes-aaad1fc59c9a/) by [@roshanjossey](https://github.com/Roshanjossey/)\n- [I just got my free Hacktoberfest shirt. Here’s a quick way you can get yours.](https://www.freecodecamp.org/news/i-just-got-my-free-hacktoberfest-shirt-heres-a-quick-way-you-can-get-yours-fa78d6e24307/) by [@quincylarson](https://www.freecodecamp.org/news/author/quincylarson/)\n- [A Bitter Guide To Open Source](https://medium.com/codezillas/a-bitter-guide-to-open-source-a8e3b6a3c1c4) by [@ken_wheeler](https://medium.com/@ken_wheeler)\n- [A junior developer’s step-by-step guide to contributing to Open Source for the first time](https://hackernoon.com/contributing-to-open-source-the-sharks-are-photoshopped-47e22db1ab86) by [@LetaKeane](https://hackernoon.com/u/letakeane)\n- [Learn Git and GitHub Step By Step (on Windows)](https://medium.com/illumination/path-to-learning-git-and-github-be93518e06dc) by [@ows-ali](https://ows-ali.medium.com/)\n- [Why Open Source and How?](https://careerkarma.com/blog/open-source-projects-for-beginners/) by [@james-gallagher](https://careerkarma.com/blog/author/jamesgallagher/)\n- [How to get started with Open Source - By Sayan Chowdhury](https://www.hackerearth.com/getstarted-opensource/)\n- [What open-source should I contribute to](https://kentcdodds.com/blog/what-open-source-project-should-i-contribute-to) by [@kentcdodds](https://twitter.com/kentcdodds)\n- [An immersive introductory guide to Open-source](https://developeraspire.hashnode.dev/an-immersive-introductory-guide-to-open-source) by [Franklin Okolie](https://twitter.com/DeveloperAspire)\n- [Getting started with contributing to open source](https://stackoverflow.blog/2020/08/03/getting-started-with-contributing-to-open-source/) by [Zara Cooper](https://stackoverflow.blog/author/zara-cooper/)\n- [Beginner's guide to open-source contribution](https://workat.tech/general/article/open-source-contribution-guide-xmhf1k601vdj) by [Sudipto Ghosh](https://github.com/pydevsg)\n- [8 non-code ways to contribute to open source](https://opensource.com/life/16/1/8-ways-contribute-open-source-without-writing-code) by [OpenSource](https://twitter.com/OpenSourceWay)\n- [What is Open Source Software? OSS Explained in Plain English](https://www.freecodecamp.org/news/what-is-open-source-software-explained-in-plain-english/) by [Jessica Wilkins](https://www.freecodecamp.org/news/author/jessica-wilkins/)\n- [How to Start an Open Source Project on GitHub – Tips from Building My Trending Repo](https://www.freecodecamp.org/news/how-to-start-an-open-source-project-on-github-tips-from-building-my-trending-repo/) by [@Rishit-dagli](https://github.com/Rishit-dagli)\n- [Finding Good First Issues](https://community.codenewbie.org/bdougie/finding-good-first-issues-33a6) by [Brian Douglas](https://community.codenewbie.org/bdougie)\n\n## Використання контролю версій\n\n> Посібники та ресурси різного рівня щодо використання контролю версій, зазвичай Git і GitHub.\n\n- [Video tutorial for Git and Github by Harvard University](https://www.youtube.com/watch?v=NcoBAfJ6l2Q) - Навчальний посібник Гарвардського університету, частина курсу веб-розробки CS50 про розуміння Git і GitHub і роботу з командами Git.\n- [Think Like (a) Git](https://think-like-a-git.net/) - Вступ до Git для «просунутих початківців», які все ще відчувають труднощі, щоб надати вам просту стратегію безпечного експериментування з git.\n- [Quickstart - Set up Git](https://docs.github.com/en/get-started/quickstart/set-up-git) - Дізнайтеся, як локально налаштувати Git і налаштувати автентифікацію, а також наступні кроки на вашому навчальному шляху.\n- [Everyday Git](https://git-scm.com/docs/giteveryday) - Корисний мінімальний набір команд для Everyday Git.\n- [Oh shit, git!](https://ohshitgit.com/) - як уникнути типових помилок `git`, описаних простою англійською мовою; також див [Dangit, git!](https://dangitgit.com/) для сторінку без лайки.\n- [Atlassian Git Tutorials](https://www.atlassian.com/git/tutorials) - різноманітні посібники з використання `git`\n- [GitHub Git Cheat Sheet](https://education.github.com/git-cheat-sheet-education.pdf) (PDF)\n- [freeCodeCamp's Wiki on Git Resources](https://forum.freecodecamp.org/t/wiki-git-resources/13136)\n- [GitHub Flow](https://www.youtube.com/watch?v=juLIxo42A_s) (42:06) - Розповідь GitHub про те, як зробити запит на отримання.\n- [Quickstart - GitHub Learning Resources](https://docs.github.com/en/get-started/quickstart/git-and-github-learning-resources) - Навчальні ресурси Git і GitHub.\n- [Pro Git](https://git-scm.com/book/en/v2) - Уся книга Pro Git, написана Скоттом Чаконом і Беном Страубом і опублікована Apress.\n- [Git-it](https://github.com/jlord/git-it-electron) - Покроковий туторіал Git для настільного ПК.\n- [Flight Rules for Git](https://github.com/k88hudson/git-flight-rules) - Посібник про те, що робити, коли щось йде не так.\n- [Git Guide for Beginners in Spanish](https://platzi.github.io/git-slides/#/) - Повний посібник зі слайдами про git і GitHub, пояснені іспанською мовою. Una guía completa de diapositivas sobre git y GitHub explicadas en Español.\n- [Git Kraken](https://www.gitkraken.com/git-client) - Візуальна, кросплатформна та інтерактивна десктоп програма `git` для керування версіями.\n- [Git Tips](https://github.com/git-tips/tips) - Збірка найбільш часто використовуваних порад і прийомів git.\n- [Git Best Practices](https://sethrobertson.github.io/GitBestPractices/) - Часто фіксуйте, вдосконалюйте пізніше, публікуйте один раз: найкращі практики Git.\n- [Git Interactive Tutorial](https://learngitbranching.js.org/) - Вивчайте Git у найбільш наочний та інтерактивний спосіб.\n- [Git Cheat Sheets](https://devhints.io/?q=git) - Набір графічних шпаргалок на git.\n- [Complete Git and GitHub Tutorial](https://www.youtube.com/watch?v=apGV9Kg7ics) (1:12:39) - Повне керівництво Git і GitHub [Kunal Kushwaha](https://www.youtube.com/channel/UCBGOUQHNNtNGcGzVq5rIXjw).\n- [A Tutorial Introduction to Git](https://git-scm.com/docs/gittutorial) - Туторіал для початківців від Git.\n- [First Aid Git](https://firstaidgit.io/#/) - Колекція найбільш поширених запитань щодо Git з можливістю пошуку. Відповіді на ці запитання було зібрано з особистого досвіду, Stackoverflow та офіційної документації Git.\n- [Git by Susan Potter](https://www.aosabook.org/en/git.html) - Покажіть, як різні технічні аспекти Git працюють під обкладинками, щоб забезпечити розподілені робочі процеси, і чим він відрізняється від інших систем контролю версій (VCS).\n\n## Книги Open Source\n\n> Книги про все, що стосується відкритого коду: культура, історія, найкращі практики тощо.\n\n- [Producing Open Source Software](https://producingoss.com/) - Виробництво програмного забезпечення з відкритим кодом — це книга про людську сторону розробки програмного забезпечення з відкритим кодом. Вона описує, як працюють успішні проекти, очікування користувачів і розробників і культуру вільного програмного забезпечення.\n- [The Architecture of Open Source Applications](https://www.aosabook.org/en/index.html) - Автори двадцяти чотирьох програм із відкритим кодом пояснюють, як структуровано їх програмне забезпечення та чому. Від веб-серверів і компіляторів до систем керування медичними записами, вони описані тут, щоб допомогти вам стати кращим розробником.\n- [Open Source Book Series](https://opensource.com/resources/ebooks) - Дізнайтеся більше про Open Source і рух Open Source, що розвивається, з вичерпним списком безкоштовних електронних книг на сайті https://opensource.com.\n- [Software Release Practice HOWTO](https://tldp.org/HOWTO/Software-Release-Practice-HOWTO/) - Цей HOWTO описує хороші практики випуску для Linux та інших проектів з відкритим вихідним кодом. Дотримуючись цих практик, ви максимально спростите для користувачів створення вашого коду та його використання, а для інших розробників – полегшить розуміння вашого коду і співпрацю з вами для його вдосконалення.\n- [Open Sources 2.0 : The Continuing Evolution](https://archive.org/details/opensources2.000diborich) (2005) - Це збірка проникливих і спонукаючих до роздумів есе від сучасних технологічних лідерів, які продовжують малювати еволюційну картину, розроблену в книзі 1999 року Open Sources: Voices from the Revolution.\n- [Open Sources: Voices from the Open Source Revolution](https://www.oreilly.com/openbook/opensources/book/) - Есе піонерів відкритого коду, таких як Лінус Торвальдс (Linux), Ларрі Уолл (Perl) і Річард Столман (GNU).\n\n## Open Source ініціативи\n\n> Список ініціатив, які об’єднують проблеми, над якими потрібно працювати для початківців, або сезонні події.\n\n- [Up For Grabs](https://up-for-grabs.net/) - Містить проекти з isuue для початківців.\n- [First Contributions](https://firstcontributions.github.io/) - Зробіть свій перший внесок у Open Source за 5 хвилин. Інструмент і підручник, які допоможуть початківцям розпочати роботу з дописами. [Тут](https://github.com/firstcontributions/first-contributions) це вихідний код GitHub для сайту та можливість зробити внесок у сам репозиторій.\n- [First Timers Only](https://www.firsttimersonly.com/) - Список помилок, позначених як \"first-timers-only\".\n- [Hacktoberfest](https://hacktoberfest.digitalocean.com/) - Програма заохочення внеску з відкритим кодом. Заробляйте подарунки, як-от футболки та наклейки, зробивши принаймні 4 запити на отримання в жовтні.\n- [24 Pull Requests](https://24pullrequests.com) - 24 Pull Requests – це проект, спрямований на просування співпраці з відкритим кодом протягом грудня.\n- [Ovio](https://ovio.org) - Платформа з підібраною добіркою проектів, зручних для учасників. Він має [потужний інструмент пошуку issue](https://ovio.org/issues) і дозвольте вам зберегти проекти та issue на потім.\n- [Contribute-To-This-Project](https://github.com/Syknapse/Contribute-To-This-Project) - Це підручник, який допоможе новачкам зяти участь у простому та легкому проекті та навчитися користуватися GitHub.\n- [Open Source Welcome Committee](https://www.oswc.is/) - Open Source Welcome Committee (OSWC) допомагає новачкам приєднатися до надзвичайного світу відкритого коду. Надсилайте свої проекти з відкритим кодом разом з нами!\n\n## Програми з Open Source для участі\n\n> Програма, стажування або стипендія, організовані спільнотою, щоб допомогти початківцям учасникам знайти наставників і ресурси для участі в проектах програмного забезпечення з відкритим кодом.\n\n- [All Linux Foundation (LF) Mentorships](https://mentorship.lfx.linuxfoundation.org/#projects_all)\n- [Beginner friendly Open Source programs with their timelines](https://github.com/arpit456jain/Open-Source-Programs)\n- [Cloud Native Computing Foundation](https://events.linuxfoundation.org/kubecon-cloudnativecon-north-america/)\n- [FossAsia](https://fossasia.org)\n- [Free Software Foundation (FSF) Internship](https://www.fsf.org/volunteer/internships)\n- [Google Summer of Code](https://summerofcode.withgoogle.com/) - Щорічна платна програма Google, спрямована на залучення більшої кількості студентів-розробників до розробки програмного забезпечення з відкритим кодом.\n- [Girlscript Summer of Code](https://gssoc.girlscript.tech/) - Тримісячна програма з відкритим кодом, яку проводить щоліта Girlscript Foundation. Докладаючи постійних зусиль, протягом цих місяців учасники роблять внесок у численні проекти під надзвичайним керівництвом кваліфікованих наставників. Завдяки таким знанням студенти починають робити внесок у реальні проекти, не виходячи з дому.\n- [Hacktoberfest](https://hacktoberfest.digitalocean.com)\n- [Hyperledger Mentorship Program](https://wiki.hyperledger.org/display/INTERN) - Якщо вам подобається блокчейн, це для вас. Ви можете зробити внесок у Hyperledger. Ця програма наставництва дозволить вам отримати практичний досвід розробки Hyperledger з відкритим кодом. Вам будуть призначені наставники, які є досить активними в спільноті розробників Hyperledger.\n- [LF Networking Mentorship](https://wiki.lfnetworking.org/display/LN/LFN+Mentorship+Program)\n- [Microsoft Reinforcement Learning](https://www.microsoft.com/en-us/research/academic-program/rl-open-source-fest/)\n- [Major League Hacking (MLH) Fellowship](https://fellowship.mlh.io/) - Альтернатива дистанційного стажування для технологів-початківців, де вони будують або беруть участь у проектах з відкритим кодом.\n- [Open Summer of Code](https://osoc.be/students)\n- [Open Mainframe](https://www.openmainframeproject.org/all-projects/mentorship-program) - Open Mainframe Project also has its own open-source program and the mentees will be able to expand their knowledge on the mainframe technology.\n- [Outreachy](https://www.outreachy.org)\n- [Processing Foundation Internship](https://processingfoundation.org/fellowships/)\n- [Rails Girls Summer of Code](https://railsgirlssummerofcode.org/) - Глобальна програма стипендій для жінок і небінарних програмістів, де вони працюють над існуючими проектами з відкритим кодом і розширюють свій набір навичок.\n- [Redox OS Summer of Code](https://www.redox-os.org/rsoc/) - Redox OS Summer of Code – це основне використання пожертв на проект Redox OS. Відбираються студенти, які вже продемонстрували бажання та здатність зробити внесок у Redox OS.\n- [Social Summer of Code](https://ssoc.devfolio.co/) - Social Foundation пропонує цю двомісячну літню програму для студентів, щоб дізнатися про культуру відкритого коду та залучитися до спільноти. Учасники беруть участь у реальних проектах під керівництвом досвідчених наставників.\n- [Season of KDE](https://season.kde.org/) - Сезон KDE, організований спільнотою KDE, є програмою для всіх людей у всьому світі. KDE — міжнародна спільнота вільного програмного забезпечення, яка розробляє безкоштовне програмне забезпечення з відкритим кодом, і ви можете зробити свій внесок у KDE через програму Season of KDE.\n\n## Ліцензія\n\n<a rel=\"license\" href=\"https://creativecommons.org/licenses/by-sa/4.0/\"><img alt=\"Creative Commons License\" style=\"border-width:0\" src=\"https://licensebuttons.net/l/by-sa/4.0/88x31.png\" /></a><br />Ця робота ліцензована згідно з <a rel=\"license\" href=\"https://creativecommons.org/licenses/by-sa/4.0/\">Creative Commons Attribution-ShareAlike 4.0 International License</a>.\n"
  },
  {
    "path": "README-UR.md",
    "content": "<!-- Do not translate this -->\n<details>\n<summary>\n<strong> اس گائیڈ کو دوسری زبانوں میں پڑھیں </strong>\n</summary>\n    <ul>\n        <li><a href=\"./README.md\"> English </a></li>\n        <li><a href=\"./README-MR.md\"> मराठी </a></li>\n        <li><a href=\"./README-BN.md\"> বাংলা </a></li>\n        <li><a href=\"./README-CN.md\"> 中文 </a></li>\n        <li><a href=\"./README-RU.md\"> русский </a></li>\n        <li><a href=\"./README-RO.md\"> Românesc </a></li>\n        <li><a href=\"./README-IT.md\"> Italiano </a></li>\n        <li><a href=\"./README-ID.md\"> Indonesia </a></li>\n        <li><a href=\"./README-ES.md\"> Español </a></li>\n        <li><a href=\"./README-pt-BR.md\"> Português (BR) </a></li>\n        <li><a href=\"./README-DE.md\"> Deutsch </a></li>\n        <li><a href=\"./README-HE.md\"> עברית </a></li>\n        <li><a href=\"./README-GR.md\"> Ελληνικά </a></li>\n        <li><a href=\"./README-FR.md\"> Français </a></li>\n        <li><a href=\"./README-TR.md\"> Turkish </a></li>\n        <li><a href=\"./README-KO.md\"> 한국어 </a></li>\n        <li><a href=\"./README-JA.md\"> 日本語 </a></li>\n        <li><a href=\"./README-HI.md\"> हिंदी </a></li>\n        <li><a href=\"./README-FA.md\"> فارسی </a></li>\n        <li><a href=\"./README-UR.md\">اردو </a></li>\n        <li><a href=\"./README-AR.md\">اللغة العربية </a></li>\n        <li><a href=\"./README-TA.md\">தமிழ்</a></li>\n        <li><a href=\"./README-NE.md\">नेपाली</a></li>\n    </ul>\n</details>\n<!-- Do not translate this -->\n\n# نئے اوپن سورس تعاون کنندگان کو خوش آمدید!\n\n[![پل کی درخواستیں خوش آمدید](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat)](https://makeapullrequest.com)\n[![پہلی بار صرف دوستانہ](https://img.shields.io/badge/first--timers--only-friendly-blue.svg)](https://www.firsttimersonly.com/)\n[![وسائل چیک کریں۔](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml/badge.svg)](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml)\n\nیہ ان لوگوں کے لیے وسائل کی فہرست ہے جو اوپن سورس میں تعاون کرنے کے لیے نئے ہیں۔\n\nاگر آپ کو اضافی وسائل ملتے ہیں، تو براہ کرم پل کی درخواست میں تعاون کریں۔\n\nاگر آپ کے سوالات یا تبصرے ہیں، تو براہ کرم ایک مسئلہ بنائیں۔\n\n**مشمولات**\n\n- [عام طور پر اوپن سورس میں تعاون کرنا](#عام-طور-پر-اوپن-سورس-میں-تعاون-کرنا)\n- [براہ راست گِٹ ہب تلاش کریں۔](#براہ-راست-گِٹ-ہب-تلاش-کریں)\n- [موزیلا کا تعاون کرنے والا ماحولیاتی نظام](#موزیلا-کا-تعاون-کرنے-والا-ماحولیاتی-نظام)\n- [نئے اوپن سورس تعاون کنندگان کے لیے مفید مضامین](#نئے-اوپن-سورس-تعاون-کنندگان-کے-لیے-مفید-مضامین)\n- [ورژن کنٹرول کا استعمال](#ورژن-کنٹرول-کا-استعمال)\n- [اوپن سورس کتابیں۔](#اوپن-سورس-کتابیں)\n- [اوپن سورس شراکت کے اقدامات](#اوپن-سورس-شراکت-کے-اقدامات)\n- [حصہ لینے کے لیے اوپن سورس پروگرام](#حصہ-لینے-کے-لیے-اوپن-سورس-پروگرام)\n- [لائسنس](#لائسنس)\n\n## عام طور پر اوپن سورس میں تعاون کرنا\n\n> مضامین اور وسائل جو اوپن سورس کی دنیا اور ثقافت پر تبادلہ خیال کرتے ہیں۔\n\n- [اوپن سورس میں تعاون کرنے کے لیے حتمی گائیڈ](https://www.freecodecamp.org/news/the-definitive-guide-to-contributing-to-open-source-900d5f9f2282/) کی طرف سے [@DoomHammerNG](https://twitter.com/DoomHammerNG)\n- [اوپن سورس کا تعارف](https://www.digitalocean.com/community/tutorial_series/an-introduction-to-open-source) - GitHub پر یہاں آپ کی شراکت کی کامیابی کے راستے پر آپ کی رہنمائی کے لیے DigitalOcean کے ٹیوٹوریلز۔\n- [کوڈ ٹریج](https://www.codetriage.com/) - ایک اور، واقعی اچھا، مقبول ذخیروں اور زبان کے ذریعے فلٹر کردہ مسائل کو تلاش کرنے کا ٹول.\n- [اوپن سورس کے ساتھ اپنا مستقبل بنائیں](https://pragprog.com/titles/vbopens/forge-your-future-with-open-source/) ($) - اوپن سورس کی وضاحت کرنے کے لیے وقف کردہ کتاب، پروجیکٹ کیسے تلاش کیا جائے، اور تعاون کیسے شروع کیا جائے۔ سافٹ ویئر ڈویلپمنٹ میں تمام کرداروں پر مشتمل، نہ صرف پروگرامرز۔\n- [ابتدائیوں کے لیے زبردست](https://github.com/MunGell/awesome-for-beginners) -ایک GitHub ریپو جو نئے شراکت داروں کے لیے اچھے کیڑے والے پروجیکٹس کو اکٹھا کرتا ہے، اور ان کی وضاحت کے لیے لیبل لگاتا ہے.\n- [اوپن سورس گائیڈز](https://opensource.guide/) - افراد، کمیونٹیز اور کمپنیوں کے لیے وسائل کا مجموعہ جو یہ سیکھنا چاہتے ہیں کہ اوپن سورس پروجیکٹ کو کیسے چلانا اور اس میں تعاون کرنا ہے۔\n- [45  گِٹ ہب کیا کرنے اور نہ کرنے کے مسائل پیش کرتا ہے۔](https://hackernoon.com/45-github-issues-dos-and-donts-dfec9ab4b612) -GitHub پر کیا کریں اور کیا نہ کریں۔\n- [ گِٹ ہب گائیڈز](https://docs.github.com/) -GitHub کو مؤثر طریقے سے استعمال کرنے کے بارے میں بنیادی رہنما۔\n- [اوپن سورس میں تعاون کریں۔](https://github.com/danthareja/contribute-to-open-source) -سمولیشن پروجیکٹ میں کوڈ کا تعاون کرکے GitHub ورک فلو سیکھیں.\n- [انٹرپرائز کے لیے لینکس فاؤنڈیشن کے اوپن سورس گائیڈز](https://www.linuxfoundation.org/resources/open-source-guides/) -اوپن سورس پروجیکٹس کے لیے لینکس فاؤنڈیشن کے رہنما۔\n- [سی ایس ایس ٹرکس ایک اوپن سورس آداب گائیڈ بک](https://css-tricks.com/open-source-etiquette-guidebook/) -ایک اوپن سورس آداب گائیڈ بک، جو کینٹ سی ڈوڈز اور سارہ ڈریسنر نے لکھی ہے۔\n- [طلباء کے لیے A سے Z وسائل](https://github.com/dipakkr/A-to-Z-Resources-for-Students) -کالج کے طالب علموں کے لیے ایک نئی کوڈنگ لینگویج سیکھنے کے لیے وسائل اور مواقع کی مرتب کردہ فہرست۔\n- [درخواست رولیٹی ھیںچو](http://www.pullrequestroulette.com/) -اس سائٹ میں  گِٹ ہب پر میزبان اوپن سورس پروجیکٹس سے تعلق رکھنے والے جائزے کے لیے جمع کردہ پل کی درخواستوں کی فہرست ہے۔\n- [کے ذریعہEgghead.io \" گِٹ ہب پر اوپن سورس پروجیکٹ میں شراکت کیسے کریں۔\"](https://egghead.io/courses/how-to-contribute-to-an-open-source-project-on-github) - GitHub پر اوپن سورس پروجیکٹس میں حصہ ڈالنا شروع کرنے کے بارے میں ایک مرحلہ وار ویڈیو گائیڈ۔\n- [اوپن سورس میں تعاون کرنا: شروع سے آخر تک ایک لائیو واک تھرو](https://medium.com/@kevinjin/contributing-to-open-source-walkthrough-part-0-b3dc43e6b720) -اوپن سورس کنٹریبیوشن کا یہ واک تھرو کسی مناسب پروجیکٹ کو منتخب کرنے، کسی مسئلے پر کام کرنے سے لے کر PR کو ضم کرنے تک ہر چیز کا احاطہ کرتا ہے۔\n- [سارہ ڈراسنر کے ذریعہ \"اوپن سورس پروجیکٹ میں شراکت کیسے کریں\"](https://css-tricks.com/how-to-contribute-to-an-open-source-project/) -وہ گِٹ ہب پر کسی اور کے پروجیکٹ میں پل ریکوئسٹ (PR) کا حصہ ڈالنے پر توجہ مرکوز کر رہے ہیں۔\n- [\"اوپن سورس کے ساتھ شروعات کیسے کی جائے\" از سیان چودھری](https://www.hackerearth.com:443/getstarted-opensource/) -اس مضمون میں ابتدائی افراد کے لیے ان کی پسندیدہ زبان کی دلچسپی کی بنیاد پر اوپن سورس میں تعاون کرنے کے وسائل کا احاطہ کیا گیا ہے۔\n- [\"اوپن سورس میں تعاون شروع کرنے کے لیے پہلے اچھے ایشوز کو براؤز کریں۔\"](https://github.blog/2020-01-22-browse-good-first-issues-to-start-contributing-to-open-source/) -GitHub اب آپ کو اوپن سورس میں تعاون شروع کرنے کے لیے پہلے اچھے مسائل تلاش کرنے میں مدد کرتا ہے۔\n- [میرینا زیڈ کے ذریعہ \"اوپن سورس پروجیکٹ میں شراکت کیسے کریں\"](https://rubygarage.org/blog/how-contribute-to-open-source-projects) -یہ جامع مضمون کاروباروں کی طرف ہے (لیکن انفرادی تعاون کرنے والوں کے لیے اب بھی مفید ہے) جہاں یہ کیوں، کیسے، اور کون سے اوپن سورس پروجیکٹس میں تعاون کرنے کے بارے میں بات کرتا ہے۔\n- [آندرے کے ذریعہ \"شروع یہاں سے رہنما خطوط\"](https://github.com/zero-to-mastery/start-here-guidelines) -آئیے گِٹ کو اوپن سورس کی دنیا میں اوپن سورس پلے گراؤنڈ سے شروع کرنے دیں۔ خاص طور پر تعلیم اور عملی تجربے کے مقاصد کے لیے ڈیزائن کیا گیا ہے۔\n- [\"اوپن سورس کے ساتھ شروع کرنا\" بذریعہ NumFocus](https://github.com/numfocus/getting-started-with-open-source) -ایک GitHub ریپو جو تعاون کنندگان کو اوپن سورس میں داخلے کی راہ میں حائل رکاوٹوں کو دور کرنے میں مدد کرتا ہے۔\n- [\"اوپنسور-4-ہر کوئی\" بذریعہ Chryz-hub](https://github.com/chryz-hub/opensource-4-everyone) -اوپن سورس سے متعلق ہر چیز پر ایک ذخیرہ۔ یہ ایک پروجیکٹ ہے جس میں GitHub ممبرشپ کی مرئیت، بنیادی اور ایڈوانس گِٹ کمانڈز کے ساتھ مشق، اوپن سورس کے ساتھ شروعات کرنے اور مزید بہت کچھ کرنے میں مدد ملتی ہے۔\n- [\"مشورہ کھولیں۔\"](http://open-advice.org/) -مفت سافٹ ویئر پروجیکٹس کی وسیع اقسام سے علم کا مجموعہ۔ یہ اس سوال کا جواب دیتا ہے کہ 42 نمایاں شراکت کنندگان یہ جاننا پسند کریں گے کہ انہوں نے کب شروعات کی ہے تاکہ آپ اس بات سے کوئی فرق نہیں پڑتا کہ آپ کہاں اور کیسے تعاون کرتے ہیں۔\n- [\"گِٹ ہب ہنر\"](https://skills.github.com) -GitHub Skills کے ساتھ اپنی صلاحیتوں کو بلند کریں۔ ہمارا دوستانہ بوٹ آپ کو تفریحی، عملی منصوبوں کی ایک سیریز میں لے جائے گا تاکہ آپ کو ضرورت کے ہنر کو سیکھنے کے لیے بغیر کسی وقت کے — اور راستے میں مفید تاثرات کا اشتراک کریں۔\n- [\"نئے آنے والوں کی مدد کے لیے دس آسان اصول پروجیکٹس کھولنے کے لیے شراکت دار بننے میں\"](https://doi.org/10.1371/journal.pcbi.1007296) -یہ مضمون بہت سی برادریوں کے مطالعے اور اراکین، رہنماؤں اور مبصرین کے تجربات پر مبنی قواعد کا احاطہ کرتا ہے۔\n- [\"گِٹ ہب پر تعاون کرنے کے لیے مرحلہ وار گائیڈ\"](https://www.dataschool.io/how-to-contribute-on-github/) -اوپن سورس پروجیکٹ میں تعاون کرنے کے پورے عمل سے متعلق معاون بصری اور لنکس کے ساتھ مرحلہ وار گائیڈ۔\n- [پرادومنا کے ساتھ اوپن سورس](https://github.com/Pradumnasaraf/open-source-with-pradumna) -اس ریپو میں اوپن سورس، گِٹ، اور گِٹ ہب کے ساتھ سیکھنے اور اپنے آپ کو شروع کرنے کے لیے وسائل اور مواد شامل ہیں۔\n- [\"کمیونٹیFOSS کے مخففات\"](https://github.com/d-edge/foss-acronyms) -اس ریپو میں FOSS (مفت اور اوپن سورس) کمیونٹی کے اندر استعمال ہونے والے مخففات کی فہرست، ان کی تعریفوں اور استعمالات کے ساتھ شامل ہے۔\n- [\"اوپن سورس فیسٹا - اوپن سورس فیسٹا\"](https://zubi.gitbook.io/open-source-fiesta/) - گِٹ ہب ریپوزٹریز میں حصہ ڈالنے کے طریقہ کے بارے میں مرحلہ وار ہدایات، اور اس میں گِٹ کمانڈ لائن چیٹ شیٹ شامل ہے۔\n\n## براہ راست گِٹ ہب تلاش کریں۔\n\n> وہ لنکس تلاش کریں جو GitHub پر تعاون کرنے کے لیے مناسب مسائل کی طرف براہ راست اشارہ کرتے ہیں۔\n\n- [is:issue is:open label:beginner](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Abeginner&type=issues)\n- [is:issue is:open label:easy](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Aeasy&type=issues)\n- [is:issue is:open label:first-timers-only](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Afirst-timers-only&type=issues)\n- [is:issue is:open label:good-first-bug](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Agood-first-bug&type=issues)\n- [is:issue is:open label:\"good first issue\"](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22&type=issues)\n- [is:issue is:open label:starter](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Astarter&type=issues)\n- [is:issue is:open label:up-for-grabs](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Aup-for-grabs&type=issues)\n- [is:issue is:open label:easy-fix](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Aeasy-fix&type=issues)\n- [is:issue is:open label:\"beginner friendly\"](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3A%22beginner+friendly%22&type=issues)\n- [is:issue is:open label:your-first-pr](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Ayour-first-pr&type=issues)\n\n## موزیلا کا تعاون کرنے والا ماحولیاتی نظام۔\n\n> موزیلا نے ایک صحت مند انٹرنیٹ کا وعدہ کیا ہے اور اس کے ساتھ اس کے اوپن سورس پروجیکٹس میں حصہ ڈالنے کے مواقع ہیں۔\n\n- [اچھے پہلے کیڑے](https://bugzilla.mozilla.org/buglist.cgi?quicksearch=good-first-bug) -کیڑے جنہیں ڈویلپرز نے پروجیکٹ کے لیے ایک اچھے تعارف کے طور پر شناخت کیا ہے۔\n- [ویب دستاویزات MDN](https://developer.mozilla.org/en-US/docs/MDN/Contribute) -مواد کے مسائل اور پلیٹ فارم کی خرابیوں کو ٹھیک کر کے ویب پلیٹ فارم کو دستاویز کرنے میں MDN Web Docs ٹیم کی مدد کریں۔\n- [رہنمائی کیڑے](https://bugzilla.mozilla.org/buglist.cgi?quicksearch=mentor%3A%40) - ایسے کیڑے جن کے لیے ایک سرپرست مقرر کیا گیا ہے جو آپ کی مدد کے لیے IRC پر موجود ہو گا جب آپ کسی حل پر کام کرتے ہوئے پھنس جائیں گے۔\n- [کیڑے Ahoy](https://www.joshmatthews.net/bugsahoy/) -ایک سائٹ جو Bugzilla پر کیڑے تلاش کرنے کے لیے وقف ہے۔\n- [فائر فاکس ڈیو ٹولز](https://firefox-dev.tools/) -فائر فاکس براؤزر میں ڈویلپر ٹولز کے لیے دائر کردہ کیڑے کے لیے وقف کردہ سائٹ۔\n- [موزیلا شروع کریں۔](https://twitter.com/StartMozilla) -ایک ٹویٹر اکاؤنٹ جو موزیلا ماحولیاتی نظام میں نئے شراکت داروں کے لیے موزوں مسائل کے بارے میں ٹویٹ کرتا ہے۔\n\n## نئے اوپن سورس تعاون کنندگان کے لیے مفید مضامین۔\n\n> مددگار مضامین اور بلاگز نئے تعاون کنندگان کی طرف ہدایت کرتے ہیں کہ کیسے شروع کیا جائے۔\n\n- [گِٹ ہب پر اوپن سورس میں حصہ ڈالنے کے طریقے تلاش کرنا](https://docs.github.com/en/get-started/exploring-projects-on-github/finding-ways-to-contribute-to-open-source-on-github) بذریعہ [@GitHub](https://github.com/github)\n- [How to choose (and contribute to) your first Open Source project](https://github.com/collections/choosing-projects) بذریعہ [@GitHub](https://github.com/github)\n- [ٹھیک کرنے کے لیے اپنا پہلا اوپن سورس بگ کیسے تلاش کریں۔](https://www.freecodecamp.org/news/finding-your-first-open-source-project-or-bug-to-work-on-1712f651e5ba/) بذریعہ [@Shubheksha](https://github.com/Shubheksha)\n- [صرف فرسٹ ٹائمرز](https://kentcdodds.com/blog/first-timers-only) بذریعہ [@kentcdodds](https://github.com/kentcdodds)\n- [مہربانی کو اوپن سورس پر واپس لائیں۔](https://web.archive.org/web/20201009150545/https://www.hanselman.com/blog/bring-kindness-back-to-open-source) بذریعہ [@shanselman](https://github.com/shanselman)\n- [پہلی بار اوپن سورس میں جانا](https://www.nearform.com/blog/getting-into-open-source-for-the-first-time/) بذریعہ [@mcdonnelldean](https://github.com/mcdonnelldean)\n- [اوپن سورس میں شراکت کیسے کریں۔](https://opensource.guide/how-to-contribute/) بذریعہ [@GitHub](https://github.com/github)\n- [اپنے کوڈ میں بگ کیسے تلاش کریں۔](https://8thlight.com/blog/doug-bradbury/2016/06/29/how-to-find-bug-in-your-code.html) بذریعہ [@dougbradbury](https://twitter.com/dougbradbury)\n- [مارک ڈاؤن میں مہارت حاصل کرنا](https://docs.github.com/github/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax) بذریعہ [@GitHub](https://github.com/github)\n- [پہلا مشن: شراکت داروں کا صفحہ](https://forcrowd.medium.com/first-mission-contributors-page-df24e6e70705) بذریعہ [@forCrowd](https://github.com/forCrowd)\n- [صرف 5 منٹ میں اپنا پہلا اوپن سورس تعاون کیسے کریں۔](https://www.freecodecamp.org/news/how-to-make-your-first-open-source-contribution-in-just-5-minutes-aaad1fc59c9a/) بذریعہ [@roshanjossey](https://github.com/Roshanjossey/)\n- [مجھے ابھی اپنی مفت ہیک ٹوبرفیسٹ شرٹ ملی ہے۔ یہاں ایک تیز طریقہ ہے جس سے آپ اپنا حاصل کرسکتے ہیں۔](https://www.freecodecamp.org/news/i-just-got-my-free-hacktoberfest-shirt-heres-a-quick-way-you-can-get-yours-fa78d6e24307/) بذریعہ [@quincylarson](https://www.freecodecamp.org/news/author/quincylarson/)\n- [اوپن سورس کے لیے ایک تلخ گائیڈ](https://medium.com/codezillas/a-bitter-guide-to-open-source-a8e3b6a3c1c4) بذریعہ [@ken_wheeler](https://medium.com/@ken_wheeler)\n- [پہلی بار اوپن سورس میں تعاون کرنے کے لیے ایک جونیئر ڈیولپر کی مرحلہ وار گائیڈ](https://hackernoon.com/contributing-to-open-source-the-sharks-are-photoshopped-47e22db1ab86) بذریعہ [@LetaKeane](https://hackernoon.com/u/letakeane)\n- [گِٹ اور گِٹ ہب مرحلہ وار سیکھیں (ونڈوز پر)](https://medium.com/illumination/path-to-learning-git-and-github-be93518e06dc) بذریعہ [@ows-ali](https://ows-ali.medium.com/)\n- [اوپن سورس کیوں اور کیسے؟](https://careerkarma.com/blog/open-source-projects-for-beginners/) بذریعہ [@james-gallagher](https://careerkarma.com/blog/author/jamesgallagher/)\n- [اوپن سورس کے ساتھ کیسے شروعات کی جائے - از سائان چودھری](https://www.hackerearth.com/getstarted-opensource/)\n- [مجھے کس اوپن سورس میں تعاون کرنا چاہیے۔](https://kentcdodds.com/blog/what-open-source-project-should-i-contribute-to) بذریعہ [@kentcdodds](https://github.com/kentcdodds)\n- [اوپن سورس کے لیے ایک عمیق تعارفی گائیڈ](https://developeraspire.hashnode.dev/an-immersive-introductory-guide-to-open-source) بذریعہ [Franklin Okolie](https://twitter.com/DeveloperAspire)\n- [اوپن سورس میں تعاون کے ساتھ شروعات کرنا](https://stackoverflow.blog/2020/08/03/getting-started-with-contributing-to-open-source/) بذریعہ [Zara Cooper](https://stackoverflow.blog/author/zara-cooper/)\n- [اوپن سورس شراکت کے لیے ابتدائی رہنما](https://workat.tech/general/article/open-source-contribution-guide-xmhf1k601vdj) بذریعہ [Sudipto Ghosh](https://github.com/pydevsg)\n- [اوپن سورس میں تعاون کرنے کے 8 غیر کوڈ طریقے](https://opensource.com/life/16/1/8-ways-contribute-open-source-without-writing-code) بذریعہ [OpenSource](https://twitter.com/OpenSourceWay)\n- [اوپن سورس سافٹ ویئر کیا ہے؟ OSS کی سادہ انگریزی میں وضاحت](https://www.freecodecamp.org/news/what-is-open-source-software-explained-in-plain-english/) بذریعہ [Jessica Wilkins](https://www.freecodecamp.org/news/author/jessica-wilkins/)\n- [GitHub پر اوپن سورس پروجیکٹ کیسے شروع کیا جائے - میرا ٹرینڈنگ ریپو بنانے کے لیے نکات](https://www.freecodecamp.org/news/how-to-start-an-open-source-project-on-github-tips-from-building-my-trending-repo/) بذریعہ [@Rishit-dagli](https://github.com/Rishit-dagli)\n\n## ورژن کنٹرول کا استعمال۔\n\n> ورژن کنٹرول، عام طور پر Git اور GitHub استعمال کرنے پر مختلف سطحوں کے سبق اور وسائل۔\n\n- [ہارورڈ یونیورسٹی کے ذریعہ Git اور Github کے لئے ویڈیو ٹیوٹوریل](https://www.youtube.com/watch?v=NcoBAfJ6l2Q) -ہارورڈ یونیورسٹی کا ٹیوٹوریل، Git اور GitHub کو سمجھنے اور Git کمانڈز کے ساتھ کام کرنے پر ان کے CS50 ویب ڈویلپمنٹ کورس کا حصہ۔\n- [(ایک) گِٹ کی طرح سوچیں۔](https://think-like-a-git.net/) -\"اعلی درجے کے ابتدائی افراد\" کے لیے گِٹ کا تعارف، لیکن ابھی تک جدوجہد کر رہے ہیں، تاکہ آپ کو گِٹ کے ساتھ محفوظ طریقے سے تجربہ کرنے کے لیے ایک آسان حکمت عملی فراہم کی جا سکے۔\n- [سیٹ اپ کریں Quickstart - Git۔](https://docs.github.com/en/get-started/quickstart/set-up-git) -اپنے سیکھنے کے سفر کے اگلے مراحل کے ساتھ، مقامی طور پر Git کو ترتیب دینے اور تصدیق کرنے کا طریقہ سیکھیں۔\n- [روزانہ گِٹ](https://git-scm.com/docs/giteveryday) - روزانہ گِٹ کے لیے کم از کم کمانڈز کا ایک مفید سیٹ۔\n- [اوہ شٹ، گِٹ!](https://ohshitgit.com/) - سادہ انگریزی میں بیان کردہ عام `git` غلطیوں سے کیسے نکلیں؛ بھی دیکھیں [Dangit, git!](https://dangitgit.com/)بغیر قسم کے صفحہ کے لیے۔\n- [سبق گِٹ Atlassian](https://www.atlassian.com/git/tutorials) - استعمال کرنے پر مختلف سبق `git`.\n- [گِٹ ہب گِٹ چیٹ شیٹ](https://education.github.com/git-cheat-sheet-education.pdf) (PDF)\n- [گِٹ وسائل پر فری کوڈ کیمپ کی وکی](https://forum.freecodecamp.org/t/wiki-git-resources/13136)\n- [گِٹ ہب فلو](https://www.youtube.com/watch?v=juLIxo42A_s) (42:06) - GitHub بات کریں کہ پل کی درخواست کیسے کی جائے۔\n- [سیکھنے کے وسائل Quickstart - GitHub](https://docs.github.com/en/get-started/quickstart/git-and-github-learning-resources) -Git اور GitHub سیکھنے کے وسائل۔\n- [پرو گِٹ](https://git-scm.com/book/en/v2) - پوری پرو گِٹ کتاب، جو سکاٹ چاکن اور بین سٹراب نے لکھی ہے اور اپریس نے شائع کی ہے۔\n- [گِٹ-اٹ](https://github.com/jlord/git-it-electron) - قدم بہ قدم گِٹ ٹیوٹوریل ڈیسک ٹاپ ایپ۔\n- [گِٹ کے لئے پرواز کے قواعد](https://github.com/k88hudson/git-flight-rules) -چیزیں غلط ہونے پر کیا کرنا ہے اس بارے میں ایک گائیڈ۔\n- [ہسپانوی میں ابتدائیوں کے لیے گِٹ گائیڈ](https://platzi.github.io/git-slides/#/) -گِٹ اور گِٹ ہب کے بارے میں سلائیڈز کی مکمل گائیڈ ہسپانوی میں بیان کی گئی ہے۔ Una guía completa de diapositivas sobre git y GitHub explicadas en Español.\n- [گِٹ کراکن](https://www.gitkraken.com/git-client) - ورژن کنٹرول کے لیے بصری، کراس پلیٹ فارم، اور انٹرایکٹو `git` ڈیسک ٹاپ ایپلیکیشن۔\n- [گِٹ ٹپس](https://github.com/git-tips/tips) -سب سے زیادہ استعمال ہونے والے گِٹ ٹپس اور ٹرکس کا مجموعہ۔\n- [گِٹ بہترین پریکٹسز](https://sethrobertson.github.io/GitBestPractices/) - کثرت سے کمٹ کریں، بعد میں مکمل کریں، ایک بار شائع کریں: گِٹ بہترین طرز عمل۔\n- [گِٹ انٹرایکٹو ٹیوٹوریل](https://learngitbranching.js.org/) - گِٹ کو انتہائی بصری اور انٹرایکٹو انداز میں سیکھیں۔\n- [گِٹ چیٹ شیٹس](https://devhints.io/?q=git) -گِٹ پر گرافیکل چیٹ شیٹس کا ایک سیٹ۔\n- [گِٹ اور گِٹ ہب ٹیوٹوریل مکمل کریں۔](https://www.youtube.com/watch?v=apGV9Kg7ics) (1:12:39) -مکمل Git اور GitHub واک تھرو بذریعہ [Kunal Kushwaha](https://www.youtube.com/channel/UCBGOUQHNNtNGcGzVq5rIXjw).\n- [گِٹ کا ایک ٹیوٹوریل تعارف](https://git-scm.com/docs/gittutorial) -گِٹ کے ذریعہ ابتدائیوں کے لئے ایک سبق۔\n- [فرسٹ ایڈ گِٹ](https://firstaidgit.io/#/) -سب سے زیادہ پوچھے جانے والے Git سوالات کا ایک قابل تلاش مجموعہ۔ ان سوالات کے جوابات ذاتی تجربے، Stackoverflow، اور سرکاری Git دستاویزات سے جمع کیے گئے تھے۔\n- [سوسن پوٹر کے ذریعہ گِٹ](https://www.aosabook.org/en/git.html) - دکھائیں کہ Git کے مختلف تکنیکی پہلو کس طرح تقسیم شدہ ورک فلو کو فعال کرنے کے لیے کور کے نیچے کام کرتے ہیں، اور یہ دوسرے ورژن کنٹرول سسٹم (VCSs) سے کیسے مختلف ہے۔\n\n## اوپن سورس کتابیں۔\n\n> تمام چیزوں پر کتابیں اوپن سورس: ثقافت، تاریخ، بہترین طرز عمل وغیرہ۔\n\n- [اوپن سورس سافٹ ویئر تیار کرنا](https://producingoss.com/) -اوپن سورس سافٹ ویئر تیار کرنا اوپن سورس کی ترقی کے انسانی پہلو کے بارے میں ایک کتاب ہے۔ یہ بتاتا ہے کہ کامیاب پروجیکٹ کس طرح کام کرتے ہیں، صارفین اور ڈویلپرز کی توقعات اور مفت سافٹ ویئر کی ثقافت۔\n- [اوپن سورس ایپلی کیشنز کا فن تعمیر](https://www.aosabook.org/en/index.html) - چوبیس اوپن سورس ایپلی کیشنز کے مصنفین اس بات کی وضاحت کرتے ہیں کہ ان کے سافٹ ویئر کی ساخت کیسے ہے، اور کیوں۔ ویب سرورز اور کمپائلرز سے لے کر ہیلتھ ریکارڈ مینجمنٹ سسٹم تک، ان کا احاطہ کیا گیا ہے تاکہ آپ کو ایک بہتر ڈویلپر بننے میں مدد ملے۔\n- [اوپن سورس بک سیریز](https://opensource.com/resources/ebooks) - اوپن سورس اور بڑھتی ہوئی اوپن سورس موومنٹ کے بارے میں مفت ای بکس کی ایک جامع فہرست کے ساتھ مزید جانیں۔ https://opensource.com.\n- [سافٹ ویئر ریلیز پریکٹس HOWTO](https://tldp.org/HOWTO/Software-Release-Practice-HOWTO/) - یہ HOWTO لینکس اور دیگر اوپن سورس پروجیکٹس کے لیے ریلیز کے اچھے طریقوں کی وضاحت کرتا ہے۔ ان طریقوں پر عمل کر کے، آپ صارفین کے لیے اپنا کوڈ بنانا اور اسے استعمال کرنا، اور دوسرے ڈویلپرز کے لیے آپ کے کوڈ کو سمجھنے اور اسے بہتر بنانے کے لیے آپ کے ساتھ تعاون کرنے کے لیے اسے ہر ممکن حد تک آسان بنائیں گے۔\n- [اوپن سورسز 2.0: مسلسل ارتقاء](https://archive.org/details/opensources2.000diborich) (2005) - اوپن سورسز 2.0 آج کے ٹیکنالوجی لیڈرز کے بصیرت افزا اور فکر انگیز مضامین کا مجموعہ ہے جو 1999 کی کتاب، اوپن سورسز: وائسز فرام دی ریوولوشن میں تیار ہونے والی ارتقائی تصویر کو پینٹ کرنا جاری رکھے ہوئے ہے۔\n- [اوپن سورسز: اوپن سورس انقلاب کی آوازیں۔](https://www.oreilly.com/openbook/opensources/book/) -اوپن سورس کے علمبردار جیسے Linus Torvalds (Linux)، Larry Wall (Perl)، اور Richard Stallman (GNU) کے مضامین۔\n\n## اوپن سورس شراکت کے اقدامات۔\n\n> ان اقدامات کی فہرست جو موسمی واقعات پر کام کرنے کے لیے ابتدائی دوستانہ مسائل کو جمع کرتے ہیں۔\n\n- [پکڑنے کے لیے اوپر](https://up-for-grabs.net/) -ابتدائی دوستانہ مسائل کے ساتھ پروجیکٹس پر مشتمل ہے۔\n- [صرف فرسٹ ٹائمرز](https://www.firsttimersonly.com/) -کیڑے کی ایک فہرست جن پر لیبل لگا ہوا ہے۔ \"first-timers-only\".\n- [پہلی شراکتیں۔](https://firstcontributions.github.io/) - 5 منٹ میں اپنا پہلا اوپن سورس تعاون کریں۔ شراکت کے ساتھ شروعات کرنے والوں کی مدد کرنے کے لیے ایک ٹول اور ٹیوٹوریل۔ [یہاں](https://github.com/firstcontributions/first-contributions)سائٹ کے لیے GitHub سورس کوڈ ہے اور خود ریپوزٹری میں حصہ ڈالنے کا موقع ہے۔\n- [ہیک ٹوبار فیسٹیول](https://hacktoberfest.digitalocean.com/) - اوپن سورس کے تعاون کی حوصلہ افزائی کے لیے ایک پروگرام۔ اکتوبر کے مہینے میں کم از کم 4 پل درخواستیں کرکے ٹی شرٹس اور اسٹیکرز جیسے تحائف حاصل کریں۔\n- [24 درخواستیں کھینچیں۔](https://24pullrequests.com) - 24 درخواستیں کھینچیں۔ دسمبر کے مہینے کے دوران اوپن سورس تعاون کو فروغ دینے کا منصوبہ ہے۔\n- [اویو](https://ovio.org) -تعاون کرنے والے دوستانہ پروجیکٹس کے منتخب کردہ انتخاب کے ساتھ ایک پلیٹ فارم۔ اس میں ایک ہے۔ [طاقتور مسئلہ تلاش کا آلہ](https://ovio.org/issues) اور آئیے آپ منصوبوں اور مسائل کو بعد کے لیے محفوظ کرتے ہیں۔\n- [اس پروجیکٹ میں تعاون کریں۔](https://github.com/Syknapse/Contribute-To-This-Project) - یہ ایک سادہ اور آسان پروجیکٹ میں حصہ لینے اور GitHub استعمال کرنے میں آرام دہ اور پرسکون ہونے میں پہلی بار تعاون کرنے والوں کی مدد کرنے کے لیے ایک ٹیوٹوریل ہے۔\n- [اوپن سورس ویلکم کمیٹی](https://www.oswc.is/) - اوپن سورس ویلکم کمیٹی (OSWC) نئے آنے والوں کو اوپن سورس کی غیر معمولی دنیا میں شامل ہونے میں مدد کرتی ہے۔ ہمارے ساتھ اپنے اوپن سورس پروجیکٹس جمع کروائیں!\n\n## حصہ لینے کے لیے اوپن سورس پروگرام۔\n\n> ایک پروگرام، انٹرنشپ، یا رفاقت جس کی میزبانی کمیونٹی کے ذریعہ کی جاتی ہے تاکہ ابتدائی شراکت داروں کو اساتذہ اور وسائل کے ساتھ اوپن سورس سافٹ ویئر پروجیکٹس میں تعاون کرنے میں مدد ملے۔\n\n- [تمام لینکس فاؤنڈیشن (LF) مینٹرشپس](https://mentorship.lfx.linuxfoundation.org/#projects_all)\n- [کلاؤڈ مقامی کمپیوٹنگ فاؤنڈیشن](https://events.linuxfoundation.org/kubecon-cloudnativecon-north-america/)\n- [ابتدائی دوستانہ اوپن سورس پروگرام اپنی ٹائم لائنز کے ساتھ](https://github.com/arpit456jain/Open-Source-Programs)\n- [فوس ایشیا](https://fossasia.org)\n- [مفت سافٹ ویئر فاؤنڈیشن (FSF) انٹرنشپ](https://www.fsf.org/volunteer/internships)\n- [گوگل سمر آف کوڈ](https://summerofcode.withgoogle.com/) -گوگل کی طرف سے سالانہ چلایا جانے والا ایک بامعاوضہ پروگرام جو اوپن سورس سافٹ ویئر ڈویلپمنٹ میں مزید طلباء کے ڈویلپرز کو لانے پر مرکوز ہے۔\n- [ہیک ٹوبار فیسٹیول](https://hacktoberfest.digitalocean.com)\n- [ایل ایف نیٹ ورکنگ مینٹرشپ](https://wiki.lfnetworking.org/display/LN/LFN+Mentorship+Program)\n- [مائیکروسافٹ کمک سیکھنا](https://www.microsoft.com/en-us/research/academic-program/rl-open-source-fest/)\n- [سمر آف کوڈ کھولیں۔](https://osoc.be/students)\n- [آؤٹ ریچ](https://www.outreachy.org)\n- [پروسیسنگ فاؤنڈیشن انٹرنشپ](https://processingfoundation.org/fellowships/)\n- [سماجی سمر آف کوڈ](https://ssoc.getsocialnow.co/) - سوشل فاؤنڈیشن طلباء کو اوپن سورس کلچر کے بارے میں جاننے اور کمیونٹی میں شامل ہونے کے لیے یہ دو ماہ طویل سمر پروگرام پیش کرتی ہے۔ شرکاء تجربہ کار اساتذہ کی رہنمائی میں حقیقی زندگی کے منصوبوں میں حصہ ڈالتے ہیں۔\n- [گرل اسکرپٹ سمر آف کوڈ](https://gssoc.girlscript.tech/) - گرل اسکرپٹ فاؤنڈیشن کی طرف سے ہر موسم گرما میں منعقد کیا جانے والا تین ماہ کا اوپن سورس پروگرام۔ مسلسل کوششوں کے ساتھ، شرکاء ان مہینوں میں ہنر مند اساتذہ کی انتہائی رہنمائی کے تحت متعدد منصوبوں میں حصہ ڈالتے ہیں۔ اس طرح کی نمائش کے ساتھ، طلباء اپنے گھروں کے آرام سے حقیقی دنیا کے منصوبوں میں حصہ ڈالنا شروع کر دیتے ہیں۔\n- [ریلز گرلز سمر آف کوڈ](https://railsgirlssummerofcode.org/) - خواتین اور نان بائنری کوڈرز کے لیے ایک عالمی فیلوشپ پروگرام جہاں وہ موجودہ اوپن سورس پروجیکٹس پر کام کرتی ہیں اور اپنی مہارت کو بڑھاتی ہیں۔\n- [میجر لیگ ہیکنگ (MLH) فیلوشپ](https://fellowship.mlh.io/) - خواہشمند تکنیکی ماہرین کے لیے ایک ریموٹ انٹرنشپ متبادل جہاں وہ اوپن سورس پروجیکٹس بناتے ہیں یا ان میں تعاون کرتے ہیں۔\n\n## لائسنس\n\n<a rel=\"license\" href=\"https://creativecommons.org/licenses/by-sa/4.0/\"><img alt=\"Creative Commons License\" style=\"border-width:0\" src=\"https://licensebuttons.net/l/by-sa/4.0/88x31.png\" /></a><br />یہ کام لائسنس یافتہ ہے۔ <a rel=\"license\" href=\"https://creativecommons.org/licenses/by-sa/4.0/\">Creative Commons Attribution-ShareAlike 4.0 بین الاقوامی لائسنس</a>.\n"
  },
  {
    "path": "README-UZ.md",
    "content": "<!-- Do not translate this -->\n<details>\n<summary>\n<strong> Read this guide in other languages </strong>\n</summary>\n    <ul>\n        <li><a href=\"./README.md\"> English </a></li>\n        <li><a href=\"./README-MR.md\"> मराठी </a></li>\n        <li><a href=\"./README-BN.md\"> বাংলা </a></li>\n        <li><a href=\"./README-CN.md\"> 中文 </a></li>\n        <li><a href=\"./README-RU.md\"> русский </a></li>\n        <li><a href=\"./README-RO.md\"> Românesc </a></li>\n        <li><a href=\"./README-IT.md\"> Italiano </a></li>\n        <li><a href=\"./README-ES.md\"> Español </a></li>\n        <li><a href=\"./README-pt-BR.md\"> Português (BR) </a></li>\n        <li><a href=\"./README-DE.md\"> Deutsch </a></li>\n        <li><a href=\"./README-GR.md\"> Ελληνικά </a></li>\n        <li><a href=\"./README-FR.md\"> Français </a></li>\n        <li><a href=\"./README-KO.md\"> 한국어 </a></li>\n        <li><a href=\"./README-JA.md\"> 日本語 </a></li>\n    </ul>\n</details>\n<!-- Do not translate this -->\n\n# Ochiq manbali yangi ishtirokchilarni xush kelibsiz!\n\n[! [Xush kelibsiz so'rovlarini jalb qilish] (https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat)] (http://makeapullrequest.com)\n[! [faqat do'stlar uchun do'stona] (https://img.shields.io/badge/first--timers--only-friendly-blue.svg)] (https://www.firsttimersonly.com/)\n[! [Tuzilish holati] (https://api.travis-ci.org/freeCodeCamp/how-to-contribute-to-open-source.svg?branch=master)] (https://travis-ci.org / freeCodeCamp / ochiq manbaga qanday hissa qo'shish kerak)\n\nBu Open Source-ga hissa qo'shishni yangi boshlagan odamlar uchun manbalar ro'yxati.\n\nAgar qo'shimcha manbalarni topsangiz, iltimos, pulni jalb qilish so'roviga o'z hissangizni qo'shing.\n\nSavollaringiz yoki sharhlaringiz bo'lsa, iltimos, muammo yarating.\n\n\n** Mundarija **\n\n- [Umuman Ochiq manbaga hissa qo'shish] (# umumiy manbaga ochiq manbaga hissa qo'shish)\n- [To'g'ridan-to'g'ri GitHub qidiruvlari] (# to'g'ridan-to'g'ri-github-qidiruvlar)\n- [Mozilla'ning hissa qo'shadigan ekotizimi] (# mozillas-Contributor-ekotizimi)\n- [Yangi Ochiq manbali hissadorlar uchun foydali maqolalar] (# yangi-ochiq manbali hissadorlar uchun # foydali-maqolalar)\n- [Version Control-dan foydalanish] (# using-version-control)\n- [Ochiq manbali kitoblar] (# ochiq manbali kitoblar)\n- [Ochiq manbali hissa tashabbuslari] (# ochiq manba-hissa-tashabbuslar)\n- [Litsenziya] (# litsenziya)\n\n## Umuman ochiq manbaga hissa qo'shish\n- [Ochiq manbaga hissa qo'shish bo'yicha aniq qo'llanma] (https://www.freecodecamp.org/news/the-definitive-guide-to-contributing-to-open-source-900d5f9f2282/) tomonidan [@DoomHammerNG] (https : //twitter.com/DoomHammerNG)\n- [Ochiq manbaga kirish] (https://www.digitalocean.com/community/tutorial_series/an-introduction-to-open-source) - bu erda GitHub-da muvaffaqiyatga erishish yo'lida sizni ko'rsatadigan DigitalOcean tomonidan qo'llanmalar.\n- [Issuehub.pro] (http://issuehub.pro/) - GitHub muammolarini yorlig'i va tili bo'yicha qidirish vositasi.\n- [Code Triage] (https://www.codetriage.com/) - boshqa, juda yaxshi, ommabop omborlarni va til orqali filtrlangan nashrlarni topish vositasi.\n- [Yangi boshlanuvchilar uchun ajoyib] (https://github.com/MunGell/awesome-for-beginners) - yangi ishtirokchilar uchun yaxshi xatolarga yo'l qo'ygan loyihalarni to'playdigan va ularni tavsiflash uchun yorliqlarni ishlatadigan GitHub repo.\n- [Ochiq manbalar bo'yicha qo'llanmalar] (https://opensource.guide/) - Ochiq manbali loyihani boshqarish va unga hissa qo'shishni o'rganishni istagan shaxslar, jamoalar va kompaniyalar uchun resurslar to'plami.\n- [45 Github nashrida nima qilish kerak va nima qilish kerak] (https://hackernoon.com/45-github-issues-dos-and-donts-dfec9ab4b612) - GitHub-da qilinadigan va qilinmaydigan narsalar.\n- [GitHub qo'llanmalari] (https://guides.github.com/) - GitHub-dan samarali foydalanish bo'yicha asosiy qo'llanmalar.\n- [Ochiq manbaga hissa qo'shish] (https://github.com/danthareja/contribute-to-open-source) - simulyatsiya loyihasiga kod kiritish orqali GitHub ish oqimini o'rganing.\n- [Linux Foundation-ning korxona uchun ochiq manbali qo'llanmalari] (https://www.linuxfoundation.org/resources/open-source-guides/) - Linux fondining Open Source loyihalari bo'yicha qo'llanmasi.\n- [CSS fokuslari ochiq manbali odob-axloq qo'llanmasi] (https://css-tricks.com/open-source-etiquette-guidebook/) - Kent C. Dodds va Sara Drasner tomonidan yozilgan ochiq manbali odob-axloq qo'llanmasi.\n- [Talabalar uchun A dan Zgacha manbalar] (https://github.com/dipakkr/A-to-Z-Resources-for-Students) - kollej o'quvchilari uchun yangi kodlash tilini o'rganish uchun manbalar va imkoniyatlarning tayyorlangan ro'yxati.\n- [Pull Request Roulette] (http://www.pullrequestroulette.com/) - Ushbu saytda Github-da joylashgan Open Source loyihalariga tegishli ko'rib chiqish uchun yuborilgan so'rovlar ro'yxati mavjud.\n- [Egghead.io tomonidan \"GitHub-da ochiq manbali loyihaga qanday hissa qo'shish kerak\"] (https://egghead.io/courses/how-to-contribute-to-an-open-source-project-on-github) - GitHub-da Open Source loyihalariga hissa qo'shishni boshlash bo'yicha bosqichma-bosqich video ko'rsatma.\n- [Ochiq manbaga hissa qo'shish: boshidan oxirigacha jonli o'tish yo'li (https://medium.com/@kevinjin/contributing-to-open-source-walkthrough-part-0-b3dc43e6b720) - ochiq manba hissasi munosib loyihani tanlashdan, muammo ustida ishlashdan, PRni birlashtirishga qadar hamma narsani o'z ichiga oladi.\n- [\"Sara Manba tomonidan ochiq manbali loyihaga qanday hissa qo'shish kerak\"] (https://css-tricks.com/how-to-contribute-to-an-open-source-project/) - Ular diqqatni diqqatga sazovor narsalarga qaratmoqdalar - GitHub-dagi boshqa birovning loyihasiga pul mablag'larini jalb qilish so'rovi (PR) qo'shilishi.\n- [\"Sayan Chodhuri\" tomonidan \"Ochiq manbadan ish boshlash\"] (https://www.hackerearth.com:443/getstarted-opensource/) - Ushbu maqola yangi boshlanuvchilar uchun o'zlarining sevganlariga asoslanib ochiq manbaga hissa qo'shish uchun manbalarni o'z ichiga oladi. tilga qiziqish.\n- [\"Ochiq manbaga hissa qo'shishni boshlash uchun birinchi yaxshi sonlarni ko'rib chiqing\"] (https://github.blog/2020-01-22-browse-good-first-issues-to-start-contributing-to-open-source/ ) - GitHub endi ochiq manbaga hissa qo'shishni boshlash uchun birinchi yaxshi muammolarni topishga yordam beradi.\n- [\"Open Source Project\" loyihasiga qanday hissa qo'shish kerak \"Maryna Z] (https://rubygarage.org/blog/how-contribute-to-open-source-projects) - Ushbu keng qamrovli maqola biznesga yo'naltirilgan (ammo baribir foydali) individual hissadorlar uchun) qaerda nima uchun, qanday va qanday ochiq manbali loyihalarga hissa qo'shishi kerakligi haqida gapiradi.\n- [\"boshlash-bu erda ko'rsatmalar\" Andrey tomonidan] (https://github.com/zero-to-mastery/start-here-guidlines) -\nGitni opensource o'yin maydonidan boshlab opensource dunyosida boshlashga imkon bering. Ayniqsa, ta'lim va amaliy tajriba maqsadlari uchun mo'ljallangan.\n- [NumFocus tomonidan \"Ochiq manbadan boshlash\"] (https://github.com/numfocus/getting-started-with-open-source) - GitHub repo, ochiq manbaga kirish to'siqlarini engishga yordam beradi.\n- [\"Opensoure-4-hammasi\" Chryz-hub tomonidan] (https://github.com/chryz-hub/opensource-4-everyone) - Ochiq manbaga oid barcha narsalar ombori. Bu GitHub-ga a'zolik ko'rinishini yaxshilash, asosiy va oldindan o'tish buyruqlari bilan mashq qilish, ochiq manbadan boshlash va boshqalarga yordam beradigan loyihadir.\n- [\"Ochiq maslahat\"] (http://open-advice.org/) - Bepul dasturiy ta'minotning turli xil loyihalaridan bilimlar to'plami. Bu 42 taniqli hissadorlar qachon boshlanganligini bilishni istagan bo'lar edi, degan savolga javob beradi, shunda siz qanday va qayerda qo'shganingizdan qat'iy nazar boshlanishingiz mumkin.\n- [\"GitHub Learning Lab\"] (https://lab.github.com/) - GitHub Learning Lab bilan o'z mahoratingizni oshiring. Bizning do'stona botimiz sizga kerakli ko'nikmalarni qisqa vaqt ichida o'rganish uchun bir qator qiziqarli, amaliy loyihalar orqali o'tadi va shu bilan birga foydali fikr-mulohazalar bilan o'rtoqlashadi.\n- [\"Yangi kelganlarga loyihalarni ochishda yordamchi bo'lishlariga yordam berishning o'nta oddiy qoidalari\"] (https://doi.org/10.1371/journal.pcbi.1007296) - Ushbu maqola ko'plab jamoalarni o'rganish va a'zolar, rahbarlarning tajribalariga asoslangan qoidalarni o'z ichiga oladi. va kuzatuvchilar.\n\n## Direct GitHub qidiruvlari\nTo'g'ridan-to'g'ri GitHub-ga hissa qo'shish uchun mos muammolarni ko'rsatadigan havolalarni qidiring.\n- [is: issue is: open label: beginner] (https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Abeginner&type=issues)\n- [bu: masala: ochiq yorliq: oson] (https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Aeasy&type=issues)\n- [is: issue is: ochiq yorliq: faqat birinchi marta qatnashuvchilar] (https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Afirst-timers-only&type=issues)\n- [is: issue is: open label: good-first-bug] (https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Agood-first-bug&type=issues)\n- [is: issue is: ochiq yorliq: \"yaxshi birinchi nashr\"] (https://github.com/search?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22&type=issues )\n- [bu: muammo: ochiq yorliq: boshlang'ich] (https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Astarter&type=issues)\n- [is: issue is: open label: up-for grabs] (https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Aup-for-grabs&type=issues)\n\n## Mozilla hissador ekotizimi\n- [Yaxshi Birinchi Xatolar] (https://bugzil.la/sw:%22 [good% 20first% 20bug]% 22 & limit = 0) - ishlab chiquvchilar loyihaga yaxshi kirish sifatida aniqlagan xatolar.\n- [MDN veb-hujjatlari] (https://developer.mozilla.org/en-US/docs/MDN/Contribute) - MDN veb-hujjatlari guruhiga veb-platformani hujjatlashtirishda kontent muammolari va platformadagi xatolarni tuzatish orqali yordam bering.\n- [Mentored Bugs] (https://bugzilla.mozilla.org/buglist.cgi?quicksearch=mentor%3A%40) - ustozi tayinlangan xatolar, ular ish paytida tiqilib qolganingizda sizga yordam berish uchun ARMda bo'lishadi. tuzatish bo'yicha.\n- [Bugs Ahoy] (https://www.joshmatthews.net/bugsahoy/) - Bugzilla-da xatolarni topishga bag'ishlangan sayt.\n- [Firefox DevTools] (http://firefox-dev.tools/) - Firefox brauzerida ishlab chiquvchi vositalari uchun yozilgan xatolarga bag'ishlangan sayt.\n- [Mozilla uchun nima qila olaman] (https://whatcanidoformozilla.org/) - o'zingizning mahoratingiz va qiziqishlaringiz haqidagi ko'plab savollarga javob berib, nima ustida ishlashingiz mumkinligini aniqlang.\n- [Mozilla-ni ishga tushirish] (https://twitter.com/StartMozilla) - Twitter-da Mozilla ekotizimiga yangi qo'shilganlar uchun mos keladigan mavzudagi tvitlar.\n\n## Ochiq manbali yangi ishtirokchilar uchun foydali maqolalar\n- [Birinchi Open Source loyihangizni qanday tanlash (va unga hissa qo'shish)] (https://github.com/collections/choosing-projects) tomonidan [@GitHub] (https://github.com/github)\n- [Tuzatish uchun birinchi ochiq manbali xatoni qanday topish mumkin] (https://www.freecodecamp.org/news/finding-your-first-open-source-project-or-bug-to-work-on-1712f651e5ba/ ) tomonidan [@Shubheksha] (https://github.com/Shubheksha)\n- [Faqat birinchi taymerlar] (https://kentcdodds.com/blog/first-timers-only/) tomonidan [@kentcdodds] (https://github.com/kentcdodds)\n- [Yaxshilikni ochiq manbaga qaytaring] (https://web.archive.org/web/20201009150545/https://www.hanselman.com/blog/bring-kindness-back-to-open-source) tomonidan [ @shanselman] (https://github.com/shanselman)\n- [Ochiq manbaga birinchi marta kirish] (https://www.nearform.com/blog/getting-into-open-source-for-the-first-time/) tomonidan [@mcdonnelldean] (https: / /github.com/mcdonnelldean)\n- [Ochiq manbaga qanday hissa qo'shish kerak] (https://opensource.guide/how-to-contribute/) tomonidan [@GitHub] (https://github.com/github)\n- [Qanday qilib sizning kodingizdagi xatolarni topish mumkin] (https://8thlight.com/blog/doug-bradbury/2016/06/29/how-to-find-bug-in-your-code.html) by [ @dougbradbury] (https://twitter.com/dougbradbury)\n- [Markdownni o'zlashtirish] (https://guides.github.com/features/mastering-markdown/) tomonidan [@GitHub] (https://github.com/github)\n- [Birinchi missiya: Contributors sahifasi] (https://medium.com/@forCrowd/first-mission-contributors-page-df24e6e70705#.2v2g0no29) tomonidan [@forCrowd] (https://github.com/forCrowd)\n- [Qanday qilib atigi 5 daqiqada birinchi ochiq manbali hissangizni qo'shish mumkin] (https://www.freecodecamp.org/news/how-to-make-your-first-open-source-contribution-in-just-5- minutes-aaad1fc59c9a /) tomonidan [@roshanjossey] (https://github.com/Roshanjossey/)\n- [Hacktoberfest 2019: kodlashni yangi boshlagan bo'lsangiz ham, qanday qilib bepul ko'ylakni olishingiz mumkin] (https://www.freecodecamp.org/news/hacktoberfest-2018-how-you-can-get-your-free -shirt-even-if-youre-new-to-kodlash-96080dd0b01b /) tomonidan [@quincylarson] (https://www.freecodecamp.org/news/author/quincylarson/)\n- [Manbani ochish uchun achchiq qo'llanma] (https://medium.com/codezillas/a-bitter-guide-to-open-source-a8e3b6a3c1c4) tomonidan [@ken_wheeler] (https://medium.com/@ken_wheeler) )\n- [Kichik dasturchining birinchi marta Ochiq manbaga o'z hissasini qo'shish bo'yicha qo'llanmasi] (https://hackernoon.com/contributing-to-open-source-the-sharks-are-photoshopped-47e22db1ab86) tomonidan [ @LetaKeane] (https://hackernoon.com/u/letakeane)\n- [Git va GitHub-ni bosqichma-bosqich o'rganing (Windows-da)] (https://medium.com/illumination/path-to-learning-git-and-github-be93518e06dc) tomonidan [@ ows-ali] (https: / /ows-ali.medium.com/)\n- [Nima uchun ochiq manba va qanday?] (Https://careerkarma.com/blog/open-source-projects-for-beginners/) tomonidan [@ james-gallagher] (https://careerkarma.com/blog/author) / jamesgallagher /)\n- [Ochiq manbadan qanday boshlash kerak - Sayan Chowdhury tomonidan] (https://www.hackerearth.com/getstarted-opensource/)\n- [Qaysi ochiq manbaga o'z hissamni qo'shishim kerak] (https://kentcdodds.com/blog/what-open-source-project-should-i-contribute-to/) Kent C. Dodds\n- [Franklin Okolie] (https://twitter.com/) tomonidan ochiq manbali immersive kirish qo'llanmasi (https://developeraspire.hashnode.dev/an-immersive-introductory-guide-to-open-source) DeveloperAspire)\n- [Ochiq manbaga hissa qo'shishni boshlash] (https://stackoverflow.blog/2020/08/03/getting-started-with-contributing-to-open-source/) tomonidan [Zara Cooper] (https: // stackoverflow.blog/author/zara-cooper/)\n- [Sudipto Ghosh] tomonidan yozilgan [boshlanuvchilar uchun ochiq manbali ulush bo'yicha qo'llanma] (https://workat.tech/general/article/open-source-contribution-guide-xmhf1k601vdj) (https://github.com/pydevsg)\n- [Ochiq manbaga hissa qo'shishning 8 ta kodli usuli] (https://opensource.com/life/16/1/8-ways-contribute-open-source-without-writing-code) [OpenSource] (https) : //twitter.com/OpenSourceWay)\n\n## Versiya boshqaruvidan foydalanish\n- [Like Like (a) Git] (http://think-like-a-git.net/) - \"Tajribali boshlang'ichlar\" uchun Git kirish, ammo xavfsiz tajribalar o'tkazish uchun oddiy strategiyani berish uchun hali ham kurash olib bormoqda git bilan.\n- [Git-ni sinab ko'ring] (https://try.github.io/) - Git-ni brauzeringiz ichidan 15 daqiqada bepul o'rganing.\n- [Everyday Git] (https://git-scm.com/docs/giteveryday) - Everyday Git uchun foydali minimal buyruqlar to'plami.\n- [Oh bok, git!] (Https://ohshitgit.com/) - oddiy ingliz tilida tavsiflangan \"git\" xatolaridan qanday qutulish mumkin; shuningdek, sahifani qasam ichmasdan [Dangit, git!] (https://dangitgit.com/) sahifasidan ko'ring.\n- [Atlassian Git Tutorials] (https://www.atlassian.com/git/tutorials) - \"git\" dan foydalanish bo'yicha turli xil qo'llanmalar.\n- [GitHub Git Cheat Sheet] (https://education.github.com/git-cheat-sheet-education.pdf) (PDF)\n- [Git Resources-dagi freeCodeCamp-ning viki-si] (https://forum.freecodecamp.org/t/wiki-git-resources/13136)\n- [GitHub Flow] (https://www.youtube.com/watch?v=juLIxo42A_s) (42:06) - GitHub qanday qilib tortishish so'rovini berish haqida gaplashmoqda.\n- [GitHub o'quv manbalari] (https://docs.github.com/uz/github/getting-started-with-github/git-and-github-learning-resources) - Git va GitHub o'quv manbalari.\n- [Pro Git] (https://git-scm.com/book/en/v2) - Skott Chakon va Ben Straub tomonidan yozilgan va Apress tomonidan nashr etilgan Pro Gitning to'liq kitobi.\n- [Git-it] (https://github.com/jlord/git-it-electron) - Git o'quv qo'llanmasining ish stoli dasturi.\n- [Git uchun parvoz qoidalari] (https://github.com/k88hudson/git-flight-rules) - Ishlar noto'g'ri ketganda nima qilish kerakligi haqida ko'rsatma.\n- [Ispan tilida yangi boshlanuvchilar uchun Git qo'llanmasi] (https://platzi.github.io/git-slides/#/) - git va GitHub haqida slaydlarning to'liq qo'llanmasi ispan tilida tushuntirilgan. GitHub-ning eksplicadas va Español-ga o'tishi mumkin.\n- [Git Kraken] (https://www.gitkraken.com/git-client) - Vizual boshqaruv, o'zaro faoliyat platforma va interaktiv \"git\" ish stoli dasturi.\n- [Git Tips] (https://github.com/git-tips/tips) - eng ko'p ishlatiladigan git maslahatlar va tavsiyalar to'plami.\n- [Git Best Practices] (https://sethrobertson.github.io/GitBestPractices/) - Ko'pincha majburiyat qiling, keyinroq mukammal qiling, bir marta nashr eting: Git Best Practices.\n- [Git Interactive Tutorial] (https://learngitbranching.js.org/) - Git-ni eng vizual va interaktiv usulda o'rganing.\n\n## Ochiq manbali kitoblar\n- [Ochiq manbali dasturiy ta'minot ishlab chiqarish] (https://producingoss.com/) - Ochiq manbali dasturiy ta'minot ishlab chiqarish - bu Ochiq manbalarni rivojlantirishning insoniy tomonlari haqida kitob. Bu erda muvaffaqiyatli loyihalar qanday ishlashi, foydalanuvchilar va ishlab chiquvchilarning umidlari va bepul dasturiy ta'minot madaniyati tasvirlangan.\n- [Ochiq kodli kitoblar seriyasi] (https://opensource.com/resources/ebooks) - https://opensource.com saytidan bepul elektron kitoblarning to'liq ro'yxati bilan Open Source va o'sib borayotgan Open Source harakati haqida ko'proq bilib oling.\n- [HOWTO dasturiy ta'minotni chiqarish amaliyoti] (https://tldp.org/HOWTO/Software-Release-Practice-HOWTO/) - Ushbu HOWTO Linux va boshqa ochiq manbali loyihalar uchun yaxshi chiqish amaliyotini tavsiflaydi. Ushbu amaliyotlarga rioya qilgan holda, siz foydalanuvchilarga sizning kodingizni yaratishda va undan foydalanishda, boshqa ishlab chiquvchilar sizning kodingizni tushunishda va uni yaxshilash uchun siz bilan hamkorlik qilishni iloji boricha engillashtirasiz.\n- [Ochiq manbalar 2.0: davom etayotgan evolyutsiya] (https://archive.org/details/opensources2.000diborich) (2005) - Open Sources 2.0 - bu zamonaviy texnologiya rahbarlarining tushunarli va o'ylantiruvchi insholar to'plamidir, bu rasmni davom ettiradi 1999 yil \"Ochiq manbalar: inqilob ovozlari\" kitobida rivojlangan evolyutsion rasm.\n- [Ochiq manbali dasturlarning arxitekturasi] (http://www.aosabook.org/en/git.html) - Git-ning turli jihatlari taqsimlangan ish oqimlarini yoqish uchun qopqoq ostida qanday ishlashini va uning boshqa versiya boshqaruvidan farqini ko'rsating. tizimlar (VCS).\n- [Ochiq manbalar: Ochiq manbadagi inqilob ovozlari] (https://www.oreilly.com/openbook/opensources/book/) - Linus Torvalds (Linux), Larri Uoll (Perl) kabi ochiq manbali kashshoflarning insholari. va Richard Stallman (GNU).\n\n## Ochiq manbalar bo'yicha tashabbuslar\n- [Up For Grabs] (https://up-for-grabs.net/) - boshlanuvchilar uchun qulay bo'lgan loyihalarni o'z ichiga oladi\n- [Faqat birinchi taymerlar] (https://www.firsttimersonly.com/) - \"faqat birinchi taymerlar\" deb nomlangan xatolar ro'yxati.\n- [Birinchi hissalar] (https://firstcontributions.github.io/) - 5 daqiqada birinchi ochiq manbaga qo'shiling. Yangi boshlanuvchilarga hissa qo'shishni boshlashga yordam beradigan vosita va qo'llanma. [Bu erda] (https://github.com/firstcontributions/first-contributions) bu sayt uchun GitHub manba kodi va omborning o'ziga hissa qo'shish imkoniyati.\n- [Hacktoberfest] (https://hacktoberfest.digitalocean.com/) - Ochiq manbalarga qo'shilishni rag'batlantirish dasturi. Oktyabr oyida kamida 4 marta so'rov yuborib, futbolkalar va stikerlar kabi sovg'alarga ega bo'ling.\n- [24 Pull Requests] (https://24pullrequests.com) - 24 Pull Requests - bu dekabr oyi davomida Open Source hamkorligini rivojlantirishga qaratilgan loyihadir.\n- [Ovio] (https://ovio.org) - Hisobotchilarga ma'qul loyihalarni tanlangan platformasi. Unda [kuchli muammolarni qidirish vositasi] mavjud (https://ovio.org/issues) va keling, loyihalar va muammolarni keyinroq saqlaymiz.\n\n## Litsenziya\n<a rel=\"license\" href=\"https://creativecommons.org/licenses/by-sa/4.0/\"> <img alt = \"Creative Commons License\" style = \"border-width: 0\" src = \"https : //licensebuttons.net/l/by-sa/4.0/88x31.png \"/> </a> <br /> Ushbu asar litsenziyalangan <a rel =\" licence \"href =\" https: // creativecommons .org / licenses / by-sa / 4.0 / \"> Creative Commons Attribution-ShareAlike 4.0 xalqaro litsenziyasi </a>."
  },
  {
    "path": "README-VI.md",
    "content": "<!-- Do not translate this -->\n<details>\n<summary>\n<strong> Read this guide in other languages </strong>\n</summary>\n    <ul>\n        <li><a href=\"./README.md\"> English </a></li>\n        <li><a href=\"./README-MR.md\"> मराठी </a></li>\n        <li><a href=\"./README-BN.md\"> বাংলা </a></li>\n        <li><a href=\"./README-CN.md\"> 中文 </a></li>\n        <li><a href=\"./README-RU.md\"> русский </a></li>\n        <li><a href=\"./README-RO.md\"> Românesc </a></li>\n        <li><a href=\"./README-IT.md\"> Italiano </a></li>\n        <li><a href=\"./README-ES.md\"> Español </a></li>\n        <li><a href=\"./README-pt-BR.md\"> Português (BR) </a></li>\n        <li><a href=\"./README-DE.md\"> Deutsch </a></li>\n        <li><a href=\"./README-GR.md\"> Ελληνικά </a></li>\n        <li><a href=\"./README-FR.md\"> Français </a></li>\n        <li><a href=\"./README-KO.md\"> 한국어 </a></li>\n        <li><a href=\"./README-JA.md\"> 日本語 </a></li>\n        <li><a href=\"./README-VN.md\"> Tiếng Việt </a></li>\n    </ul>\n</details>\n<!-- Do not translate this -->\n\n# Chào mừng bạn đến với dự án Mã nguồn mở!\n\n[![Pull Requests Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat)](http://makeapullrequest.com)\n[![first-timers-only Friendly](https://img.shields.io/badge/first--timers--only-friendly-blue.svg)](https://www.firsttimersonly.com/)\n[![Build Status](https://api.travis-ci.org/freeCodeCamp/how-to-contribute-to-open-source.svg?branch=master)](https://travis-ci.org/freeCodeCamp/how-to-contribute-to-open-source)\n\nĐây là danh sách tài nguyên dành cho những người mới đóng góp cho dự án Mã nguồn mở.\n\nNếu bạn tìm thấy tài nguyên bổ sung, vui lòng đóng góp một pull request.\n\nNếu bạn có câu hỏi hoặc nhận xét, vui lòng tạo một issue.\n\n**Mục Lục**\n\n- [Tổng quan về dự án Mã nguồn mở](#Tổng-quan-về-dự-án-Mã-nguồn-mở)\n- [Tìm kiếm trực tiếp trên Github](#Tìm-kiếm-trực-tiếp-trên-Github)\n- [Hệ sinh thái cộng tác viên của Mozilla](#Hệ-sinh-thái-cộng-tác-viên-của-Mozilla)\n- [Các bài viết hữu ích dành cho các cộng tác viên Nguồn mở mới](#Các-bài-viết-hữu-ích-dành-cho-các-cộng-tác-viên-Nguồn-mở-mới)\n- [Sử dụng Version Control](#Sử-dụng-Version-Control)\n- [Sách về dự án Mã nguồn mở](#Sách-về-dự-án-Mã-nguồn-mở)\n- [Các sáng kiến ​​đóng góp nguồn mở](#Các-sáng-kiến-​​đóng-góp-nguồn-mở)\n- [Giấy phép](#Giấy-phép)\n\n## Tổng quan về dự án Mã nguồn mở\n- [Hướng dẫn để đóng góp cho dự án Mã nguồn mở](https://www.freecodecamp.org/news/the-definitive-guide-to-contributing-to-open-source-900d5f9f2282/) bởi [@DoomHammerNG](https://twitter.com/DoomHammerNG)\n- [Giới thiệu về dự án Mã nguồn mở](https://www.digitalocean.com/community/tutorial_series/an-introduction-to-open-source) - Hướng dẫn bởi DigitalOcean để hướng dẫn bạn trên con đường đóng góp thành công trên GitHub.\n- [Issuehub.pro](http://issuehub.pro/) - Công cụ để tìm kiếm GitHub issues bằng label và ngôn ngữ lập trình.\n- [Code Triage](https://www.codetriage.com/) - một công cụ khác, rất hay, để tìm các kho lưu trữ phổ biến và các vấn đề được lọc theo ngôn ngữ lập trình.\n- [Tuyệt vời cho người mới bắt đầu](https://github.com/MunGell/awesome-for-beginners) - một repo GitHub tích lũy các dự án có lỗi và áp dụng nhãn để mô tả chúng, tốt cho những người đóng góp mới.\n- [Hướng dẫn Mã nguồn mở](https://opensource.guide/) - Tập hợp các tài nguyên dành cho các cá nhân, cộng đồng và công ty muốn tìm hiểu cách điều hành và đóng góp cho một dự án Nguồn mở.\n- [45 Github Issues Nên và Không nên](https://hackernoon.com/45-github-issues-dos-and-donts-dfec9ab4b612) - Những điều Nên và Không nên trên GitHub.\n- [Hướng dẫn Github](https://guides.github.com/) - hướng dẫn cơ bản về cách sử dụng GitHub một cách hiệu quả.\n- [Đóng góp cho dự án Mã nguồn mở](https://github.com/danthareja/contribute-to-open-source) - Tìm hiểu Github workflow bằng cách đóng góp code vào dự án giả lập.\n- [Linux Foundation's Hướng dẫn nguồn mở cho doanh nghiệp](https://www.linuxfoundation.org/resources/open-source-guides/) - The Linux Foundation's hướng dẫn cho các dự án Mã nguồn mở.\n- [CSS Tricks Cuốn sách hướng dẫn nguồn cung cấp mã nguồn mở](https://css-tricks.com/open-source-etiquette-guidebook/) - Cuốn sách hướng dẫn nguồn cung cấp mã nguồn mở, được viết bởi Kent C. Dodds và Sarah Drasner.\n- [Tài nguyên từ A đến Z dành cho sinh viên](https://github.com/dipakkr/A-to-Z-Resources-for-Students) - Danh sách các nguồn tài nguyên và cơ hội được tuyển chọn để sinh viên đại học học một ngôn ngữ mới.\n- [Xem xét Pull Request](http://www.pullrequestroulette.com/) - Trang web này có một danh sách các pull request được gửi để xem xét thuộc về các dự án Mã nguồn mở được lưu trữ trên Github.\n- [\"Cách đóng góp cho một dự án nguồn mở trên GitHub\" bởi Egghead.io](https://egghead.io/courses/how-to-contribute-to-an-open-source-project-on-github) - Video hướng dẫn từng bước về cách bắt đầu đóng góp cho các dự án Nguồn mở trên GitHub.\n- [Đóng góp cho nguồn mở: Hướng dẫn trực tiếp từ đầu đến cuối](https://medium.com/@kevinjin/contributing-to-open-source-walkthrough-part-0-b3dc43e6b720) - Hướng dẫn về đóng góp mã nguồn mở này bao gồm mọi thứ, từ việc chọn một dự án phù hợp, giải quyết một vấn đề, đến việc hợp nhất PR.\n- [\"Cách đóng góp cho dự án nguồn mở\" bởi Sarah Drasner](https://css-tricks.com/how-to-contribute-to-an-open-source-project/) - Họ đang tập trung vào tính thực tế của việc đóng góp một pull request (PR) cho dự án của người khác trên GitHub.\n- [\"Cách bắt đầu với dự án Mã nguồn mở\" của Sayan Chowdhury](https://www.hackerearth.com:443/getstarted-opensource/) - Bài viết này bao gồm các tài nguyên để đóng góp vào mã nguồn mở cho người mới bắt đầu dựa trên sở thích ngôn ngữ yêu thích của họ.\n- [\"Duyệt qua các vấn đề tốt đầu tiên để bắt đầu đóng góp cho mã nguồn mở\"](https://github.blog/2020-01-22-browse-good-first-issues-to-start-contributing-to-open-source/) - GitHub hiện giúp bạn tìm ra những vấn đề tốt đầu tiên để bắt đầu đóng góp cho mã nguồn mở.\n- [\"Cách đóng góp cho dự án nguồn mở\" của Maryna Z](https://rubygarage.org/blog/how-contribute-to-open-source-projects) - Bài viết toàn diện này hướng đến các doanh nghiệp (nhưng vẫn hữu ích cho những người đóng góp riêng lẻ), nơi nó nói về lý do, cách thức và những dự án nguồn mở cần đóng góp.\n- [\"hướng dẫn bắt đầu tại đây\" của Andrei](https://github.com/zero-to-mastery/start-here-guidelines) - Cho phép Git bắt đầu trong thế giới mã nguồn mở, bắt đầu trong sân chơi mã nguồn mở. Đặc biệt được thiết kế cho mục đích giáo dục và trải nghiệm thực tế.\n- [\"Bắt đầu với mã nguồn mở\" của NumFocus](https://github.com/numfocus/getting-started-with-open-source) - một repo GitHub giúp những người đóng góp vượt qua các rào cản gia nhập dự án Mã nguồn mở.\n- [\"Mã nguồn mở cho mọi người\" bởi Chryz-hub](https://github.com/chryz-hub/opensource-4-everyone) - Một kho lưu trữ mọi thứ liên quan đến mã nguồn mở. Đây là một dự án giúp nâng cao khả năng hiển thị thành viên GitHub, thực hành với các lệnh git cơ bản và nâng cao, bắt đầu với mã nguồn mở, v.v.\n- [\"Open Advice\"](http://open-advice.org/) - Bộ sưu tập kiến thức từ nhiều dự án Phần mềm Miễn phí. Nó trả lời câu hỏi 42 cộng tác viên nổi bật muốn biết khi nào họ bắt đầu để bạn có thể bắt đầu thành công bất kể bạn đóng góp như thế nào và ở đâu.\n- [\"GitHub Learning Lab\"](https://lab.github.com/) - Nâng cao kỹ năng của bạn với GitHub Learning Lab. Bot thân thiện của chúng tôi sẽ đưa bạn qua một loạt các dự án thực tế, thú vị để học các kỹ năng bạn cần ngay lập tức — và chia sẻ phản hồi hữu ích trong suốt quá trình.\n- [\"Mười quy tắc đơn giản để giúp những người mới trở thành người đóng góp cho các dự án đang mở\"](https://doi.org/10.1371/journal.pcbi.1007296) - Bài viết này đề cập đến các quy tắc dựa trên các nghiên cứu về nhiều cộng đồng và kinh nghiệm của các thành viên, lãnh đạo và quan sát viên.\n\n\n## Tìm kiếm trực tiếp trên Github\nTìm kiếm các liên kết trỏ trực tiếp đến các vấn đề phù hợp để đóng góp trên GitHub.\n- [is:issue is:open label:beginner](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Abeginner&type=issues)\n- [is:issue is:open label:easy](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Aeasy&type=issues)\n- [is:issue is:open label:first-timers-only](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Afirst-timers-only&type=issues)\n- [is:issue is:open label:good-first-bug](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Agood-first-bug&type=issues)\n- [is:issue is:open label:\"good first issue\"](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22&type=issues)\n- [is:issue is:open label:starter](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Astarter&type=issues)\n- [is:issue is:open label:up-for-grabs](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Aup-for-grabs&type=issues)\n\n## Hệ sinh thái cộng tác viên của Mozilla\n- [Good First Bugs](https://bugzil.la/sw:%22[good%20first%20bug]%22&limit=0) - lỗi mà các nhà phát triển đã xác định là một phần giới thiệu tốt cho dự án.\n- [MDN Web Docs](https://developer.mozilla.org/en-US/docs/MDN/Contribute) - giúp nhóm MDN Web Docs ghi lại nền tảng web bằng cách khắc phục các sự cố nội dung và lỗi nền tảng.\n- [Mentored Bugs](https://bugzilla.mozilla.org/buglist.cgi?quicksearch=mentor%3A%40) - lỗi có một người cố vấn được chỉ định, người sẽ ở đó trên IRC để giúp bạn khi bạn gặp khó khăn trong khi tìm cách khắc phục.\n- [Bugs Ahoy](https://www.joshmatthews.net/bugsahoy/) - một trang web chuyên tìm lỗi trên Bugzilla.\n- [Firefox DevTools](http://firefox-dev.tools/) - một trang web dành riêng cho các lỗi được gửi cho các công cụ dành cho nhà phát triển trong trình duyệt Firefox.\n- [What Can I Do For Mozilla](https://whatcanidoformozilla.org/)  -  tìm ra những gì bạn có thể làm bằng cách trả lời một loạt các câu hỏi về bộ kỹ năng và sở thích của bạn.\n- [Start Mozilla](https://twitter.com/StartMozilla) - một tài khoản Twitter tweet về các vấn đề phù hợp với những người đóng góp mới cho hệ sinh thái Mozilla.\n\n## Các bài viết hữu ích dành cho các cộng tác viên Nguồn mở mới\n- [Cách chọn (và đóng góp vào) dự án Mã nguồn mở đầu tiên của bạn](https://github.com/collections/choosing-projects) bởi [@GitHub](https://github.com/github)\n- [Cách tìm lỗi ở dự án Mã nguồn mở đầu tiên của bạn để sửa](https://www.freecodecamp.org/news/finding-your-first-open-source-project-or-bug-to-work-on-1712f651e5ba/) bởi [@Shubheksha](https://github.com/Shubheksha)\n- [Chỉ lần đầu tiên](https://kentcdodds.com/blog/first-timers-only/) bởi [@kentcdodds](https://github.com/kentcdodds)\n- [Mang lòng tốt trở lại dự án Mã nguồn mở](https://web.archive.org/web/20201009150545/https://www.hanselman.com/blog/bring-kindness-back-to-open-source) bởi [@shanselman](https://github.com/shanselman)\n- [Bắt đầu sử dụng mã nguồn mở lần đầu tiên](https://www.nearform.com/blog/getting-into-open-source-for-the-first-time/) bởi [@mcdonnelldean](https://github.com/mcdonnelldean)\n- [Cách đóng góp cho dự án Mã nguồn mở](https://opensource.guide/how-to-contribute/) bởi [@GitHub](https://github.com/github)\n- [Cách tìm lỗi trong code của bạn](https://8thlight.com/blog/doug-bradbury/2016/06/29/how-to-find-bug-in-your-code.html) bởi [@dougbradbury](https://twitter.com/dougbradbury)\n- [Làm chủ Markdown](https://guides.github.com/features/mastering-markdown/) bởi [@GitHub](https://github.com/github)\n- [Nhiệm vụ đầu tiên: Trang cộng tác viên](https://medium.com/@forCrowd/first-mission-contributors-page-df24e6e70705#.2v2g0no29) bởi [@forCrowd](https://github.com/forCrowd)\n- [Cách thực hiện đóng góp Mã nguồn mở đầu tiên của bạn chỉ trong 5 phút](https://www.freecodecamp.org/news/how-to-make-your-first-open-source-contribution-in-just-5-minutes-aaad1fc59c9a/) bởi [@roshanjossey](https://github.com/Roshanjossey/)\n- [Hacktoberfest 2019: Cách bạn có thể nhận áo sơ mi miễn phí - ngay cả khi bạn chưa quen với lập trình](https://www.freecodecamp.org/news/hacktoberfest-2018-how-you-can-get-your-free-shirt-even-if-youre-new-to-coding-96080dd0b01b/) bởi [@quincylarson](https://www.freecodecamp.org/news/author/quincylarson/)\n- [Hướng dẫn sâu sắc về Mã nguồn mở](https://medium.com/codezillas/a-bitter-guide-to-open-source-a8e3b6a3c1c4) bởi [@ken_wheeler](https://medium.com/@ken_wheeler)\n- [Hướng dẫn từng bước cho nhà phát triển cơ sở để đóng góp cho dự án Mã nguồn mở lần đầu tiên](https://hackernoon.com/contributing-to-open-source-the-sharks-are-photoshopped-47e22db1ab86) bởi [@LetaKeane](https://hackernoon.com/u/letakeane)\n- [Tìm hiểu từng bước Git và GitHub (trên Windows)](https://medium.com/illumination/path-to-learning-git-and-github-be93518e06dc) bởi [@ows-ali](https://ows-ali.medium.com/)\n- [Tại sao lại là dự án Mã nguồn mở và làm như thế nào?](https://careerkarma.com/blog/open-source-projects-for-beginners/) bởi [@james-gallagher](https://careerkarma.com/blog/author/jamesgallagher/)\n- [Cách bắt đầu với Mã nguồn mở - bởi Sayan Chowdhury](https://www.hackerearth.com/getstarted-opensource/)\n- [Tôi nên đóng góp vào nguồn mở nào](https://kentcdodds.com/blog/what-open-source-project-should-i-contribute-to/) bởi Kent C. Dodds\n- [Hướng dẫn giới thiệu phong phú về Mã nguồn mở](https://developeraspire.hashnode.dev/an-immersive-introductory-guide-to-open-source) bởi [Franklin Okolie](https://twitter.com/DeveloperAspire)\n- [Bắt đầu với việc đóng góp cho mã nguồn mở](https://stackoverflow.blog/2020/08/03/getting-started-with-contributing-to-open-source/) bởi [Zara Cooper](https://stackoverflow.blog/author/zara-cooper/)\n- [Hướng dẫn cho người mới bắt đầu về đóng góp nguồn mở](https://workat.tech/general/article/open-source-contribution-guide-xmhf1k601vdj) bởi [Sudipto Ghosh](https://github.com/pydevsg)\n- [8 cách không dùng mã để đóng góp cho mã nguồn mở](https://opensource.com/life/16/1/8-ways-contribute-open-source-without-writing-code) bởi [OpenSource](https://twitter.com/OpenSourceWay)\n\n## Sử dụng Version Control\n- [Suy nghĩ như Git](http://think-like-a-git.net/) - Giới thiệu Git dành cho \"người mới bắt đầu nâng cao\" nhưng vẫn đang gặp khó khăn, nhằm cung cấp cho bạn một chiến lược đơn giản để thử nghiệm một cách an toàn với git.\n- [Dùng thử Git](https://try.github.io/) - Học Git miễn phí trong 15 phút từ trong trình duyệt của bạn.\n- [Sử dụng Git mỗi ngày](https://git-scm.com/docs/giteveryday) - Một bộ lệnh tối thiểu hữu ích cho Everyday Git.\n- [Oh shit, git!](https://ohshitgit.com/) - làm thế nào để thoát khỏi những lỗi phổ biến `git` được mô tả bằng tiếng Anh đơn giản; cũng có thể thử [Dangit, git!](https://dangitgit.com/) cho trang với từ ngữ nhẹ nhàng hơn \n- [Hướng dẫn Atlassian Git](https://www.atlassian.com/git/tutorials) - các hướng dẫn khác nhau về cách sử dụng `git`.\n- [GitHub Git Cheat Sheet](https://education.github.com/git-cheat-sheet-education.pdf) (PDF)\n- [freeCodeCamp's Tài nguyên Wiki trên Git](https://forum.freecodecamp.org/t/wiki-git-resources/13136)\n- [GitHub Flow](https://www.youtube.com/watch?v=juLIxo42A_s) (42:06) - GitHub nói về cách thực hiện một pull request.\n- [Tài nguyên học tập trên GitHub](https://docs.github.com/en/github/getting-started-with-github/git-and-github-learning-resources) - Tài nguyên học tập Git và GitHub.\n- [Pro Git](https://git-scm.com/book/en/v2) - Toàn bộ cuốn sách Pro Git, được viết bởi Scott Chacon và Ben Straub và được xuất bản bởi Apress.\n- [Git-it](https://github.com/jlord/git-it-electron) - Ứng dụng dành cho máy tính để bàn hướng dẫn từng bước Git.\n- [Flight Rules for Git](https://github.com/k88hudson/git-flight-rules) - Hướng dẫn về những việc cần làm khi có sự cố.\n- [Hướng dẫn Git cho người mới bắt đầu bằng tiếng Tây Ban Nha](https://platzi.github.io/git-slides/#/) - Hướng dẫn đầy đủ về các slide trên git và GitHub được giải thích bằng tiếng Tây Ban Nha. Una guía completa de diapositivas sobre git y GitHub explicadas en Español.\n- [Git Kraken](https://www.gitkraken.com/git-client) - Ứng dụng desktop `git` trực quan, đa nền tảng và tương tác để kiểm soát phiên bản.\n- [Git Tips](https://github.com/git-tips/tips) - Bộ sưu tập các mẹo và thủ thuật git được sử dụng phổ biến nhất.\n- [Git Best Practices](https://sethrobertson.github.io/GitBestPractices/) - Commit Often, Perfect Later, Publish Once: Các phương pháp hay nhất về Git.\n- [Hướng dẫn tương tác với Git](https://learngitbranching.js.org/) - Học Git một cách trực quan và tương tác nhất.\n\n## Sách về dự án Mã nguồn mở\n- [Producing Open Source Software](https://producingoss.com/) - Producing Open Source Software là một cuốn sách về khía cạnh con người của sự phát triển Nguồn Mở. Nó mô tả cách hoạt động của các dự án thành công, kỳ vọng của người dùng và nhà phát triển, và văn hóa của phần mềm miễn phí.\n- [Open Source Book Series](https://opensource.com/resources/ebooks) - Tìm hiểu thêm về Nguồn mở và phong trào Nguồn mở đang phát triển với danh sách đầy đủ các sách điện tử miễn phí từ https://opensource.com.\n- [Software Release Practice HOWTO](https://tldp.org/HOWTO/Software-Release-Practice-HOWTO/) - HOWTO này mô tả các phương pháp phát hành tốt cho Linux và các dự án Mã nguồn mở khác. Bằng cách làm theo các phương pháp này, bạn sẽ giúp người dùng xây dựng và sử dụng mã của bạn dễ dàng nhất có thể, đồng thời để các nhà phát triển khác hiểu mã của bạn và hợp tác với bạn để cải thiện mã.\n- [Open Sources 2.0 : The Continuing Evolution](https://archive.org/details/opensources2.000diborich) (2005) - Nguồn mở 2.0 là tập hợp các bài luận sâu sắc và kích thích tư duy của các nhà lãnh đạo công nghệ ngày nay, tiếp tục vẽ nên bức tranh tiến hóa được phát triển trong cuốn sách năm 1999, Nguồn mở: Tiếng nói từ cuộc cách mạng.\n- [The Architecture of Open Source Applications](http://www.aosabook.org/en/git.html) - Cho biết các khía cạnh khác nhau của Git hoạt động như thế nào dưới các trang bìa để kích hoạt quy trình công việc phân tán và nó khác với các hệ thống kiểm soát phiên bản khác (VCS) như thế nào.\n- [Open Sources: Voices from the Open Source Revolution](https://www.oreilly.com/openbook/opensources/book/) - Các bài luận của những người tiên phong về nguồn mở như Linus Torvalds (Linux), Larry Wall (Perl) và Richard Stallman (GNU).\n\n## Các sáng kiến ​​đóng góp nguồn mở\n- [Up For Grabs](https://up-for-grabs.net/) - Chứa các dự án có vấn đề thân thiện với người mới bắt đầu\n- [First Timers Only](https://www.firsttimersonly.com/) - Danh sách các lỗi được gắn nhãn \"chỉ dành cho lần đầu tiên\".\n- [First Contributions](https://firstcontributions.github.io/) - Thực hiện đóng góp Nguồn mở đầu tiên của bạn sau 5 phút. Một công cụ và hướng dẫn để giúp người mới bắt đầu với các đóng góp. [Nơi đây](https://github.com/firstcontributions/first-contributions) là mã nguồn GitHub cho trang web và cơ hội đóng góp cho chính kho lưu trữ.\n- [Hacktoberfest](https://hacktoberfest.digitalocean.com/) - Một chương trình khuyến khích đóng góp Nguồn mở. Kiếm những món quà như áo phông và nhãn dán bằng cách thực hiện ít nhất 4 yêu cầu kéo trong tháng 10.\n- [24 Pull Requests](https://24pullrequests.com) - 24 Yêu cầu kéo là một dự án nhằm thúc đẩy hợp tác Nguồn mở trong tháng 12.\n- [Ovio](https://ovio.org) - Một nền tảng có tuyển chọn các dự án thân thiện với cộng tác viên được tuyển chọn. Nó là một [công cụ tìm kiếm sự cố mạnh mẽ](https://ovio.org/issues) và cho phép bạn lưu các dự án và sự cố cho sau này.\n\n## Giấy phép\n<a rel=\"license\" href=\"https://creativecommons.org/licenses/by-sa/4.0/\"><img alt=\"Creative Commons License\" style=\"border-width:0\" src=\"https://licensebuttons.net/l/by-sa/4.0/88x31.png\" /></a><br />Dự án này được cấp phép theo <a rel=\"license\" href=\"https://creativecommons.org/licenses/by-sa/4.0/\">Creative Commons Attribution-ShareAlike 4.0 International License</a>.\n\n"
  },
  {
    "path": "README-pt-BR.md",
    "content": "<table>\n    <tr>\n        <!-- Do not translate this table -->\n        <td><a href=\"./README.md\"> English </a></td>\n        <td><a href=\"./README-MR.md\"> मराठी </a></td>\n        <td><a href=\"./README-BN.md\"> বাংলা </a></td>\n        <td><a href=\"./README-CN.md\"> 中文 </a></td>\n        <td><a href=\"./README-RU.md\"> русский </a></td>\n        <td><a href=\"./README-RO.md\"> Românesc </a></td>\n        <td><a href=\"./README-IT.md\"> Italiano </a></td>\n        <td><a href=\"./README-ES.md\"> Español </a></td>\n        <td><a href=\"./README-pt-BR.md\"> Português (BR) </a></td>\n        <td><a href=\"./README-DE.md\"> Deutsch </a></td>\n        <td><a href=\"./README-GR.md\"> Ελληνικά </a></td>\n        <td><a href=\"./README-FR.md\"> Français </a></td>\n        <td><a href=\"./README-TR.md\"> Turkish </a></td>\n        <td><a href=\"./README-KO.md\"> 한국어 </a></td>\n    </tr>\n</table>\n\n# Sejam bem-vindos novos contribuidores de Open Source!\n\n[![Pull Requests Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat)](http://makeapullrequest.com)\n[![first-timers-only Friendly](https://img.shields.io/badge/first--timers--only-friendly-blue.svg)](http://www.firsttimersonly.com/)\n[![Check Resources](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml/badge.svg)](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml)\n\nEsta é uma lista de links úteis para quem está começando com Open Source.\n\nSe você sabe de algum recurso extra que não esteja listado aqui, por favor envie-nos um Pull Request.\n\nSe você possui alguma dúvida ou comentário, por favor crie uma issue.\n\n**Conteúdo**\n\n- [Contribuindo com Open Source](#contribuindo-com-open-source)\n- [Pesquisas diretas no GitHub](#pesquisas-diretas-no-github)\n- [Ambiente de contribuidores da Mozilla](#ambiente-de-contribuidores-da-mozilla)\n- [Artigos úteis para novos contribuidores de Open Source](#artigos-úteis-para-novos-contribuidores)\n- [Usando ferramentas de Controle de Versões](#usando-ferramentas-de-controle-de-versões)\n- [Livros sobre Open Source](#livros-sobre-open-source)\n- [Iniciativas para contribuição em Open Source](#iniciativas-para-contribuição-em-open-source)\n- [Licença](#licença)\n\n## Contribuindo com Open Source\n\n- [O Guia Definitivo para Contribuições Open Source](https://medium.freecodecamp.org/the-definitive-guide-to-contributing-to-open-source-900d5f9f2282) por [@DoomHammerNG](https://twitter.com/DoomHammerNG)\n- [Uma Introdução ao Open Source](https://www.digitalocean.com/community/tutorial_series/an-introduction-to-open-source) - Tutoriais da DigitalOcean para te guiar ao sucesso nas contribuições aqui no GitHub.\n- [Issuehub.io](http://issuehub.pro/) - Uma ferramenta para filtrar problemas por rótulos e linguagens no GitHub.\n- [Code Triage](https://www.codetriage.com/) - Outra ferramenta muito boa para encontrar repositórios populares e problemas por linguagem.\n- [Awesome-for-beginners](https://github.com/MunGell/awesome-for-beginners) - Um repositório que relaciona projetos com ótimos bugs para novos contribuidores.\n- [Guias de Open Source](https://opensource.guide/) - Coleção de recursos para desenvolvedores, comunidades e empresas que desejam aprender como gerenciar e contribuir com projetos Open Source.\n- [45 Issues sobre \"O que Fazer e Não Fazer no GitHub\"](https://hackernoon.com/45-github-issues-dos-and-donts-dfec9ab4b612) - O que Fazer e Não Fazer no GitHub.\n- [Guias para GitHub](https://docs.github.com/en) - Guias básicos sobre como usar o GitHub de maneira eficiente.\n- [Contribua com Open Source](https://github.com/danthareja/contribute-to-open-source) - Use um projeto simulado para aprender como funciona o fluxo de contribuição de código no GitHub.\n- [Guias de Open Source para Empresas feitos pela Fundação Linux](https://www.linuxfoundation.org/resources/open-source-guides) - Guias de Open Source da Fundação Linux.\n- [Manual de Etiqueta para Open Source](https://css-tricks.com/open-source-etiquette-guidebook/) - Um Manual de Etiqueta para contribuições Open Source, escrito por Kent C. Dodds e Sarah Drasner.\n- [Recursos de A a Z para Estudantes](https://github.com/dipakkr/A-to-Z-Resources-for-Students) - Lista revisada de recursos e oportunidades para o aprendizado de novas linguagens de programação.\n- [Contribuindo com o seu Primeiro Projeto Open Source: Uma Abordagem Prática](https://blog.devcenter.co/contributing-to-your-first-open-source-project-a-practical-approach-1928c4cbdae) - Um passo-a-passo de como contribuir com o seu primeiro projeto Open Source por [Abati Adewale](https://www.acekyd.com).\n- [Pull Request Roulette](http://www.pullrequestroulette.com/) - Este site possui uma lista de Pull Requests submetidos para revisão em projetos Open Source no GitHub.\n- [\"Como Contribuir com um Projeto Open Source no GitHub\" por Egghead.io](https://egghead.io/courses/how-to-contribute-to-an-open-source-project-on-github) - Um vídeo com o passo-a-passo de como começar a contribuir com projetos Open Source no GitHub.\n\n## Pesquisas Diretas no GitHub\n\nPesquise por links diretos para issues no GitHub.\n\n- [is:issue is:open label:beginner](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Abeginner)\n- [is:issue is:open label:easy](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Aeasy)\n- [is:issue is:open label:first-timers-only](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Afirst-timers-only)\n- [is:issue is:open label:good-first-bug](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Agood-first-bug)\n- [is:issue is:open label:\"good first issue\"](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3A\"good+first+issue\")\n- [is:issue is:open label:starter](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Astarter)\n- [is:issue is:open label:up-for-grabs](https://github.com/search?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Aup-for-grabs)\n\n## Ambiente de Contribuidores da Mozilla\n\n- [Primeiros Bugs](https://bugzilla.mozilla.org/buglist.cgi?quicksearch=sw:%22[good%20first%20bug]%22&limit=0) - Bugs que desenvolvedores identificaram como ótima introdução ao projeto.\n- [Mentoria de Bugs](https://bugzilla.mozilla.org/buglist.cgi?quicksearch=mentor%3A%40) - Bugs que possuem um mentor disponível para te ajudar caso você encontre dificuldades enquanto trabalha em uma solução.\n- [Bugs Ahoy](http://www.joshmatthews.net/bugsahoy/) - Um site dedicado a encontrar bugs no Bugzilla.\n- [Firefox DevTools](http://firefox-dev.tools/) - Um site dedicado a bugs reportados para o DevTools no navegador Firefox.\n- [Start Mozilla](https://twitter.com/StartMozilla) - Uma conta no Twitter que publica issues apropriadas a novos contribuidores no ecossistema da Mozilla.\n\n## Artigos úteis para novos contribuidores\n\n- [Como escolher (e contribuir com) o seu primeiro projeto Open Source](https://github.com/collections/choosing-projects) por [@GitHub](https://github.com/github)\n- [Como encontrar seu primeiro bug para resolver em um projeto Open Source](https://medium.freecodecamp.org/finding-your-first-open-source-project-or-bug-to-work-on-1712f651e5ba#.slc8i2h1l) por [@Shubheksha](https://github.com/Shubheksha)\n- [Apenas para iniciantes](https://kentcdodds.com/blog/first-timers-only) por [@kentcdodds](https://github.com/kentcdodds)\n- [Tragam a cordialidade de volta ao Open Source](http://www.hanselman.com/blog/BringKindnessBackToOpenSource.aspx) por [@shanselman](https://github.com/shanselman)\n- [Mergulhando no Open Source pela primeira vez](https://www.nearform.com/blog/getting-into-open-source-for-the-first-time/) por [@mcdonnelldean](https://github.com/mcdonnelldean)\n- [Como contribuir com Open Source](https://opensource.guide/how-to-contribute/) por [@GitHub](https://github.com/github/opensource.guide)\n- [Como encontrar um bug no seu código](https://8thlight.com/insights/how-to-find-a-bug-in-your-code) por [@dougbradbury](https://twitter.com/dougbradbury)\n- [Dominando Markdown](https://docs.github.com/features/mastering-markdown/) por [@GitHubGuides](https://docs.github.com/en)\n- [Primeira missão: Página de Contribuidores](https://forcrowd.medium.com/first-mission-contributors-page-df24e6e70705#.2v2g0no29) por [@forCrowd](https://github.com/forCrowd)\n- [Como fazer a sua primeira contribuição com Open Source em apenas 5 minutos](https://medium.freecodecamp.org/how-to-make-your-first-open-source-contribution-in-just-5-minutes-aaad1fc59c9a) por [@roshanjossey](https://medium.freecodecamp.org/@roshanjossey)\n- [Hacktoberfest 2018: Como conseguir uma camisa grátis - mesmo com pouca experiência em programação](https://medium.freecodecamp.org/hacktoberfest-2018-how-you-can-get-your-free-shirt-even-if-youre-new-to-coding-96080dd0b01b) por [@quincylarson](https://medium.freecodecamp.org/@quincylarson)\n- [Um Guia Cruel de Open Source](https://medium.com/codezillas/a-bitter-guide-to-open-source-a8e3b6a3c1c4) por [@ken_wheeler](https://medium.com/@ken_wheeler)\n- [Um passo-a-passo para desenvolvedores júnior sobre como contribuir com Open Source pela primeira vez](https://hackernoon.com/contributing-to-open-source-the-sharks-are-photoshopped-47e22db1ab86) por [@LetaKeane](http://www.letakeane.com/)\n- [Aprenda Git e GitHub Passo a Passo (no Windows)](https://medium.com/@ows_ali/be93518e06dc) por [@ows-ali](https://medium.com/@ows_ali)\n\n## Usando ferramentas de Controle de Versões\n\n- [Think Like (a) Git](https://think-like-a-git.net/) - Introdução a Git para \"Iniciantes Avançados\" que ainda têm dificuldades, a fim de proporcionar uma estratégia simples para experimentar Git de maneira segura.\n- [Try Git](https://docs.github.com/en/get-started/quickstart/set-up-git) - Aprenda Git gratuitamente em 15 minutos a partir do seu navegador.\n- [Everyday Git](https://git-scm.com/docs/giteveryday) - Um conjunto de comandos do Git úteis para o dia-a-dia.\n- [Oh shit, git!](http://ohshitgit.com/) - Como consertar erros comuns em Git.\n- [Tutoriais de Git da Atlassian](https://www.atlassian.com/git/tutorials/) - Vários tutoriais sobre como usar `Git`.\n- [GitHub Git Cheat Sheet](https://education.github.com/git-cheat-sheet-education.pdf) (PDF)\n- [Recursos sobre Git por freeCodeCamp](https://www.freecodecamp.org/forum/t/wiki-git-resources/13136)\n- [GitHub Flow](https://www.youtube.com/watch?v=juLIxo42A_s) (42:06) - Conversa sobre como criar Pull Requests.\n- [Recursos de Aprendizagem de Git e GitHub](https://help.github.com/articles/git-and-github-learning-resources/)\n- [Pro Git](https://git-scm.com/book/en/v2) - Livro completo Pro Git, escrito por Scott Chacon e Ben Straub e publicado pela Apress.\n- [Git-it](https://github.com/jlord/git-it-electron) - Aplicativo Desktop com passo-a-passo sobre Git e GitHub.\n- [Regras de Voo para Git](https://github.com/k88hudson/git-flight-rules) - Um guia sobre o que fazer quando as coisas dão errado.\n- [Uma Introdução Compreensiva a Git e GitHub](https://codeburst.io/git-good-part-a-e0d826286a2a) - O guia que você precisa ler se você é iniciante em Git ou GitHub, escrito por Madhav Bahl. O guia cobre o uso do GitHub como um serviço além de conceitos sobre controle de versões com Git em detalhes.\n- [Guia de Git para Iniciantes em Espanhol](https://platzi.github.io/git-slides/#/) - Uma coleção completa de slides sobre Git e GitHub explicados em Espanhol.\n- [Git Kraken](https://www.gitkraken.com/git-client) - Aplicação desktop interativa e multiplataforma para controle de versões.\n\n## Livros sobre Open Source\n\n- [Produzindo Software Open Source](http://producingoss.com/) - Produzindo Software Open Source é um livro sobre o lado humano do Open Source. Descreve como projetos bem sucedidos funcionam, as expectativas dos usuários e desenvolvedores e a cultura do software livre.\n- [Série de Livros Open Source](https://opensource.com/resources/ebooks) - Aprenda mais sobre Open Source e o seu crescente movimento com esta lista de eBooks gratuitos em https://opensource.com.\n- [Boas Práticas para Lançamento de Software](http://en.tldp.org/HOWTO/Software-Release-Practice-HOWTO/) - Este tutorial descreve as boas práticas para lançamento de software para Linux e outros projetos Open Source. Ao seguir essas práticas você permitirá que usuários usem seu software com facilidade e que desenvolvedores entendam seu código e contribuam para melhorá-lo.\n- [Open Sources 2.0: O Desenvolvimento Constante](https://archive.org/details/opensources2.000diborich) (2005) - Open Source 2.0 é uma coleção de dissertações intuitivas e instigantes escritas pelos líderes atuais no mercado de tecnologia que continuam a pincelar a cena evolucionista que se desenvolveu no livro de 1999, Open Sources: As Vozes da Revolução.\n\n## Iniciativas para Contribuição em Open Source\n\n- [Up For Grabs](http://up-for-grabs.net/#/) - Contém projetos com ótimos problemas para iniciantes.\n- [First Timers Only](http://www.firsttimersonly.com/) - Uma lista de bugs rotulados como \"first-timers-only\".\n- [First Contributions](https://firstcontributions.github.io/) - Faça sua primeira contribuição Open Source em 5 minutos. Uma ferramenta e tutorial para ajudar iniciantes em suas contribuições.\n- [Hacktoberfest](https://hacktoberfest.digitalocean.com/) - Um programa para incentivar contribuições em Open Source. Ganhe brindes como camisas e adesivos ao abrir no mínimo 5 Pull Requests no mês de Outubro.\n- [24 Pull Requests](https://24pullrequests.com) - 24 Pull Requests é um projeto com intuito de promover colaborações em Open Source durante o mês de Dezembro.\n- [Django Girls](https://djangogirls.org/pt-br/) - Django Girls é uma organização sem fins lucrativos e uma comunidade que capacita e ajuda mulheres a organizar workshops de programação gratuitos de um dia, fornecendo ferramentas, recursos e suporte.\n\n## Licença\n\n<a rel=\"license\" href=\"http://creativecommons.org/licenses/by-sa/4.0/\"><img alt=\"Creative Commons License\" style=\"border-width:0\" src=\"https://i.creativecommons.org/l/by-sa/4.0/88x31.png\" /></a><br />Este trabalho é licenciado sob a <a rel=\"license\" href=\"http://creativecommons.org/licenses/by-sa/4.0/\">Licença Internacional Creative Commons Attribution-ShareAlike 4.0</a>.\n"
  },
  {
    "path": "README.md",
    "content": "<!-- Do not translate this -->\n<details>\n<summary>\n<strong> Read this guide in other languages </strong>\n</summary>\n    <ul>\n        <li><a href=\"./README.md\"> English </a></li>\n        <li><a href=\"./README-MR.md\"> मराठी </a></li>\n        <li><a href=\"./README-BN.md\"> বাংলা </a></li>\n        <li><a href=\"./README-CN.md\"> 中文 </a></li>\n        <li><a href=\"./README-RU.md\"> русский </a></li>\n        <li><a href=\"./README-RO.md\"> Românesc </a></li>\n        <li><a href=\"./README-IT.md\"> Italiano </a></li>\n        <li><a href=\"./README-ID.md\"> Indonesia </a></li>\n        <li><a href=\"./README-ES.md\"> Español </a></li>\n        <li><a href=\"./README-pt-BR.md\"> Português (BR) </a></li>\n        <li><a href=\"./README-DE.md\"> Deutsch </a></li>\n        <li><a href=\"./README-HE.md\"> עברית </a></li>\n        <li><a href=\"./README-GR.md\"> Ελληνικά </a></li>\n        <li><a href=\"./README-FR.md\"> Français </a></li>\n        <li><a href=\"./README-TR.md\"> Turkish </a></li>\n        <li><a href=\"./README-KO.md\"> 한국어 </a></li>\n        <li><a href=\"./README-JA.md\"> 日本語 </a></li>\n        <li><a href=\"./README-UZ.md\"> O'zbek</a></li>\n        <li><a href=\"./README-HI.md\"> हिंदी </a></li>\n        <li><a href=\"./README-FA.md\"> فارسی </a></li>\n        <li><a href=\"./README-UR.md\">اردو </a></li>\n        <li><a href=\"./README-AR.md\">اللغة العربية </a></li>\n        <li><a href=\"./README-TA.md\">தமிழ்</a></li>\n        <li><a href=\"./README-NE.md\">नेपाली</a></li>\n        <li><a href=\"./README-ML.md\">മലയാളം</a></li>\n    </ul>\n</details>\n<!-- Do not translate this -->\n\n# Welcome Newbie Open Source Contributors!\n\n[![Pull Requests Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat)](https://makeapullrequest.com)\n[![first-timers-only Friendly](https://img.shields.io/badge/first--timers--only-friendly-blue.svg)](https://www.firsttimersonly.com/)\n[![Check Resources](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml/badge.svg)](https://github.com/freeCodeCamp/how-to-contribute-to-open-source/actions/workflows/test.yml)\n\nThis is a list of resources for people who are new to contributing to Open Source.\n\nIf you find additional resources, please create a pull request.\n\nIf you have questions or comments, please create an issue.\n\n**Table of Contents**\n\n- [Contributing to Open Source in general](#contributing-to-open-source-in-general)\n- [Direct GitHub searches](#direct-github-searches)\n- [Mozilla's contributor ecosystem](#mozillas-contributor-ecosystem)\n- [Useful articles for new Open Source contributors](#useful-articles-for-new-open-source-contributors)\n- [Using Version Control](#using-version-control)\n- [Open Source books](#open-source-books)\n- [Open Source contribution initiatives](#open-source-contribution-initiatives)\n- [Open Source programs to participate in](#open-source-programs-to-participate-in)\n- [License](#license)\n\n## Contributing to Open Source in general\n\n> Articles and resources that discuss the world and culture of Open Source.\n\n- [The Definitive Guide to Contributing to Open Source](https://www.freecodecamp.org/news/the-definitive-guide-to-contributing-to-open-source-900d5f9f2282/) by [@DoomHammerNG](https://twitter.com/DoomHammerNG).\n- [An Intro to Open Source](https://www.digitalocean.com/community/tutorial_series/an-introduction-to-open-source) - Tutorials by DigitalOcean to guide you on your way to contribution success here on GitHub.\n- [Complete Guide on Open Source Contributions](https://www.youtube.com/playlist?list=PLR0CKdeR_FyscaxEksDVXc4UQvlOFLYS6) - YouTube tutorials playlist by \"Dev Sense\".\n- [Code Triage](https://www.codetriage.com/) - A tool for finding popular repositories and issues filtered by language.\n- [Forge Your Future with Open Source](https://pragprog.com/titles/vbopens/forge-your-future-with-open-source/) ($) - Book devoted to explaining open source, how to find a project, and how to start contributing. Inclusive of all roles in software development, not just programmers.\n- [Awesome-for-beginners](https://github.com/MunGell/awesome-for-beginners) - a GitHub repo that amasses projects with good bugs for new contributors, and applies labels to describe them.\n- [Open Source Guides](https://opensource.guide/) - Collection of resources for individuals, communities, and companies who want to learn how to run and contribute to an Open Source project.\n- [45 Github Issues Dos and Don’ts](https://hackernoon.com/45-github-issues-dos-and-donts-dfec9ab4b612) - Do's and Don'ts on GitHub.\n- [GitHub Guides](https://docs.github.com/en) - basic guides on how to use GitHub effectively.\n- [Contribute to Open Source](https://github.com/danthareja/contribute-to-open-source) - Learn the GitHub workflow by contributing code to a simulation project.\n- [Linux Foundation's Open Source Guides for the Enterprise](https://www.linuxfoundation.org/resources/open-source-guides) - The Linux Foundation's guides to Open Source projects.\n- [CSS Tricks An Open Source Etiquette Guidebook](https://css-tricks.com/open-source-etiquette-guidebook/) - An Open Source Etiquette Guidebook, written by Kent C. Dodds And Sarah Drasner.\n- [A to Z Resources for Students](https://github.com/dipakkr/A-to-Z-Resources-for-Students) - Curated list of resources and opportunities for college students to learn a new coding language.\n- [\"How to Contribute to an Open Source Project on GitHub\" by Egghead.io](https://egghead.io/courses/how-to-contribute-to-an-open-source-project-on-github) - A step-by-step video guide of how to start contributing to Open Source projects on GitHub.\n- [Contributing to Open Source: A Live Walkthrough from Beginning to End](https://medium.com/@kevinjin/contributing-to-open-source-walkthrough-part-0-b3dc43e6b720) - This walkthrough of an open source contribution covers everything from picking a suitable project, working on an issue, to getting the PR merged in.\n- [\"How to Contribute to Open Source Project\" by Sarah Drasner](https://css-tricks.com/how-to-contribute-to-an-open-source-project/) - They are focusing on the nitty-gritty of contributing a pull request (PR) to someone else’s project on GitHub.\n- [\"How to get started with Open Source\" by Sayan Chowdhury](https://www.hackerearth.com:443/getstarted-opensource/) - This article covers the resources for contributing to open source for beginners based on their favorite language interest.\n- [\"Browse good first issues to start contributing to open source\"](https://github.blog/2020-01-22-browse-good-first-issues-to-start-contributing-to-open-source/) - GitHub now helps you find good first issues to start contributing to open source.\n- [\"How to Contribute to Open Source Project\" by Maryna Z](https://rubygarage.org/blog/how-contribute-to-open-source-projects) - This comprehensive article is directed towards businesses (but still useful for individual contributors) where it talks about why, how, and what open-source projects to contribute to.\n- [\"start-here-guidelines\" by Andrei](https://github.com/zero-to-mastery/start-here-guidelines) - Lets Git started in the world of opensource, starting in the opensource playground. Especially designed for education and practical experience purposes.\n- [\"Getting Started with Open Source\" by NumFocus](https://github.com/numfocus/getting-started-with-open-source) - a GitHub repo that helps contributors overcome barriers to entry in open-source.\n- [\"Opensource-4-everyone\" by Chryz-hub](https://github.com/chryz-hub/opensource-4-everyone) - A repository on everything related to open source. This is a project to help with GitHub membership visibility, practice with basic and advance git commands, getting started with open source, and more.\n- [\"Open Advice\"](http://open-advice.org/) - Knowledge collection from a wide variety of Free Software projects. It answers the question what 42 prominent contributors would have liked to know when they started so you can get a head-start no matter how and where you contribute.\n- [\"GitHub Skills\"](https://skills.github.com) - Level up your skills with GitHub Skills. Our friendly bot will take you through a series of fun, practical projects to learn the skills you need in no time—and share helpful feedback along the way.\n- [\"Ten simple rules for helping newcomers become contributors to open projects\"](https://doi.org/10.1371/journal.pcbi.1007296) - This article covers rules based on studies of many communities and experiences of members, leaders, and observers.\n- [\"Step-by-Step guide to contributing on GitHub\"](https://www.dataschool.io/how-to-contribute-on-github/) - a step-by-step guide with supporting visuals and links regarding the whole process of contributing to an open source project.\n- [Open Source with Pradumna](https://github.com/Pradumnasaraf/open-source-with-pradumna) - This repo contains resources and materials to learn and get yourself started with Open Source, Git, and GitHub.\n- [\"FOSS Community Acronyms\"](https://github.com/d-edge/foss-acronyms) - This repo contains a list of abbreviations used within the FOSS (Free and Open Source) community, along with their definitions and usages.\n- [\"Open Source Fiesta - Open Source Fiesta\"](https://zubi.gitbook.io/open-source-fiesta/) - Step-by-step instruction on how to contribute to GitHub repositories, and includes a git command line cheatsheet.\n- [\"6 Best Practices to Manage Pull Request Creation and Feedback\"](https://doordash.engineering/2022/08/23/6-best-practices-to-manage-pull-request-creation-and-feedback/) from Jenna Kiyasu, software engineer at DoorDash Engineering.\n- [\"Contribute to the Open-Source Community\"](https://arijitgoswami.hashnode.dev/contribute-to-the-open-source-community) - Advantages of open-source software, how to understand the inner workings of an open-source project and make the first contribution.\n- [\"Complete Guide to Open Source - How to Contribute\"](https://www.youtube.com/watch?v=yzeVMecydCE) (41:52) - Learn why and how to contribute to open source software with Eddie Jaoude.\n\n## Direct GitHub searches\n\n> Search links that point directly to suitable issues to contribute to on GitHub.\n\n- [is:issue is:open label:beginner](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Abeginner&type=issues)\n- [is:issue is:open label:easy](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Aeasy&type=issues)\n- [is:issue is:open label:first-timers-only](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Afirst-timers-only&type=issues)\n- [is:issue is:open label:good-first-bug](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Agood-first-bug&type=issues)\n- [is:issue is:open label:\"good first issue\"](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22&type=issues)\n- [is:issue is:open label:starter](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Astarter&type=issues)\n- [is:issue is:open label:up-for-grabs](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Aup-for-grabs&type=issues)\n- [is:issue is:open label:easy-fix](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3Aeasy-fix&type=issues)\n- [is:issue is:open label:\"beginner friendly\"](https://github.com/search?q=is%3Aissue+is%3Aopen+label%3A%22beginner+friendly%22&type=issues)\n\n## Mozilla's contributor ecosystem\n\n> Mozilla pledges for a healthy internet and with it, has opportunities to contribute to its open-source projects.\n\n- [Good First Bugs](https://bugzilla.mozilla.org/buglist.cgi?quicksearch=good-first-bug) - bugs that developers have identified as a good introduction to the project.\n- [Codetribute](https://codetribute.mozilla.org/) - find your first code contribution with Mozilla \n- [MDN Web Docs](https://developer.mozilla.org/en-US/docs/MDN/Contribute) - help the MDN Web Docs team in documenting the web platform by fixing content issues and platform bugs.\n- [Mentored Bugs](https://bugzilla.mozilla.org/buglist.cgi?quicksearch=mentor%3A%40) - bugs that have a mentor assigned who will be there on IRC to help you when you get stuck while working on a fix.\n- [Bugs Ahoy](https://www.joshmatthews.net/bugsahoy/) - a site dedicated to finding bugs on Bugzilla.\n- [Firefox DevTools](https://firefox-dev.tools/) - a site dedicated to bugs filed for the developer tools in the Firefox browser.\n- [Start Mozilla](https://twitter.com/StartMozilla) - a Twitter account that tweets about issues fit for contributors new to the Mozilla ecosystem.\n\n## Useful articles for new Open Source contributors\n\n> Helpful articles and blogs directed at new contributors on how to get started.\n\n- [Contributing.md](https://contributing.md/starting-an-open-source-project/) - A series of guides on open source contribution\n- [Finding ways to contribute to open source on GitHub](https://docs.github.com/en/get-started/exploring-projects-on-github/finding-ways-to-contribute-to-open-source-on-github) by [@GitHub](https://github.com/github)\n- [How to choose (and contribute to) your first Open Source project](https://github.com/collections/choosing-projects) by [@GitHub](https://github.com/collections)\n- [How to find your first Open Source bug to fix](https://www.freecodecamp.org/news/finding-your-first-open-source-project-or-bug-to-work-on-1712f651e5ba/) by [@Shubheksha](https://github.com/Shubheksha)\n- [First Timers Only](https://kentcdodds.com/blog/first-timers-only) by [@kentcdodds](https://github.com/kentcdodds)\n- [Bring Kindness Back to Open Source](https://web.archive.org/web/20201009150545/https://www.hanselman.com/blog/bring-kindness-back-to-open-source) by [@shanselman](https://github.com/shanselman)\n- [Getting into Open Source for the First Time](https://www.nearform.com/blog/getting-into-open-source-for-the-first-time/) by [@mcdonnelldean](https://github.com/mcdonnelldean)\n- [How to Contribute to Open Source](https://opensource.guide/how-to-contribute/) by [@GitHub](https://github.com/github/opensource.guide)\n- [How to Find a Bug in Your Code](https://8thlight.com/insights/how-to-find-a-bug-in-your-code) by [@dougbradbury](https://twitter.com/dougbradbury)\n- [Mastering Markdown](https://docs.github.com/en/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax) by [@GitHub](https://github.com/github/docs)\n- [First mission: Contributors page](https://forcrowd.medium.com/first-mission-contributors-page-df24e6e70705) by [@forCrowd](https://github.com/forCrowd)\n- [How to make your first Open Source contribution in just 5 minutes](https://www.freecodecamp.org/news/how-to-make-your-first-open-source-contribution-in-just-5-minutes-aaad1fc59c9a/) by [@roshanjossey](https://github.com/Roshanjossey/)\n- [I just got my free Hacktoberfest shirt. Here’s a quick way you can get yours.](https://www.freecodecamp.org/news/i-just-got-my-free-hacktoberfest-shirt-heres-a-quick-way-you-can-get-yours-fa78d6e24307/) by [@quincylarson](https://www.freecodecamp.org/news/author/quincylarson/)\n- [A Bitter Guide To Open Source](https://medium.com/codezillas/a-bitter-guide-to-open-source-a8e3b6a3c1c4) by [@ken_wheeler](https://medium.com/@ken_wheeler)\n- [A junior developer’s step-by-step guide to contributing to Open Source for the first time](https://hackernoon.com/contributing-to-open-source-the-sharks-are-photoshopped-47e22db1ab86) by [@LetaKeane](https://hackernoon.com/u/letakeane)\n- [Learn Git and GitHub Step By Step (on Windows)](https://medium.com/illumination/path-to-learning-git-and-github-be93518e06dc) by [@ows-ali](https://ows-ali.medium.com/)\n- [Why Open Source and How?](https://careerkarma.com/blog/open-source-projects-for-beginners/) by [@james-gallagher](https://careerkarma.com/blog/author/jamesgallagher/)\n- [How to get started with Open Source - By Sayan Chowdhury](https://www.hackerearth.com/getstarted-opensource/)\n- [What open-source should I contribute to](https://kentcdodds.com/blog/what-open-source-project-should-i-contribute-to) by [@kentcdodds](https://twitter.com/kentcdodds)\n- [An immersive introductory guide to Open-source](https://developeraspire.hashnode.dev/an-immersive-introductory-guide-to-open-source) by [Franklin Okolie](https://twitter.com/DeveloperAspire)\n- [Getting started with contributing to open source](https://stackoverflow.blog/2020/08/03/getting-started-with-contributing-to-open-source/) by [Zara Cooper](https://stackoverflow.blog/author/zara-cooper/)\n- [Beginner's guide to open-source contribution](https://workat.tech/general/article/open-source-contribution-guide-xmhf1k601vdj) by [Sudipto Ghosh](https://github.com/pydevsg)\n- [8 non-code ways to contribute to open source](https://opensource.com/life/16/1/8-ways-contribute-open-source-without-writing-code) by [OpenSource](https://twitter.com/OpenSourceWay)\n- [What is Open Source Software? OSS Explained in Plain English](https://www.freecodecamp.org/news/what-is-open-source-software-explained-in-plain-english/) by [Jessica Wilkins](https://www.freecodecamp.org/news/author/jessica-wilkins/)\n- [How to Start an Open Source Project on GitHub – Tips from Building My Trending Repo](https://www.freecodecamp.org/news/how-to-start-an-open-source-project-on-github-tips-from-building-my-trending-repo/) by [@Rishit-dagli](https://github.com/Rishit-dagli)\n- [Finding Good First Issues](https://community.codenewbie.org/bdougie/finding-good-first-issues-33a6) by [Brian Douglas](https://community.codenewbie.org/bdougie)\n- [How can I become an Open Source contributor? (The ultimate guide)](https://medium.com/@juliafmorgado/how-can-i-become-an-open-source-contributor-the-ultimate-guide-d746e380e011) by [Julia Furst Morgado](https://medium.com/@juliafmorgado)\n\n## Using Version Control\n\n> Tutorials and resources of varying levels on using version control, typically Git and GitHub.\n\n- [Video tutorial for Git and Github by Harvard University](https://www.youtube.com/watch?v=NcoBAfJ6l2Q) - Tutorial by Harvard University, part of their CS50 Web Development course on understanding Git and GitHub and working with Git commands.\n- [Think Like (a) Git](https://think-like-a-git.net/) - Git introduction for \"advanced beginners\", but are still struggling, in order to give you a simple strategy to safely experiment with git.\n- [Quickstart - Set up Git](https://docs.github.com/en/get-started/quickstart/set-up-git) - Learn how to set up Git locally and set up authentication, along with next steps on your learning journey.\n- [Everyday Git](https://git-scm.com/docs/giteveryday) - A useful minimum set of commands for Everyday Git.\n- [Oh shit, git!](https://ohshitgit.com/) - how to get out of common `git` mistakes described in plain English; also see [Dangit, git!](https://dangitgit.com/) for the page without swears.\n- [Atlassian Git Tutorials](https://www.atlassian.com/git/tutorials) - various tutorials on using `git`.\n- [GitHub Git Cheat Sheet](https://education.github.com/git-cheat-sheet-education.pdf) (PDF)\n- [freeCodeCamp's Wiki on Git Resources](https://forum.freecodecamp.org/t/wiki-git-resources/13136)\n- [GitHub Flow](https://www.youtube.com/watch?v=juLIxo42A_s) (42:06) - GitHub talk on how to make a pull request.\n- [Quickstart - GitHub Learning Resources](https://docs.github.com/en/get-started/quickstart/git-and-github-learning-resources) - Git and GitHub learning resources.\n- [Pro Git](https://git-scm.com/book/en/v2) - The entire Pro Git book, written by Scott Chacon and Ben Straub and published by Apress.\n- [Git-it](https://github.com/jlord/git-it-electron) - Step by step Git tutorial desktop app.\n- [Flight Rules for Git](https://github.com/k88hudson/git-flight-rules) - A guide about what to do when things go wrong.\n- [Git Guide for Beginners in Spanish](https://platzi.github.io/git-slides/#/) - A complete guide of slides about git and GitHub explained in Spanish. Una guía completa de diapositivas sobre git y GitHub explicadas en Español.\n- [Git Kraken](https://www.gitkraken.com/git-client) - Visual, cross-platform, and interactive `git` desktop application for version control.\n- [Git Tips](https://github.com/git-tips/tips) - Collection of most commonly used git tips and tricks.\n- [Git Best Practices](https://sethrobertson.github.io/GitBestPractices/) - Commit Often, Perfect Later, Publish Once: Git Best Practices.\n- [Git Interactive Tutorial](https://learngitbranching.js.org/) - Learn Git in the most visual and interactive way.\n- [Git Cheat Sheets](https://devhints.io/?q=git) - A set of graphical cheat sheets on git.\n- [Complete Git and GitHub Tutorial](https://www.youtube.com/watch?v=apGV9Kg7ics) (1:12:39) - Full Git and GitHub walkthrough by [Kunal Kushwaha](https://www.youtube.com/channel/UCBGOUQHNNtNGcGzVq5rIXjw).\n- [A Tutorial Introduction to Git](https://git-scm.com/docs/gittutorial) - A Tutorial for Beginners by Git.\n- [First Aid Git](https://firstaidgit.io/#/) - A searchable collection of the most frequently asked Git questions. Answers for these questions were collected from personal experience, Stackoverflow, and the official Git documentation.\n- [Git by Susan Potter](https://www.aosabook.org/en/git.html) - Show how various technical aspects of Git work under the covers to enable distributed workflows, and how it differs from other version control systems (VCSs).\n- [Git Tutorial for Beginners: Learn Git in 1 Hour](https://www.youtube.com/watch?v=8JJ101D3knE) - A beginner friendly git video by Mosh that explain the fundmental commands and also uses intelligible illustration to aid comprehension.\n\n## Open Source books\n\n> Books on all things Open Source: The Culture, History, Best Practices, etc.\n\n- [Producing Open Source Software](https://producingoss.com/) - Producing Open Source Software is a book about the human side of Open Source development. It describes how successful projects operate, the expectations of users and developers, and the culture of free software.\n- [The Architecture of Open Source Applications](https://www.aosabook.org/en/index.html) - The authors of twenty-four open source applications explain how their software is structured, and why. From web servers and compilers to health record management systems, they are covered here to help you become a better developer.\n- [Open Source Book Series](https://opensource.com/resources/ebooks) - Learn more about Open Source and the growing Open Source movement with a comprehensive list of free eBooks from https://opensource.com.\n- [Software Release Practice HOWTO](https://tldp.org/HOWTO/Software-Release-Practice-HOWTO/) - This HOWTO describes good release practices for Linux and other Open-Source projects. By following these practices, you will make it as easy as possible for users to build your code and use it, and for other developers to understand your code and cooperate with you to improve it.\n- [Open Sources 2.0 : The Continuing Evolution](https://archive.org/details/opensources2.000diborich) (2005) - Open Sources 2.0 is a collection of insightful and thought-provoking essays from today's technology leaders that continues painting the evolutionary picture that developed in the 1999 book, Open Sources: Voices from the Revolution.\n- [Open Sources: Voices from the Open Source Revolution](https://www.oreilly.com/openbook/opensources/book/) - Essays from open-source pioneers such as Linus Torvalds (Linux), Larry Wall (Perl), and Richard Stallman (GNU).\n- [Code Review Anxiety Workbook](https://developer-success-lab.gitbook.io/code-review-anxiety-workbook-1) - Code Review Anxiety Workbook is for New contributors and seasoned contributor programmers. It describes more about managing anxiety when making pull requests and contributions to repositories.\n\n## Open Source contribution initiatives\n\n> List of initiatives that aggregate beginner friendly issues to work on or seasonal events.\n\n- [Up For Grabs](https://up-for-grabs.net/) - Contains projects with beginner-friendly issues.\n- [First Contributions](https://firstcontributions.github.io/) - Make your first Open Source contribution in 5 minutes. A tool and tutorial to help beginners get started with contributions. [Here](https://github.com/firstcontributions/first-contributions) is the GitHub source code for the site and opportunity to make a contribution to the repository itself.\n- [First Timers Only](https://www.firsttimersonly.com/) - A list of bugs that are labelled \"first-timers-only\".\n- [Hacktoberfest](https://hacktoberfest.digitalocean.com/) - A program to encourage Open Source contributions. Earn gifts like t-shirts and stickers by making at least 4 pull requests in the month of October.\n- [24 Pull Requests](https://24pullrequests.com) - 24 Pull Requests is a project to promote Open Source collaboration during the month of December.\n- [Ovio](https://ovio.org) - A platform with a curated selection of contributor-friendly projects. It has a [powerful issue search tool](https://ovio.org/issues) and let's you save projects and issues for later.\n- [Contribute-To-This-Project](https://github.com/Syknapse/Contribute-To-This-Project) - This is a tutorial to help first-time contributors to participate in a simple and easy project and get comfortable in using GitHub.\n- [Open Source Welcome Committee](https://www.oswc.is/) - The Open Source Welcome Committee (OSWC) helps newcomers join the extraordinary world of Open Source. Come submit your open-source projects with us!\n- [First Contributions](https://github.com/forwards/first-contributions) - This repo is a chopped-up, trimmed-down, and customised-for-RStudio version of the amazing first contributions repo. \n\n## Open Source programs to participate in\n\n> A program, internship, or fellowship hosted by a community to help match beginning contributors with mentors and resources to contribute to open source software projects.\n\n- [All Linux Foundation (LF) Mentorships](https://mentorship.lfx.linuxfoundation.org/#projects_all)\n- [Beginner friendly Open Source programs with their timelines](https://github.com/arpit456jain/Open-Source-Programs)\n- [Cloud Native Computing Foundation](https://events.linuxfoundation.org/kubecon-cloudnativecon-north-america/)\n- [FossAsia](https://fossasia.org)\n- [Free Software Foundation (FSF) Internship](https://www.fsf.org/volunteer/internships)\n- [Google Summer of Code](https://summerofcode.withgoogle.com/) - An annually run paid program by Google focused on bringing more student developers into open-source software development.\n- [Girlscript Summer of Code](https://gssoc.girlscript.tech/) - A three-month-long Open-Source Program conducted every summer by the Girlscript Foundation. With constant efforts, participants contribute to numerous projects under the extreme guidance of skilled mentors over these months. With such exposure, students begin to contribute to real-world projects from the comfort of their homes.\n- [Hacktoberfest](https://hacktoberfest.digitalocean.com) - An annual event hosted every October to encourage people to contribute to open source!\n- [Hyperledger Mentorship Program](https://wiki.hyperledger.org/display/INTERN) - If you’re into the blockchain, this is for you. You can contribute to Hyperledger. This mentorship program allows you to get practical exposure to Hyperledger open source development.You will be allotted mentors who are quite active in the Hyperledger developers community.\n- [LF Networking Mentorship](https://wiki.lfnetworking.org/display/LN/LFN+Mentorship+Program)\n- [Microsoft Reinforcement Learning](https://www.microsoft.com/en-us/research/academic-program/rl-open-source-fest/)\n- [Major League Hacking (MLH) Fellowship](https://fellowship.mlh.io/) - A remote internship alternative for aspiring technologists where they build, or contribute to open-source projects.\n- [Open Summer of Code](https://osoc.be/students)\n- [Open Mainframe](https://www.openmainframeproject.org/all-projects/mentorship-program) - Open Mainframe Project also has its own open-source program and the mentees will be able to expand their knowledge on the mainframe technology\n- [Outreachy](https://www.outreachy.org)\n- [Processing Foundation Internship](https://processingfoundation.org/fellowships/)\n- [Rails Girls Summer of Code](https://railsgirlssummerofcode.org/) - A global fellowship program for women and non-binary coders where they work on existing open-source projects and expand their skillset.\n- [Redox OS Summer of Code](https://www.redox-os.org/rsoc/) - The Redox OS Summer of Code is the primary use of donations to the Redox OS project. Students are selected who have already demonstrated a desire and ability to contribute to Redox OS\n- [Social Summer of Code](https://ssoc.devfolio.co/) - Social foundation offers this two-month long summer program for students to learn about the open-source culture and get involved in the community. Participants contribute to real-life projects under the guidance of experienced mentors.\n- [Season of KDE](https://season.kde.org/) - The Season of KDE, hosted by the KDE community, is an outreach program for all individuals across the world. KDE is an international free software community that develops free and open-source software and you can contribute to KDE through the Season of KDE program\n\n## License\n\n<a rel=\"license\" href=\"https://creativecommons.org/licenses/by-sa/4.0/\"><img alt=\"Creative Commons License\" style=\"border-width:0\" src=\"https://licensebuttons.net/l/by-sa/4.0/88x31.png\" /></a><br />This work is licensed under a <a rel=\"license\" href=\"https://creativecommons.org/licenses/by-sa/4.0/\">Creative Commons Attribution-ShareAlike 4.0 International License</a>.\n"
  }
]