-Now clone the forked repository to your machine. Go to your GitHub account, open the forked repository, click on the code button, then on SSH tab and then click the _copy to clipboard_ icon.
+Now clone the forked repository to your machine. Go to your GitHub account, open the forked repository, click on the code button, then on SSH tab and then click the _copy url to clipboard_ icon.
Open a terminal and run the following git command:
@@ -244,9 +242,4 @@ Now let's get you started with contributing to other projects. We've compiled a
| ----------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [GitHub Desktop](docs/gui-tool-tutorials/github-desktop-tutorial.md) | [Visual Studio 2017](docs/gui-tool-tutorials/github-windows-vs2017-tutorial.md) | [GitKraken](docs/gui-tool-tutorials/gitkraken-tutorial.md) | [Visual Studio Code](docs/gui-tool-tutorials/github-windows-vs-code-tutorial.md) | [Atlassian Sourcetree](docs/gui-tool-tutorials/sourcetree-macos-tutorial.md) | [IntelliJ IDEA](docs/gui-tool-tutorials/github-windows-intellij-tutorial.md) |
-This project is supported by:
-
-
-
-
](https://join.slack.com/t/firstcontributors/shared_invite/zt-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA)
-[](https://opensource.org/licenses/MIT)
-[](https://www.codetriage.com/roshanjossey/first-contributions)
-
-# First Contributions
-
-|
-
-## Fork this repository
-
-Fork this repo by clicking on the fork button on the top right of this page.
-This will create a copy of this repository in your account.
-
-## Clone the repository
-
-Now clone this repo to your machine.
-
-IMPORTANT: DO NOT CLONE THE ORIGINAL REPO. Go to your fork and clone it.
-
-To clone the repo, click on "Code" and then copy the string down below.
-
-
-
-Open the git bash application you just downloaded. It should look like the image down below if it's on a windows machine.
-
-
-
-Go to the folder that you want to save this project on by using this command
-
-```bash
-cd
-
-Use the string you copied in the step above to clone the repository using this command
-
-```bash
-git clone
-
-Go to the directory where the repo is and open it up on vs code to make your changes.
-
-
-
-## Create a branch
-
-Now create a branch by using this simple command. This command not only creates a branch for you but also lets you switch to that branch.
-
-```bash
-git checkout -b
-
-## Make necessary changes and commit those changes
-
-Now open `Contributors.md` file in a text editor, scroll to the bottom of the page and add your name to it, then save the file.
-
-Example: If your name is James Smith, It should look like this.
-
-\[James Smith](https://github.com/jamessmith)
-
-You can see that there are changes to Contributors.md by simply running this command
-
-```bash
-git status
-```
-
-
-
-Now commit those changes:
-
-First add the change you made to the staging area by using
-
-```bash
-git add file-name
-```
-
-Then write a commit message by sing this command
-
-```bash
-git commit -m "Add your-name to Contributors list"
-```
-
-Replace `
-
-To see if your commit has been made you can run a simple `git log --oneline` command.
-
-## Push changes to github
-
-Once you are done with the above steps you can push your changes by using this command
-
-```bash
-git push origin
-
-## Submit your changes for review
-
-If you go to your repository on github, you'll see `Compare & pull request` button. click on that button.
-
-
-
-Now submit the pull request.
-
-
-
-Soon I'll be merging all your changes into the master branch of this project. You will get a notification email once the changes have been merged.
-
-## Where to go from here?
-
-Congrats! You just completed the standard _fork -> clone -> edit -> PR_ workflow that you'll encounter often as a contributor!
-
-Celebrate your contribution and share it with your friends and followers by going to [web app](https://firstcontributions.github.io#social-share).
-
-You can join our slack team in case you need any help or have any questions. [Join slack team](https://join.slack.com/t/firstcontributors/shared_invite/zt-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA).
-
-### [Additional material](../additional-material/git_workflow_scenarios/additional-material.md)
-
-## Tutorials Using Other Tools
-
-[Back to main page](https://github.com/firstcontributions/first-contributions#tutorials-using-other-tools)
diff --git a/docs/cli-tool-tutorials/git-cli-tutorial-PL.md b/docs/cli-tool-tutorials/git-cli-tutorial-PL.md
new file mode 100644
index 00000000..c6b0f835
--- /dev/null
+++ b/docs/cli-tool-tutorials/git-cli-tutorial-PL.md
@@ -0,0 +1,124 @@
+[](https://github.com/ellerbrock/open-source-badges/)
+[
](https://join.slack.com/t/firstcontributors/shared_invite/enQtNjkxNzQwNzA2MTMwLTVhMWJjNjg2ODRlNWZhNjIzYjgwNDIyZWYwZjhjYTQ4OTBjMWM0MmFhZDUxNzBiYzczMGNiYzcxNjkzZDZlMDM)
+[](https://opensource.org/licenses/MIT)
+[](https://www.codetriage.com/roshanjossey/first-contributions)
+
+# First Contributions
+
+|
+
+Dodaj te zmiany do właśnie utworzonej gałęzi za pomocą polecenia `git add`:
+`git add Contributors.md`
+
+Teraz zatwierdź te zmiany za pomocą polecenia `git commit`:
+`git commit -m "Add your-name to Contributors list"`
+zastępując `your-name` swoim imieniem.
+
+-----
+
+# Push changes to github
+
+Wypchnij swoje zmiany za pomocą polecenia `git push`:
+
+```
+git push origin -u your-branch-name
+```
+
+zastępując `your-branch-name` nazwą gałęzi, którą utworzyłeś wcześniej.
+
+\remote: Support for password authentication was removed on August 13, 2021. Please use a personal access token instead. + remote: Please see [https://github.blog/2020-12-15-token-authentication-requirements-for-git-operations/](https://github.blog/2020-12-15-token-authentication-requirements-for-git-operations/) for more information. + fatal: Authentication failed for '[https://github.com/](https://github.com/)\+ Przejdź do [tutoriala GitHub](https://docs.github.com/en/authentication/connecting-to-github-with-ssh/adding-a-new-ssh-key-to-your-github-account) dotyczącego generowania i konfigurowania klucza SSH na swoim koncie. + +\/first-contributions.git/'\
](https://join.slack.com/t/firstcontributors/shared_invite/enQtNjkxNzQwNzA2MTMwLTVhMWJjNjg2ODRlNWZhNjIzYjgwNDIyZWYwZjhjYTQ4OTBjMWM0MmFhZDUxNzBiYzczMGNiYzcxNjkzZDZlMDM)
+[](https://opensource.org/licenses/MIT)
+[](https://www.codetriage.com/roshanjossey/first-contributions)
+
+# 첫 기여
+
+|
+
+이 변경 사항을 위에서 만든 branch에 추가 하기 위해 `git add`명령을 사용합니다:
+`git add Contributors.md`
+
+그리고 `git commit`명령으로 추가된 변경 사항들을 branch에 commit 합니다:
+`git commit -m "Add your-name to Contributors list`
+명령에서 `your-name` 부분을 여러분의 이름으로 변경해서 사용하세요.
+
+# github에 변경 사항을 Push 하기
+
+`git push` 명령으로 수정한 내용을 Push 합니다:
+
+```
+git push origin -u your-branch-name
+```
+
+위 명령에서 `your-branch-name` 부분에 위에서 만들었던 branch 이름으로 변경해서 사용하세요.
+
+remote: Support for password authentication was removed on August 13, 2021. Please use a personal access token instead. + remote: Please see https://github.blog/2020-12-15-token-authentication-requirements-for-git-operations/ for more information. + fatal: Authentication failed for 'https://github.com/+ SSH키 생성이 필요합니다. [GitHub's tutorial](https://docs.github.com/en/authentication/connecting-to-github-with-ssh/adding-a-new-ssh-key-to-your-github-account)를 참고하세요. + +/first-contributions.git/'
](https://join.slack.com/t/firstcontributors/shared_invite/zt-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA)
+[](https://opensource.org/licenses/MIT)
+[](https://www.codetriage.com/roshanjossey/first-contributions)
+
+# ആദ്യ സംഭാവനകൾ
+
+\|
+
+## ഈ റീപോസിറ്ററി Fork ചെയ്യുക
+
+ഈ പേജിന്റെ മുകളിലെ വലത് വശത്ത് കാണുന്ന **Fork** ബട്ടൺ അമർത്തി ഈ റീപോയെ Fork ചെയ്യുക.
+ഇത് നിങ്ങളുടെ GitHub അക്കൗണ്ടിൽ ഒരു പകർപ്പ് സൃഷ്ടിക്കും.
+
+## റീപോസിറ്ററി Clone ചെയ്യുക
+
+ഇപ്പോൾ നിങ്ങളുടെ **Fork ചെയ്ത റീപോ** നിങ്ങളുടെ കമ്പ്യൂട്ടറിലേക്ക് Clone ചെയ്യുക.
+
+ പ്രധാനമാണ്: **ഒറിജിനൽ റീപോ** Clone ചെയ്യരുത്. നിങ്ങളുടെ Fork ചെയ്തത് മാത്രം Clone ചെയ്യുക.
+
+Clone ചെയ്യാൻ “Code” അമർത്തി, താഴെ കാണുന്ന URL copy ചെയ്യുക.
+
+```bash
+git clone
](https://join.slack.com/t/firstcontributors/shared_invite/zt-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA)
+[](https://opensource.org/licenses/MIT)
+[](https://www.codetriage.com/roshanjossey/first-contributions)
+
+# Primeras Contribuciones
+
+|
+
+## Haz un fork de este repositorio
+
+Haz clic en el botón "Fork" en la esquina superior derecha de esta página para crear una copia de este repositorio en tu cuenta.
+
+## Clona tu repositorio
+
+Ahora clona ese repositorio en tu computadora.
+
+⚠️ IMPORTANTE: NO clones el repositorio original.
+
+Ve a tu fork y clónalo.
+
+Para hacerlo, haz clic en "Code" y copia el enlace.
+
+
+
+Abre la aplicación Git Bash que acabas de instalar. Debería lucir como la siguiente imagen si estás en Windows:
+
+
+
+Ve a la carpeta donde quieres guardar este proyecto usando el comando:
+
+`cd
+
+Usa el enlace copiado anteriormente para clonar tu repositorio:
+
+`git clone
+
+Ve al directorio recién clonado y ábrelo en Visual Studio Code para hacer tus cambios.
+
+
+
+## Crear una rama
+
+Ahora crea una nueva rama usando este comando:
+
+```
+git checkout -b
+
+## Realiza los cambios necesarios
+
+Abre el archivo `Contributors.md` en tu editor, ve al final del archivo y agrega tu nombre.
+
+Ejemplo:
+```md
+[James Smith](https://github.com/jamessmith)
+```
+
+Para verificar los cambios:
+
+```bash
+git status
+```
+
+
+
+Ahora haz commit de los cambios:
+
+Primero agrega el archivo:
+
+```bash
+git add Contributors.md
+```
+
+Después crea el commit:
+
+```bash
+git commit -m "Agrego mi nombre a la lista de contribuidores"
+```
+
+
+
+Para verificar el commit:
+
+```bash
+git log --oneline
+```
+
+## Sube tus cambios a GitHub
+
+```bash
+git push origin
+
+## Envía tu Pull Request
+
+Ve a tu repositorio en GitHub. Verás un botón que dice “Compare & pull request”. Haz clic allí.
+
+
+
+Completa el formulario y envía el Pull Request.
+
+
+
+Pronto tus cambios serán revisados e integrados al repositorio principal. Recibirás una notificación por correo.
+
+## ¿Y ahora qué?
+
+¡Felicidades! Has completado el flujo de trabajo clásico _fork → clone → editar → pull request_ que es común en el mundo del open source.
+
+Celebra tu contribución compartiéndola con tus amigos o en redes. También puedes unirte al equipo en Slack para resolver dudas:
+👉 [Únete al Slack](https://join.slack.com/t/firstcontributors/shared_invite/zt-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA)
+
+### [Material adicional](../additional-material/git_workflow_scenarios/additional-material.md)
+
+## Guías para otras herramientas
+
+[Volver a la página principal](https://github.com/firstcontributions/first-contributions/blob/main/translations/README.es.md#material-de-apoyo-para-otras-herramientas)
diff --git a/docs/cli-tool-tutorials/translations/Ukrainian/git-bash-windows-tutorial.ua.md b/docs/cli-tool-tutorials/translations/Ukrainian/git-bash-windows-tutorial.ua.md
new file mode 100644
index 00000000..dbcd5c70
--- /dev/null
+++ b/docs/cli-tool-tutorials/translations/Ukrainian/git-bash-windows-tutorial.ua.md
@@ -0,0 +1,142 @@
+[](https://github.com/ellerbrock/open-source-badges/)
+[
](https://join.slack.com/t/firstcontributors/shared_invite/zt-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA)
+[](https://opensource.org/licenses/MIT)
+[](https://www.codetriage.com/roshanjossey/first-contributions)
+
+# Перші внески
+
+|
+
+## Форкніть цей репозиторій
+
+Натисніть кнопку Fork у верхньому правому куті цієї сторінки.
+Це створить копію репозиторію у вашому акаунті.
+
+## Клонуйте репозиторій
+
+Тепер клонуйте репозиторій на ваш комп'ютер.
+
+ВАЖЛИВО: НЕ КЛОНУЙТЕ ОРИГІНАЛЬНИЙ РЕПОЗИТОРІЙ. Перейдіть до вашого форку і клонуте його.
+
+Щоб клонувати, натисніть на "Code" і скопіюйте запропонований рядок.
+
+
+
+Відкрийте програму git bash, яку ви щойно встановили. Вона має виглядати як на наступній картинці, якщо ви використовуєте операційну систему Windows.
+
+
+
+Перейдіть до папки, куди хочете зберегти проєкт, використовуючи наступну команду:
+
+```bash
+cd <папка>
+```
+
+
+
+Вставте скопійований раніше рядок і виконайте команду клонування:
+
+```bash
+git clone
+
+Перейдіть у директорію репозиторію та відкрийте його у VS Code для редагування.
+
+
+
+## Створіть гілку (branch)
+
+Використайте наступну просту команду для створення гілки. Ця команда не тільки створює нову гілку, а також переходить на цю гілку.
+
+```bash
+git checkout -b <назва-гілки>
+```
+
+Назвіть свою гілку у форматі `
+
+## Зробіть необхідні зміни і зафіксуйте їх (commit)
+
+Відкрийте файл `Contributors.md` у текстовому редакторі, додайте ваше ім'я внизу сторінки і збережіть файл:
+
+Приклад: якщо ваше ім’я — James Smith, результат повинен виглядати так.
+
+\[James Smith](https://github.com/jamessmith)
+
+Перевірте зміни командою:
+
+```bash
+git status
+```
+
+
+
+Зафіксуйте ці зміни:
+
+Спочатку додайте зміну, яку ви зробили, до області індексації (staging area), використовуючи команду:
+
+```bash
+git add ім'я_файлу
+```
+
+Потім напишіть повідомлення до коміту за допомогою цієї команди:
+
+```bash
+git commit -m "Add <ваше-ім'я> to Contributors list"
+```
+
+
+
+Щоб перевірити історію комітів:
+
+```bash
+git log --oneline
+```
+
+## Відправте зміни на GitHub
+
+Коли ви завершите виконання наведених вище кроків, ви можете надіслати свої зміни за допомогою цієї команди:
+
+```bash
+git push origin <назва-гілки>
+```
+
+
+
+## Надішліть запит для перевірки
+
+Перейдіть до вашого репозиторію на GitHub. Ви побачите кнопку "Compare & pull request". Натисніть її.
+
+
+
+Після цього відправте pull request.
+
+
+
+Незабаром ваші зміни буде об'єднано з основною гілкою проєкту. Ви отримаєте сповіщення електронною поштою після злиття вашої гілки з основною.
+
+## Що далі?
+
+Вітаємо! Ви щойно завершили стандартний процес: _fork -> clone -> edit -> PR_!
+
+Поділіться своєю участю з друзями або підпишіться на нашу спільноту [web app](https://firstcontributions.github.io#social-share).
+
+Приєднуйтесь до нашої Slack-групи, якщо у вас виникли питання або потрібна допомога: [Join slack team](https://join.slack.com/t/firstcontributors/shared_invite/zt-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA).
+
+### [Додаткові матеріали](../additional-material/git_workflow_scenarios/additional-material.md)
+
+## Інструкції для інших інструментів
+
+[Повернутись на головну сторінку](https://github.com/firstcontributions/first-contributions#tutorials-using-other-tools)
diff --git a/docs/gui-tool-tutorials/github-windows-intellij-tutorial.zh-cn.md b/docs/gui-tool-tutorials/github-windows-intellij-tutorial.zh-cn.md
new file mode 100644
index 00000000..4a5c5e8a
--- /dev/null
+++ b/docs/gui-tool-tutorials/github-windows-intellij-tutorial.zh-cn.md
@@ -0,0 +1,126 @@
+[](https://github.com/ellerbrock/open-source-badges/)
+[
](https://join.slack.com/t/firstcontributors/shared_invite/zt-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA)
+[](https://opensource.org/licenses/MIT)
+[](https://www.codetriage.com/roshanjossey/first-contributions)
+
+# First Contributions(第一次贡献)
+
+|
+
+点击页面右上角的 Fork 按钮 Fork 此仓库。这将在你的 GitHub 账户中创建一个此项目的副本。
+
+GitHub 会记录你 Fork 的仓库与原始仓库之间的关系。你可以把你的副本看作是一个工作副本。
+
+大多数顶层 GitHub 仓库(即不是 Fork 而来的)只有一小部分核心团队成员可以直接提交更改。其他所有贡献者必须 Fork 该仓库,修改后提交 Pull Request 请求将更改合并回主仓库。一旦主仓库管理员批准这些更改,它们将被合并,而你将瞬间收获名誉与财富!稍后我们会介绍如何创建 Pull Request。
+
+---
+
+## 克隆你的仓库
+
+
+
+下一步是将你的仓库克隆到本地,这样你就可以开始修改内容了。IntelliJ IDEA 需要你的仓库 URL,因此点击仓库页面上的 "Code" 按钮,然后点击“复制”图标。
+
+**注意:** 新手经常犯的一个错误是克隆了原始仓库而不是自己的 Fork 仓库。请确认你复制的是你自己的仓库地址。
+
+现在打开 IntelliJ IDEA。
+
+IntelliJ IDEA 允许你检出(Git 中的 clone)一个已有的仓库,并基于下载的内容创建新项目。
+
+在主菜单中选择 `VCS | Get from Version Control`,或者在没有打开项目时点击欢迎界面中的 `Get from Version Control`。
+
+在打开的对话框中,粘贴你仓库的远程地址(你也可以点击 “Test” 测试连接),或从左侧选择一个 VCS 托管服务。如果你已登录某个服务,它会自动列出你可克隆的仓库。
+
+点击 “Clone”。如果你想基于克隆的源代码创建 IntelliJ 项目,在确认对话框中点击 “Yes”。Git 根目录将自动设置为项目根目录。
+
+如果项目包含子模块,它们也会被克隆并注册为项目根。
+
+**重要提示:** 确保克隆的是你自己的 Fork 仓库,而不是原始仓库,否则不会生效。
+
+---
+
+## 创建分支
+
+在 Git 中,分支是一种强大的机制,允许你从主开发线中分离出来,比如开发一个新功能或为发布冻结某个版本等。
+
+在 IntelliJ IDEA 中,所有与分支相关的操作都可以在 Git 分支弹出窗口中完成。点击状态栏中的 Git 小部件,或按 `Ctrl+Shift+\`` 唤出它。
+
+当前检出的分支名称会显示在状态栏的 Git 小部件中。
+
+在弹出窗口中选择 `New Branch`。
+
+在弹出对话框中输入分支名称,确保勾选 “Checkout branch” 选项,这样你会自动切换到新建分支。
+
+新分支会从当前的 HEAD 开始。如果你想从某个旧提交创建分支,可以在 `Version Control` 工具窗口的 `Log` 选项卡(快捷键 Alt+9)中选择一个提交,然后右键选择 `New Branch`。
+
+---
+
+## 进行必要的修改
+
+打开 `Contributors.md` 文件,在文件中的任意位置添加你的名字。该文件使用的是 GitHub Flavored Markdown (GFM) 语法,是 Markdown 的一种扩展格式。
+
+你可以复制其他贡献者的格式,并修改成你的名字,以确保语法正确 —— 有时语法会比较严格。
+
+---
+
+## 提交并推送更改到 GitHub
+
+在 `Version Control` 工具窗口的 `Local Changes` 选项卡中,选择你要提交的文件或整个更改列表,按下 `Ctrl+K` 或点击工具栏上的 `Commit` 按钮。
+
+在弹出的提交对话框中,会列出你自上次提交以来的所有更改文件及新增文件。
+
+输入有意义的提交信息。
+
+你可以按 `Ctrl+M` 打开提交历史,从中选择最近用过的提交信息。
+
+你也可以在推送前随时修改提交信息。
+
+按 `Ctrl+Shift+K` 或从主菜单选择 `VCS | Git | Push`。弹出的 `Push Commits` 窗口会列出当前分支所有未推送的提交。
+
+---
+
+## 提交 Pull Request 请求代码审查
+
+此时你已完成了修改,但这些更改仍然只存在于你自己的仓库中。接下来我们将向原始仓库提交合并请求。
+
+在你的 GitHub 仓库页面上,你会看到一个 “Compare & pull request” 的按钮。点击它。
+
+
+
+接下来提交你的 Pull Request。
+
+
+
+不久之后,你的更改就会被合并到主仓库的 master 分支中。一旦合并成功,你会收到邮件通知。
+
+---
+
+## 接下来可以做什么?
+
+恭喜!你刚刚完成了标准的 _fork -> clone -> 编辑 -> PR_ 流程,这将是你未来开源贡献中非常常见的工作流程!
+
+庆祝一下你的首次贡献,并通过 [web app](https://firstcontributions.github.io#social-share) 与好友分享你的成就吧!
+
+如果你有任何问题,欢迎加入我们的 Slack 团队:[加入 Slack 团队](https://join.slack.com/t/firstcontributors/shared_invite/zt-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA)
+
+---
+
+### [附加资料](../additional-material/git_workflow_scenarios/additional-material.md)
+
+## 使用其他工具的教程
+[返回主页](https://github.com/firstcontributions/first-contributions#tutorials-using-other-tools)
diff --git a/docs/gui-tool-tutorials/translations/German/github-windows-vs-code-tutorial.de.md b/docs/gui-tool-tutorials/translations/German/github-windows-vs-code-tutorial.de.md
new file mode 100644
index 00000000..21d02d0d
--- /dev/null
+++ b/docs/gui-tool-tutorials/translations/German/github-windows-vs-code-tutorial.de.md
@@ -0,0 +1,119 @@
+[](https://github.com/ellerbrock/open-source-badges/)
+[
](https://join.slack.com/t/firstcontributors/shared_invite/zt-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA)
+[](https://opensource.org/licenses/MIT)
+[](https://www.codetriage.com/roshanjossey/first-contributions)
+
+# Erste Beiträge
+
+|
+
+Forke dieses Repository, indem Du oben rechts auf dieser Seite auf die Schaltfläche „Fork“ klickst. Dadurch wird eine Kopie dieses Repositorys in Ihrem GitHub-Konto erstellt.
+
+GitHub verfolgt die Beziehung zwischen Ihrem Repository und dem Repository, von dem Sie es geforkt haben. Sie können sich Ihr Repository als Arbeitskopie vorstellen.
+
+Die meisten Top-Level-Repositorys auf GitHub (d. h. solche, die nicht von einem anderen Repository geforkt wurden) haben ein kleines Kernteam von Personen, welche Änderungen direkt committen können. Alle anderen Mitwirkenden müssen das Repo forken und Änderungen im Fork vornehmen, dann einen Pull Request erstellen, um zu beantragen, dass ihre Änderungen wieder in das Top-Level-Repo übernommen werden. Wenn dem Administrator des Top-Level-Repos die Änderungen gefallen, werden sie übernommen und Du wirst sofort berühmt und reich! Mehr dazu später.
+
+## Das Repository klonen
+
+
+
+Der nächste Schritt besteht darin, Dein Repository auf Deinen Computer zu klonen, damit Du Änderungen vornehmen kannst. VS Code benötigt die URL Deines Repositories, also klicke auf die Schaltfläche „Code“ und dann auf das Symbol „In die Zwischenablage kopieren“.
+
+**ACHTUNG:** Ein Fehler, den neue Mitwirkende oft machen, ist, dass sie das Repository, von dem sie geforkt haben klonen an Stelle ihres eigenen. Überprüfe die Adressleiste Deines Browsers und stelle sicher, dass Du Dein Repository klonst.
+
+Öffne nun Visual Studio Code. Die Willkommensseite von VS Code wird angezeigt. Drücke `F1`, um die Leiste zu öffnen, die unten gezeigt wird. Beachte, dass bereits ein `>` (größer als) Zeichen im Textfeld steht. Du kannst auch über `CTRL-P` zum Eingabeaufforderung gelangen und das `>`-Zeichen eingeben.
+
+
+
+Vielleicht bemerkst Du, dass bereits einige obskure Befehle aufgelistet sind. Das sind meine zuletzt verwendeten Befehle. Also kümmere Dich nicht darum.
+
+
+
+Nun tippe `git clone`, nur `git` oder `clone` (es funktioniert wie eine Suche).
+Wähle den Eintrag `Git: Clone` aus und drücke `Enter`.
+
+
+
+Füge die URL Deines Repositories ein und drücke `Enter`. Dadurch wird der Datei-Explorer geöffnet, in dem Du auswählen kannst, wo das Git-Repository gespeichert werden soll.
+
+**Wichtig**: Achte darauf, dass es sich um das geforkte Repository handelt und nicht um das Original, da es sonst nicht funktioniert.
+
+
+
+Du solltest eine Statusmeldung in der unteren rechten Ecke von Visual Studio Code sehen. Nachdem der Vorgang abgeschlossen ist, kannst Du das geklonte Repository (jetzt ein Ordner auf Deinem Computer) mit den Schaltflächen im Dialogfeld öffnen.
+
+## Erstelle einen Branch
+
+Öffne die Befehls-Palette erneut, indem Du `F1` drückst. Tippe `branch` ein und wähle den Befehl `create branch` aus. Im nächsten Schritt gib den Namen Deines neuen Branches ein, zum Beispiel `add-david-kroell`. Drücke `Enter`, um den Branch zu erstellen. Der Branch ist auch bereits ausgecheckt. [Was bedeutet checkout?](https://www.git-scm.com/docs/git-checkout)
+
+
+
+## Nötige Änderungen vornehmen
+
+Öffne `Contributors.md` in einem Texteditor und füge Deinen Namen hinzu. Achte darauf, dass Du den Namen nicht am Anfang oder am Ende der Datei hinzufügst. Speichere die Datei anschließend.
+Diese Datei enthält GFM (GitHub Flavored Markdown), eine proprietäre Variante der Markdown-Syntax.
+
+Kopiere eine der anderen Mitwirkenden-Zeilen und passe sie mit Deinem Namen an, um sicherzustellen, dass die Syntax korrekt ist - sie kann schwierig sein. Speichere die Datei, um die Änderung zu registrieren.
+
+
+
+## Änderungen committen und zu GitHub pushen
+
+Auf der linken Seite von VS Code befindet sich ein Menü mit 5 Symbolen. Wähle das Versionskontroll-/Quellcodeverwaltungssymbol aus.
+(Shortcut: `Ctrl + Shift + G`)
+
+
+
+Der Datei-Explorer zeigt alle Dateien an, die seit dem letzten Commit geändert wurden. Wenn Du mit der Maus über die Dateien fährst und auf das `+` (Plus) klickst, werden die Dateien zum Staging hinzugefügt.
+
+
+
+Tippe etwas in die Zeile oben im Explorer und drücke das Häkchen. Die Änderungen sind jetzt in Deiner lokalen Kopie committed. Jetzt müssen die Änderungen zurück zu GitHub gepusht werden.
+
+
+
+Klicke auf das Drei-Punkte-Symbol, um das Menü zu öffnen, in dem Du die Option `Publish Branch` auswählst. Dadurch sollte ein Dialogfeld geöffnet werden, in dem Du Deine GitHub-Anmeldeinformationen eingeben kannst.
+
+
+
+## Änderungen zur Überprüfung absenden
+
+An diesem Punkt hast Du Deine Änderung abgeschlossen, aber sie befindet sich noch nur in Deinem Repository. Dieser Schritt zeigt Dir, wie Du eine Anfrage an den Administrator des Top-Level-Repos stellen kannst, um Deine Änderung zusammenzuführen.
+
+In Deinem Repository auf GitHub siehst Du neben der Benachrichtigung über den neuen Branch die Schaltfläche `Compare & pull request`. Klicke auf diese Schaltfläche.
+
+
+
+Sende jetzt den Pull Request ab.
+
+
+
+Ich werde nun Deine Änderungen in den Master-Branch dieses Projekts mergen. Du erhältst eine E-Mail, sobald dies geschehen ist.
+
+## Und jetzt?
+
+Herzlichen Glückwunsch! Du hast gerade den Standard-Workflow _fork -> clone -> edit -> PR_ abgeschlossen, den Du als Contributor häufig antreffen wirst!
+
+Feiere Deinen Beitrag zum Projekt und teile ihn mit Deinen Freunden und Followern über unsere [Web-App](https://firstcontributions.github.io#social-share).
+
+Du kannst dem Slack-Team beitreten, falls Du Hilfe benötigst oder Fragen hast. [Slack-Team beitreten](https://join.slack.com/t/firstcontributors/shared_invite/zt-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA).
+
+
+### [Weiterführende Materialien](../additional-material/git_workflow_scenarios/additional-material.md)
+
+## Tutorials mit anderen Tools
+[Zurück zur Hauptseite](https://github.com/firstcontributions/first-contributions#tutorials-using-other-tools)
diff --git a/docs/gui-tool-tutorials/translations/Urdu/github-desktop-urdu.md b/docs/gui-tool-tutorials/translations/Urdu/github-desktop-urdu.md
new file mode 100644
index 00000000..575efa05
--- /dev/null
+++ b/docs/gui-tool-tutorials/translations/Urdu/github-desktop-urdu.md
@@ -0,0 +1,95 @@
+ٹھیک ہے 👍 آپ نے جو متن دیا ہے وہ **First Contributions** گائیڈ ہے (GitKraken ایڈیٹر کے ساتھ)۔ میں اس کو اُردو میں ترجمہ کر رہا ہوں تاکہ آسانی سے سمجھ سکیں۔
+
+---
+
+# پہلی شراکتیں (First Contributions)
+
+|
](https://join.slack.com/t/firstcontributors/shared_invite/zt-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA)
[](https://opensource.org/licenses/MIT)
[](https://www.codetriage.com/roshanjossey/first-contributions)
@@ -118,8 +117,6 @@ Geluk! Jy het net die standaardvurk voltooi -> klone -> wysig -> PR- werkvloei w
Vier jou bydrae en deel dit met jou vriende en volgelinge deur na die [webprogram te](https://firstcontributions.github.io/#social-share) gaan .
-U kan by ons span aansluit indien u enige hulp nodig het of enige vrae het. [Sluit aan by 'n slapende span](https://join.slack.com/t/firstcontributors/shared_invite/zt-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA).
-
Kom ons begin met die bydrae tot ander projekte. Ons het 'n lys van projekte saamgestel met maklike probleme waarmee u kan begin. Kyk na [die lys van projekte in die web app](https://firstcontributions.github.io/#project-list).
### [Bykomende materiaal](../additional-material/git_workflow_scenarios/additional-material.md)
diff --git a/docs/translations/README.al.md b/docs/translations/README.al.md
index 82550ddc..43164224 100644
--- a/docs/translations/README.al.md
+++ b/docs/translations/README.al.md
@@ -114,7 +114,7 @@ Urime! Ti sapo ke kompletuar procesin _fork -> clone -> edit -> PR_ që do ta ha
Festoje kontributin tënd dhe ndaje me shokët dhe ndjekësit duke shkuar te [web aplikacioni](https://firstcontributions.github.io/#social-share).
-Ti mund të bashkohesh në ekipin tonë në slack nëse të duhet ndihmë ose nëse ke ndonjë pyetje. [Bashkohu ekipit në slack](https://join.slack.com/t/firstcontributors/shared_invite/zt-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA).
+Nëse dëshiron më shumë praktikë, shiko [kontributet e kodit](https://github.com/roshanjossey/code-contributions)
Tani të të ndihmojmë që të kontribuosh në projekte tjera. Ne kemi krijuar një listë projektesh me probleme të lehta tek të cilat mund të fillosh. Shiko [listën e projekteve në web apliacion](https://firstcontributions.github.io/#project-list).
diff --git a/docs/translations/README.am.md b/docs/translations/README.am.md
index af18eb6a..6ee13760 100644
--- a/docs/translations/README.am.md
+++ b/docs/translations/README.am.md
@@ -1,5 +1,4 @@
[](https://github.com/ellerbrock/open-source-badges/)
-[
](https://join.slack.com/t/firstcontributors/shared_invite/enQtNjkxNzQwNzA2MTMwLTVhMWJjNjg2ODRlNWZhNjIzYjgwNDIyZWYwZjhjYTQ4OTBjMWM0MmFhZDUxNzBiYzczMGNiYzcxNjkzZDZlMDM)
[](https://opensource.org/licenses/MIT)
[](https://www.codetriage.com/roshanjossey/first-contributions)
@@ -111,7 +110,7 @@ git push origin <የእርስዎ-branch-name>
አስተዋጾዎን ያክብሩ እና ለጓደኞችዎ እና ተከታዮችዎ ያካፍሉ ወደ [ዲህረ ገጾ በመሄድ](https://firstcontributions.github.io/#social-share).
-ማንኛውም እርዳታ ከፈለጉ ወይም ማንኛውም ጥያቄ ካለዎት የእኛን [Slack ቡድን](https://join.slack.com/t/firstcontributors/shared_invite/enQtMzE1MTYwNzI3ODQ0LTZiMDA2OGI2NTYyNjM1MTFiNTc4YTRhZTg4OWZjMzA0ZWZmY2UxYzVkMzI1ZmVmOWI4ODdkZWQwNTM2NDVmNjY) መቀላቀል ይችላሉ.
+ተጨማሪ ልምምድ ከፈለጉ በዚህ ሊንክ [code contributions](https://github.com/roshanjossey/code-contributions) ይግቡ.
አሁን ለሌሎች ፕሮጀክቶች በማበርከት እንጀምር. እርስዎ ሊጀምሩባቸው የሚችሉ ቀላል ጉዳዮች ያላቸውን የፕሮጀክቶች ዝርዝር አዘጋጅተናል።. [እኚህን ማስፈተሪያ ይከተሉ](https://firstcontributions.github.io/#project-list).
diff --git a/docs/translations/README.arm.md b/docs/translations/README.arm.md
index 95d8668c..79658426 100644
--- a/docs/translations/README.arm.md
+++ b/docs/translations/README.arm.md
@@ -118,11 +118,13 @@ git push -u origin your-branch-name
## Որտեղ գնալ այստեղից?
+
Շնորհավորում եմ Դուք հենց նոր ավարտեցիք ստանդարտ _fork -> clone -> edit -> pull request_ աշխատանքային հոսքը, որը հաճախ կհանդիպեք որպես ներդրող!
Նշեք ձեր ներդրումը և կիսվեք այն ձեր ընկերների և հետևորդների հետ՝ գնալով [վեբ հավելված](https://firstcontributions.github.io/#social-share).
-Եթե ցանկանում եք ավելի շատ փորձել, ստուգեք [կոդի ներդրումները](https://github.com/roshanjossey/code-contributions).
+Եթե ցանկանում եք ավելի շատ փորձ ձեռք բերել, տեսեք [ծածկագրի ներդրումները](https://github.com/roshanjossey/code-contributions)։
+
Հիմա եկեք սկսենք ձեր ներդրումն ունենալ այլ նախագծերում: Մենք կազմել ենք հեշտ խնդիրներ ունեցող նախագծերի ցանկ, որոնցից կարող եք սկսել: Ստուգեք [վեբ հավելվածի նախագծերի ցանկը](https://firstcontributions.github.io/#project-list).
diff --git a/docs/translations/README.assamese.md b/docs/translations/README.assamese.md
index f1c6f8e2..a652bb71 100644
--- a/docs/translations/README.assamese.md
+++ b/docs/translations/README.assamese.md
@@ -8,7 +8,7 @@
এই প্ৰকল্পই আৰম্ভণকাৰীসকলৰ বাবে প্ৰথম অৱদানটো সহজ আৰু পোষকভাৱে কৰিবলৈ সহায় কৰে। যদি আপুনি আপোনাৰ প্রথম অৱদানটো কৰিবলৈ বিচাৰে, তলত দিয়া পদক্ষেপসমূহ অনুসৰণ কৰক।
-যদি আপুনি command lineৰ সৈতে আৰামদায়ক নোহোৱাঁ, GUI tools ব্যৱহাৰ কৰি ইয়াত tutorial আছে।
+যদি আপুনি command lineৰ সৈতে আৰামদায়ক নোহোৱাঁ, GUI tools ব্যৱহাৰ কৰি ইয়াত টিউট’ৰিয়েল আছে।
@@ -144,10 +144,11 @@ Pull Request জমা দিয়ক
আপোনাৰ অৱদান উদযাপন কৰক আৰু আপোনাৰ বন্ধু আৰু অনুসাৰকসকলৰ সৈতে ইয়াক শেয়াৰ কৰক [web app](https://firstcontributions.github.io/#social-share).
-আপুনি আমাৰ Slack দলত যোগদান কৰিব পাৰে যদি আপোনাৰ সহায়ৰ প্ৰয়োজন হয় বা কোনো প্ৰশ্ন থাকে। [Join slack team](https://join.slack.com/t/firstcontributors/shared_invite/zt-2vqegkew0-ZuzGM1LO33C6Ts4nZyat1Q).
+যদি আপুনি অধিক অনুশীলন কৰিব বিচাৰে, [code contributions](https://github.com/roshanjossey/code-contributions) পৰীক্ষা কৰক।
এতিয়া আপোনাক আন প্ৰকল্পত অৱদান কৰিবলৈ আৰম্ভ কৰা যাক। আমি সহজ সমস্যাসমূহ সহ কিছু প্ৰকল্পৰ তালিকা সংকলন কৰিছো যাৰ সহায়ত আপুনি আৰম্ভ কৰিব পাৰে। [ৱেব এপত প্ৰকল্পসমূহৰ তালিকা পৰীক্ষা কৰক](https://firstcontributions.github.io/#project-list).
+
### [অতিৰিক্ত সামগ্ৰী](additional-material/git_workflow_scenarios/additional-material.md)
## অন্য সঁজুলিসমূহ ব্যৱহাৰ কৰি টিউট'ৰিয়েলসকল
diff --git a/docs/translations/README.aze.md b/docs/translations/README.aze.md
index a13191fd..8b5dab09 100644
--- a/docs/translations/README.aze.md
+++ b/docs/translations/README.aze.md
@@ -1,5 +1,4 @@
[](https://github.com/ellerbrock/open-source-badges/)
-[
](https://join.slack.com/t/firstcontributors/shared_invite/zt-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA)
[](https://opensource.org/licenses/MIT)
[](https://www.codetriage.com/roshanjossey/first-contributions)
diff --git a/docs/translations/README.bg.md b/docs/translations/README.bg.md
index ccc582c6..8ee8bc65 100644
--- a/docs/translations/README.bg.md
+++ b/docs/translations/README.bg.md
@@ -115,7 +115,6 @@ git push origin
](https://join.slack.com/t/firstcontributors/shared_invite/zt-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA)
[](https://opensource.org/licenses/MIT)
[](https://www.codetriage.com/roshanjossey/first-contributions)
diff --git a/docs/translations/README.ca.md b/docs/translations/README.ca.md
index e22cb82a..52fd4303 100644
--- a/docs/translations/README.ca.md
+++ b/docs/translations/README.ca.md
@@ -107,7 +107,7 @@ Enhorabona! Acabes de completar el procés de treball principal que et trobaràs
Ara, celebra la teva contribució i comparteix-la amb els teus amics i seguidors anant a [la web](https://firstcontributions.github.io/#social-share).
-Podeu unir-vos al nostre equip d'*slack* en cas de que necessiteu ajuda o tingueu alguna pregunta. [Unir-se a l'equip d'slack](https://join.slack.com/t/firstcontributors/shared_invite/zt-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA).
+Si vols contribuir al projecte, pots començar amb aquesta [guia per contribuir al codi](https://github.com/roshanjossey/code-contributions).
A continuació, et pots preparar per contribuir a altres projectes. Hem reunit una llista de projectes amb tasques (*issues*) pendents fàcils per tal de poder començar. Fes un cop d'ull a [la llista de projectes aquí](https://firstcontributions.github.io/#project-list).
diff --git a/docs/translations/README.de.md b/docs/translations/README.de.md
index e433d3a0..93e10e53 100644
--- a/docs/translations/README.de.md
+++ b/docs/translations/README.de.md
@@ -1,120 +1,166 @@
-[](https://github.com/ellerbrock/open-source-badges/)
+[](https://github.com/firstcontributions/open-source-badges)
[](https://opensource.org/licenses/MIT)
[](https://www.codetriage.com/roshanjossey/first-contributions)
-# Erste Beiträge
-
+# First Contributions
-Aller Anfang ist schwer. Gerade dann, wenn wir gemeinsam an etwas arbeiten, will niemand etwas Falsches tun. Aber Open Source dreht sich um Kooperation und lebt von den Beiträgen vieler Freiwilliger. Deshalb haben wir es uns zur Aufgabe gemacht, neuen Mitgliedern in der Open-Source-Gemeinde ihre ersten Schritte so einfach wie möglich zu machen.
+Dieses Projekt zielt darauf ab, Anfängern den Einstieg zu erleichtern und sie bei ihrem ersten Beitrag zu unterstützen. Wenn du deinen ersten Beitrag leisten möchten, befolge die folgenden Schritte.
-Natürlich helfen die vorhandenen Artikel und Videoanleitungen. Aber was kann besser sein, als es einfach einmal auszuprobieren mit dem Wissen, dass man nichts kaputt machen kann? Dieses Projekt will Anfängern zeigen, wie sie möglichst einfach ihren ersten Beitrag leisten. Bedenke: Je entspannter du bist, desto besser lernst du. Wenn du deinen ersten Beitrag leisten möchtest, folge diesen einfachen Schritten. Wir versprechen dir, es wird Spaß machen.
+_Wenn du nicht weißt wie man das Terminal/CMD bedient, [hier findest du Anleitungen für GUI Tools.](#Anleitungen-für-andere-Tools)_
-Wenn du Git noch nicht installiert hast, [installiere es](https://help.github.com/articles/set-up-git/)
+
-## Repository forken
+#### Wenn du Git nicht auf deinem System installiert hast, [installiere es](https://...github.com/en/get-started/quickstart/set-up-git).
-Forke das Repository durch das Anklicken der Schaltfläche "Fork". Dadurch erhältst du deine eigene Version des Projektes in deinem Profil.
+## Forke dieses Repository
-## Repository klonen
+Forke dieses Repository indem du auf den Fork Button oben auf dieser Seite klickst.
+Dies wird eine Kopie dieses Repository's in deinem Account erstellen.
-
+## Klone das Repository
-Klone das Repository auf deinen Computer. Klicke auf die Schaltfläche "Clone or download" und anschließend auf das "copy to clipboard"-Symbol.
+
-Öffne eine Kommandozeile und gib den folgenden git-Befehl ein:
+Klone jetzt das geforkte Repository auf deinen Computer. Gehe zu deinem Github Account, öffne das geforkte Repository, drücke auf den Code Button, dann auf den SSH Tab und dann drücke auf das _copy url to clipboard_ icon.
-```
-git clone "Deine kopierte URL"
+Öffne ein Terminal Fenster und führe den folgenden Git Befehl aus:
+
+```bash
+git clone "kopierte url"
```
-Statt 'Deine kopierte URL' (ohne Anführungszeichen) füge die Repository-URL aus dem vorherigen Schritt ein.
+wobei "kopierte url" (ohne die Anführungszeichen) die url zu diesem Repository ist (deine Fork von diesem Projekt). Im vorherigen Schritt siehst du wie du diese erhälst .
-
+
-Beispiel:
+Zum Beispiel:
-```
-git clone https://github.com/dein-Name/first-contributions.git
+```bash
+git clone git@github.com:das-bist-du/erster-Beitrag.git
```
-An der Stelle 'dein-Name' muss dein GitHub-Nutzername stehen. Mit diesem Befehl kopierst du den Inhalt deines first-contributions-Repository von GitHub auf deinen Computer.
+wobei `das-bist-du` dein Github Nutzername ist. Hier kopierst du den Inhalt des first-contributions Repository's auf Github auf deinen Computer.
-## Erstelle einen Branch
+## Erstelle einen Zweig
-Wechsle zum Repository-Verzeichnis auf deinem Computer (falls du es nicht schon getan hast).
+Wechsle zum Repository Ordner (wenn du nicht bereits dort bist):
-```
+```bash
cd first-contributions
```
-Erstelle nun einen Branch mit dem Befehl `git checkout`:
+Erstelle nun einen Zweig, indem du den `git switch` Befehl benutzst:
-```
-git checkout -b
+
+Wenn du in den Projektordner gehst und den Befehl `git status`, ausführst werden dir die Änderungen angezeigt.
+
+Füge diese Änderungen nun zu dem Zweig hinzu den du gerade erstellt hast, indem du den Befehl `git add` ausführst.
+
+```bash
git add Contributors.md
```
-Nun committest du deine Änderungen mit `git commit`:
+Jetzt commite diese Änderungen mit dem `git commit` Befehl:
-```
-git commit -m "Add remote: Support for password authentication was removed on August 13, 2021. Please use a personal access token instead. + remote: Please see https://github.blog/2020-12-15-token-authentication-requirements-for-git-operations/ for more information. + fatal: Authentication failed for 'https://github.com/+ Gehe zu [GitHub's tutorial](https://...github.com/en/authentication/connecting-to-github-with-ssh/adding-a-new-ssh-key-to-your-github-account) wie du einen ssh Key zu deinem Account hinzufügst und konfigurierst. + Außerdem, kannst du 'git remote -v' ausführen um deine Remote Addresse anzuzeigen. + + Wenn es so aussieht: +/first-contributions.git/'
origin https://github.com/your-username/your_repo.git (fetch) + origin https://github.com/your-username/your_repo.git (push)+ + ändere es mit diesem Befehl: + ```bash + git remote set-url origin git@github.com:dein-nutzername/dein_repo.git + ``` + Ansonsten wirst du noch immer aufgefordert Passwort und Benutzername einzugeben und bekommst einen Authentifizierungs Fehler. +
+## Reiche deine Änderungen für ein Review ein
-Erstelle einen Pull Request indem du auf die Schaltfläche `Create pull request` klickst.
+Wenn du jetzt zu deinem Repository auf Github gehts, wirst du einen `Compare & pull request` Knopf sehen. Drücke diesen Knopf.
-
+
-Roshan Jossey wird nun deine Änderungen in den Master Branch dieses Projekts mergen. Du erhältst eine E-Mail, sobald dies geschehen ist.
+Jetzt, reiche deine Pull-Request ein.
-## Wie geht es weiter?
+
-Glückwunsch! Du hast so eben den Standard-Workflow _Fork -> Clone -> Edit -> Pull Request_ beendet, der dir als Mitwirkender häufig begegnen wird.
+Bald werde ich alle deine Änderungen in den Haupt-Zweig dieses Projektes mergen. Du wirst eine Benachrichtigungs Email bekommen sobald die Änderungen gemerged wurden.
-Feiere deinen Beitrag zum Projekt und teile ihn mit deinen Freunden und Followern über unsere [Web-App](https://firstcontributions.github.io/#social-share).
+## Was nun?
-Wenn Du noch mehr üben möchtest, schau Dir das [Code-Contributions Repository] (https://github.com/roshanjossey/code-contributions) an.
-Falls du jetzt zu anderen Projekten beitragen möchtest, dann haben wir für dich eine Liste von einfachen, ersten Issues zusammengestellt, an denen du arbeiten kannst. Diese Projekt-Liste findest du [in unserer Web-App](https://firstcontributions.github.io/#project-list).
+Gratulation! Du hast gerade den Standard _Forken -> Klonen -> Bearbeiten -> Pull-Request_ Workflow durchgeführt, dem du als Beitragender oft begegnen wirst!
-## Tutorials mit anderen Tools
+Feier deinen Beitrag und teile in mit deinen Freunden und Followern indem du hier drückst [web app](https://firstcontributions.github.io/#social-share).
+
+Wenn du gerne mehr Übung hättest, schau dir [code contributions](https://github.com/roshanjossey/code-contributions) an.
+
+Jetzt los gehts, mit Beiträgen zu anderen Projekten. Wir haben eine Liste von Projekten mit leichten Fehlern für Einsteiger bereitgestellt. Schau dir [die Liste der Projekte in der Web-App an](https://firstcontributions.github.io/#project-list) an.
+
+### [Zusätzliches Material](../additional-material)
+
+## Anleitungen für andere Tools
| Dieses Projekt wird unterstützt von:
+
+
+
+
+
-En caso de no tener instalado Git en tu equipo, te dejo una para [guia]( https://git-scm.com/book/es/v2/Inicio---Sobre-el-Control-de-Versiones-Instalaci%C3%B3n-de-Git) para instalarlo.
+En caso de no tener instalado Git en tu equipo, te dejo una [guia]( https://git-scm.com/book/es/v2/Inicio---Sobre-el-Control-de-Versiones-Instalaci%C3%B3n-de-Git) para instalarlo.
## Has un "Fork" de este repositorio
@@ -23,15 +23,15 @@ Presiona el boton "fork" de este repositorio en la parte superior derecha de la
-Ahora clona el repositorio al que le hiciste un fork previamente, el URL del repositorio deberia estar asi `https://github.com/
@@ -39,7 +39,7 @@ Por ejemplo:
```
git clone https://github.com/
@@ -82,12 +91,35 @@ reemplazando `remote: El soporte para la autenticación de contraseña se eliminó el 13 de agosto de 2021. Utiliza un token de acceso personal en su lugar. + remote: Consulta [https://github.blog/2020-12-15-token-authentication-requirements-for-git-operations/](https://github.blog/2020-12-15-token-authentication-requirements-for-git-operations/) para obtener más información. + fatal: Fallo en la autenticación para '[https://github.com/](https://github.com/)+ Ve al [tutorial de GitHub](https://docs.github.com/en/authentication/connecting-to-github-with-ssh/adding-a-new-ssh-key-to-your-github-account) sobre cómo generar y configurar una clave SSH en tu cuenta. + + Además, es posible que desees ejecutar `git remote -v` para verificar tu dirección remota. + + Si se ve algo como esto: +/first-contributions.git/'
origin [https://github.com/tu-usuario/tu_repo.git] (fetch) + origin [https://github.com/tu-usuario/tu_repo.git] (push)+ + + cámbialo usando este comando: + ```bash + git remote set-url origin git@github.com:tu-usuario/tu_repo.git + ``` + De lo contrario, aún se te pedirá un nombre de usuario y contraseña y obtendrás un error de autenticación. +
<add-your-name> بإسم الفرع اللي انت لسة عامله .remote: Support for password authentication was removed on August 13, 2021. Please use a personal access token instead. + remote: Please see https://github.blog/2020-12-15-token-authentication-requirements-for-git-operations/ for more information. + fatal: Authentication failed for 'https://github.com/+ أسهل طريقة لحل المشكلة انك تعمل ssh key وتحطه علي GitHub + [GitHub's Tutorial - Create an ssh key](https://docs.github.com/en/authentication/connecting-to-github-with-ssh/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent) + [GitHub's tutorial - adding ssh key to your account](https://docs.github.com/en/authentication/connecting-to-github-with-ssh/adding-a-new-ssh-key-to-your-github-account) + بكده هتكون authenticated و مش هيكون عندك مشكلة لما تعمل push + + تقدر تتاكد انك بترفع علي الريبو الصح لما تكتب في ال + ```bash + git remote -v + ``` + لو ظهرلك كده: +/first-contributions.git/'
origin https://github.com/your-username/your_repo.git (fetch) + origin https://github.com/your-username/your_repo.git (push)+ يبقي معندكش مشكلة + غير كده تقدر تغير ال remote address كده + ```bash + git remote set-url origin git@github.com:your-username/your_repo.git + ``` +
](https://join.slack.com/t/firstcontributors/shared_invite/zt-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA)
[](https://opensource.org/licenses/MIT)
[](https://www.codetriage.com/roshanjossey/first-contributions)
@@ -117,8 +116,6 @@ Well done! Ye jus' completed th' standard _fork -> clone -> edit -> PR_ workflow
Celebrate yer contribution 'n share it wit' yer hearties 'n followers by goin' t' [web app](https://firstcontributions.github.io/#social-share).
-Ye could join our slack crew in case ye needs any help or 'ave any riddles. [Join our slack crew](https://join.slack.com/t/firstcontributors/shared_invite/zt-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA).
-
Now let's get ye started wit' contributin' t' other projects. We've compiled a list o' projects wit' easy issues ye can get started on. Check out [th' list o' projects in web app](https://firstcontributions.github.io/#project-list).
### [Additional material](../additional-material/git_workflow_scenarios/additional-material.md)
diff --git a/docs/translations/README.es.md b/docs/translations/README.es.md
index 56cbc176..aaefd123 100644
--- a/docs/translations/README.es.md
+++ b/docs/translations/README.es.md
@@ -1,5 +1,4 @@
[](https://github.com/ellerbrock/open-source-badges/)
-[
](https://join.slack.com/t/firstcontributors/shared_invite/zt-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA)
[](https://opensource.org/licenses/MIT)
[](https://www.codetriage.com/roshanjossey/first-contributions)
@@ -83,7 +82,7 @@ Ahora haz un *commit* sobre estos cambios ejecutando el comando `git commit`:
```
git commit -m "Add
](https://join.slack.com/t/firstcontributors/shared_invite/zt-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA)
[](https://opensource.org/licenses/MIT)
[](https://www.codetriage.com/roshanjossey/first-contributions)
diff --git a/docs/translations/README.fil.md b/docs/translations/README.fil.md
index e4b18c7b..fb0a0aec 100644
--- a/docs/translations/README.fil.md
+++ b/docs/translations/README.fil.md
@@ -1,131 +1,126 @@
[](https://github.com/ellerbrock/open-source-badges/)
-[
](https://join.slack.com/t/firstcontributors/shared_invite/zt-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA)
[](https://opensource.org/licenses/MIT)
[](https://www.codetriage.com/roshanjossey/first-contributions)
# Mga Unang Kontribusyon
-Nilalayon ng proyektong ito na gawing simple at gabayan ang paraan ng paggawa ng mga nagsisimula sa kanilang unang kontribusyon. Kung gusto mong gawin ang iyong unang kontribusyon, sundin ang mga hakbang sa ibaba.
+Makakatulong ang proyektong ito na gawing mas simple at magsilbing gabay sa paggawa ng mga gustong magbigay ng kanilang unang kontribusyon. Kung gusto magkaroon ng unang kontribusyon, sundin ang mga hakbang sa ibaba.
-_Kung hindi ka komportable sa command line, [narito ang mga tutorial gamit ang GUI tool.](#tutorials-using-other-tools)_
+_Kung hindi ka komportable sa paggamit ng command line, [narito ang mga tutorial gamit ang GUI tool.](#tutorials-using-other-tools)_
-#### Kung wala kang git sa iyong makina, [i-install ito](https://docs.github.com/en/get-started/quickstart/set-up-git).
+#### Kung wala kang Git sa iyong computer, [i-install ito](https://docs.github.com/en/get-started/quickstart/set-up-git).
-## I-fork ang repositoryong ito
+## I-fork ang repository ito
-I-fork ang repository na ito sa pamamagitan ng pag-click sa fork button sa tuktok ng page na ito.
-Gagawa ito ng kopya ng repositoryong ito sa iyong account.
+I-fork ang repository na ito sa pamamagitan ng pag-click sa _fork button_ sa kanang itaas ng page na ito.
+Gagawa ito ng kopya ng _repository_ sa iyong _account_.
-## I-clone ang repositoryo
+## I-clone ang _repository_
-Ngayon i-clone ang forked repository sa iyong makina. Pumunta sa iyong GitHub account, buksan ang forked repository, i-click ang code button at pagkatapos ay i-click ang _copy to clipboard_ icon.
+Ngayon, i-clone ang _forked repository_ sa iyong _computer_. Pumunta sa iyong _GitHub account_, buksan ang _forked repository_, i-click ang _code button_ at pagkatapos ay i-click ang _copy to clipboard_ icon.
Magbukas ng terminal at patakbuhin ang sumusunod na git command:
```
-git clone "url na kinopya mo lang"
+git clone "url na kakakopya mo lang"
```
-kung saan ang "url na kinopya mo lang" (nang walang mga panipi) ay ang url sa repositoryong ito (ang iyong tinidor ng proyektong ito). Tingnan ang mga nakaraang hakbang para makuha ang url.
+ang "url na kakakopya mo lang" (tanggalin ang "") ay ang url ng iyong _forked repository_.Tingnan ang mga nakaraang hakbang para makuha ang url.
Halimbawa:
```
-git clone https://github.com/this-is-you/first-contributions.git
+git clone https://github.com/username/first-contributions.git
```
-kung saan ang `this-is-you` ay ang iyong GitHub username. Dito mo kinokopya ang mga nilalaman ng repositoryo ng mga unang kontribusyon sa GitHub sa iyong computer.
+ang `username` ay ang iyong GitHub username. Dito mo napunta ang mga laman ng kinopya mong _repository_ ng mga unang kontribusyon sa GitHub sa iyong _computer_.
-## Gumawa ng sangay
+## Gumawa ng _branch_
-Baguhin sa direktoryo ng repositoryo sa iyong computer (kung wala ka pa roon):
+Pumunta sa _directory_ ng _repository_ sa iyong _computer_ (kung wala ka pa roon, i-type ito sa _terminal_):
```
cd first-contributions
```
-Ngayon lumikha ng isang sangay gamit ang utos na `git switch`:
+Ngayon, gumawa ng isang _branch_ gamit ang _command_ na `git switch`:
```
-git switch -c your-new-branch-name
+git switch -c pangalan-ng-branch
```
Halimbawa:
```
-git switch -c add-alonzo-church
+git switch -c add-juan-delacruz
```
-## Gumawa ng mga kinakailangang pagbabago at gawin ang mga pagbabagong iyon
+## Ilagay ang mga gusto mong baguhin sa _repository_
-Ngayon buksan ang `Contributors.md` file sa isang text editor, idagdag ang iyong pangalan dito. Huwag idagdag ito sa simula o dulo ng file. Ilagay ito kahit saan sa pagitan. Ngayon, i-save ang file.
+Ngayon, buksan ang `Contributors.md` _file_ sa isang _text editor_ at idagdag ang iyong pangalan (maaari mong gayahin na lang ang gawa ng iba). Iwasang ilagay ito sa pinaka-simula o dulo ng _file_. Ilagay ito kahit saan sa gitna ng _file_. I-save ang _file_ kapag nailagay na.
-Kung pupunta ka sa direktoryo ng proyekto at isagawa ang command na `git status`, makikita mong may mga pagbabago.
+Kung pupunta ka sa _directory_ ng proyekto at i-type ang _command_ na `git status`, makikita mo yung mga nabago mo sa `Contributors.md`.
-Idagdag ang mga pagbabagong iyon sa sangay na nilikha mo lamang gamit ang utos na `git add`:
+Idagdag ang mga _file_ na nabago mo sa _branch_ na ginawa mo kanina gamit ang _command_ na `git add`:
```
git add Contributors.md
```
-Ngayon gawin ang mga pagbabagong iyon gamit ang utos na `git commit`:
+I-commit ang mga _files_ na iyon gamit ang _command_ na `git commit`:
```
-git commit -m "Add your-name to Contributors list"
+git commit -m "Add iyong-pangalan to Contributors list"
```
-Ngayon gawin ang mga pagbabagong iyon gamit ang utos na `git commit`:
+## I-push ang mga _files_ na _nabago_ sa GitHub
-## I-push ang mga pagbabago sa GitHub
-
-Itulak ang iyong mga pagbabago gamit ang command na `git push`:
+I-push ang mga nabago mong _files_ gamit ang command na `git push`:
```
-git push -u origin your-branch-name
+git push -u origin pangalan-ng-branch
```
-pinapalitan ang `your-branch-name` ng pangalan ng branch na ginawa mo kanina.
+Ang `pangalan-ng-branch` ay pangalan ng branch na ginawa mo kanina.
remote: Inalis ang suporta para sa pagpapatotoo ng password noong Agosto 13, 2021. Mangyaring gumamit na lang ng personal na access token. - remote: Pakitingnan ang https://github.blog/2020-12-15-token-authentication-requirements-for-git-operations/ para sa karagdagang impormasyon. - nakamamatay: Nabigo ang pagpapatotoo para sa 'https://github.com/- Pumunta sa [tutorial ng GitHub](https://docs.github.com/en/authentication/connecting-to-github-with-ssh/adding-a-new-ssh-key-to-your-github-account) sa pagbuo at pag-configure ng SSH key sa iyong account. +/first-contributions.git/'
remote: Support for password authentication was removed on August 13, 2021. Please use a personal access token instead. + remote: Please see https://github.blog/2020-12-15-token-authentication-requirements-for-git-operations/ for more information. + fatal: Authentication failed for 'https://github.com//first-contributions.git/'+ Pumunta sa [tutorial ng GitHub](https://docs.github.com/en/authentication/connecting-to-github-with-ssh/adding-a-new-ssh-key-to-your-github-account) sa paggawa at pag-configure ng SSH key sa iyong account.
-Ngayon isumite ang kahilingan sa paghila.
+Ngayon, baguhin ang ilang _checkboxes_ sa _description textarea_, at i-submit ang _pull request_.
-Sa lalong madaling panahon, pagsasamahin ko ang lahat ng iyong mga pagbabago sa pangunahing sangay ng proyektong ito. Makakatanggap ka ng email ng notification kapag napagsama na ang mga pagbabago.
+Ime-merge ko ang lahat ng mga nabago mo sa _main branch_ ng proyektong ito. Makakatanggap ka ng _email notification_ kapag na-merge ko na ito.
-## Saan pupunta mula dito?
+## Saan na pagkatapos?
-Congrats! Nakumpleto mo lang ang karaniwang _fork -> clone -> edit -> pull request_ workflow na madalas mong makaharap bilang isang contributor!
+Congrats! Nakumpleto mo lang ang karaniwang _fork -> clone -> edit -> pull request_ workflow na madalas mong gagamitin bilang isang _contributor_!
-Ipagdiwang ang iyong kontribusyon at ibahagi ito sa iyong mga kaibigan at tagasubaybay sa pamamagitan ng pagpunta sa [web app](https://firstcontributions.github.io/#social-share).
+Ipakita ang iyong kontribusyon sa iyong mga kaibigan at tagasubaybay at magpunta sa [web app](https://firstcontributions.github.io/#social-share).
-Maaari kang sumali sa aming slack team kung kailangan mo ng anumang tulong o may anumang mga katanungan. [Sumali sa slack team](https://join.slack.com/t/firstcontributors/shared_invite/zt-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA).
-
-Ngayon simulan na natin ang pag-aambag sa iba pang mga proyekto. Nag-compile kami ng isang listahan ng mga proyekto na may mga madaling isyu na maaari mong simulan. Tingnan ang [listahan ng mga proyekto sa web app](https://firstcontributions.github.io/#project-list).
+Ngayon, pwede ka nang gumawa ng kontribusyon sa iba pang mga proyekto! Gumawa kami ng isang listahan ng mga proyekto na may mga madadaling gawing _issues_ na pwede mong gawin. Tingnan ang [listahan ng mga proyekto sa web app](https://firstcontributions.github.io/#project-list).
### [Karagdagang materyal](additional-material/git_workflow_scenarios/additional-material.md)
diff --git a/docs/translations/README.fr.md b/docs/translations/README.fr.md
index a46ebcc7..713672f9 100644
--- a/docs/translations/README.fr.md
+++ b/docs/translations/README.fr.md
@@ -10,27 +10,27 @@ C'est toujours compliqué la première fois que l'on fait quelque chose. La peur
Lire des articles et des tutoriels peut aider, mais qu'y a-t-il de mieux que d'essayer sans pouvoir faire d'erreurs ? Ce projet a pour ambition de fournir des conseils et simplifier la manière dont les apprentis font leur première contribution. Souvenez-vous : plus vous êtes serein, mieux vous apprenez. Si vous aspirez à faire votre première contribution, suivez tout simplement les étapes suivantes. Promis, ce sera amusant.
-
+
-Si vous n'avez pas git sur votre ordinateur, [ installez-le ]( https://help.github.com/articles/set-up-git/ ).
+Si vous n'avez pas encore Git installé sur votre machine, [ installez-le ]( https://help.github.com/articles/set-up-git/ ).
-## Embranchez ce répertoire (aussi appelé un Fork)
+## Faire un fork de ce dépôt
-Embranchez ce répertoire en cliquant sur le bouton de fork en haut de la page.
-Cela va créer une copie du répertoire sur votre compte.
+Forkez ce dépôt en cliquant sur le bouton *fork* en haut de cette page.
+Cela créera une copie de ce dépôt dans votre propre compte GitHub
## Clonez ce répertoire
-Maintenant, clonez ce répertoire sur votre ordinateur. Cliquez sur le bouton clone puis cliquez sur l'icône *copier dans le presse-papier*.
+Maintenant, clonez ce répertoire sur votre ordinateur. Allez sur votre compte GitHub, ouvrez le dépôt forké, cliquez sur le bouton *Code*, puis sur l’onglet *SSH* et enfin sur l’icône *copier dans le presse-papiers*.
-Ouvrez une invite de commande (si vous êtes sous Windows) ou un terminal (si vous êtes sous MacOS ou Linux) et exécutez les commandes git suivantes :
+Ouvrez une invite de commande (si vous êtes sous Windows) ou un terminal (si vous êtes sous MacOS ou Linux) et exécutez la commande git suivante :
```
git clone "l'url que vous venez de copier"
```
-où "l'url que vous venez de copier" (sans les guillemets) est l'url du répertoire. Voir la section précédente afin d'obtenir l'url.
+où "l'url que vous venez de copier" (sans les guillemets) est l'url du dépôt forké. Revoir les étapes précédentes pour obtenir l’URL exacte.
@@ -38,7 +38,7 @@ Par exemple :
```
git clone https://github.com/votre-nom-d-utilisateur/first-contributions.git
```
-où `votre-nom-d-utilisateur` est votre nom d'utilisateur GitHub. Ici vous êtes en train de copier le contenu du répertoire `first-contributions` depuis GitHub sur votre ordinateur.
+où `votre-nom-d-utilisateur` est votre nom d'utilisateur GitHub. Ici vous êtes en train de copier le contenu du dépôt `first-contributions` depuis GitHub sur votre ordinateur.
## Créez une branche
@@ -56,42 +56,77 @@ Par exemple :
```
git checkout -b add-koffi-sani
```
-(Le nom de la branche n'a pas besoin de contenir le terme *add*, mais c'est raisonnable de l'inclure parce que l'objectif de cette branche est d'ajouter votre nom à une liste.)
+(Le nom de la branche n'a pas besoin de contenir le terme *add*, mais il est mieux de l'inclure car l'objectif de cette branche est d'ajouter votre nom à une liste.)
-## Effectuez les modifications nécessaires et engagez-les
+
+
+Si vous ouvrez l'invite de commande et que vous exécutez la commande `git status`, vous verrez qu'il y a des modifications. Ajoutez ces modifications à la branche que vous venez de créer avec la commande `git add` :
```
git add Contributors.md
```
-Maintenant engagez ces modifications avec la commande `git commit`:
+Maintenant faites un commit de ces modifications avec la commande `git commit`:
```
git commit -m "Add remote: Support for password authentication was removed on August 13, 2021. Please use a personal access token instead. remote: Please see https://github.blog/2020-12-15-token-authentication-requirements-for-git-operations/ for more information. fatal: Authentication failed for 'https://github.com/+Suivez le tutoriel GitHub pour générer et configurer une clé SSH sur votre compte. -/first-contributions.git/'
+Vous pouvez également exécuter git remote -v pour vérifier votre adresse distante.
-Maintenant soumettez la demande de tirage.
+Si elle ressemble à ceci :
-
+origin https://github.com/ton-nom-utilisateur/ton_repo.git (fetch) origin https://github.com/ton-nom-utilisateur/ton_repo.git (push)+Modifiez-la avec cette commande : -Sous peu j'aurai fusionné toutes vos modifications avec la branche main de ce projet. Vous recevrez un mail de notification dès que la fusion sera effectuée. +``` +git remote set-url origin git@github.com:ton-nom-utilisateur/ton_repo.git +``` +Sinon, vous continuerez de devoir entrer votre mot de passe et vous obtiendrez une erreur d’authentification. -La branche main de votre embranchement ne subira pas de modification à cet instant. Pour que votre embranchement soit synchronisé avec le mien, suivez les étapes suivantes. +
+
+Soumettez ensuite la *pull request*.
+
+
+
+Je fusionnerai bientôt vos modifications dans la branche principale du projet.
+Vous recevrez un e-mail de confirmation une fois que ce sera fait.
+
+La branche main de votre dépôt forké ne subira pas de modification. Pour que votre dépôt soit synchronisé avec le mien, suivez les étapes suivantes.
## Gardez votre embranchement synchronisé avec ce répertoire
@@ -113,13 +148,13 @@ Ici nous cherchons toutes les modifications dans mon embranchement (upstream rem
```
git rebase upstream/main
```
-Ici nous appliquons toutes les modifications que vous avez cherché à la branche main. Si vous poussez la branche main maintenant, votre embranchement aussi aura les modifications :
+Ici nous appliquons toutes les modifications que vous avez récupéré à la branche main. Si vous poussez la branche main maintenant, votre embranchement aussi aura les modifications :
```
git push origin main
```
-Avertissement: Cette fois, vous poussez au répertoire distant appelé origin.
+Avertissement: Cette fois, vous poussez les modifications au répertoire distant appelé origin.
-A ce niveau j'ai fusionné votre branche `
](https://join.slack.com/t/firstcontributors/shared_invite/zt-1n4y7xnk0-DnLVTaN6U9xLU79H5Hi62w)
[](https://opensource.org/licenses/MIT)
[](https://www.codetriage.com/roshanjossey/first-contributions)
diff --git a/docs/translations/README.ge.md b/docs/translations/README.ge.md
index 84d738d7..cbd60d93 100644
--- a/docs/translations/README.ge.md
+++ b/docs/translations/README.ge.md
@@ -1,5 +1,4 @@
[](https://github.com/ellerbrock/open-source-badges/)
-[
](https://join.slack.com/t/firstcontributors/shared_invite/zt-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA)
[](https://opensource.org/licenses/MIT)
[](https://www.codetriage.com/roshanjossey/first-contributions)
@@ -109,7 +108,6 @@ git push origin
](https://join.slack.com/t/firstcontributors/shared_invite/zt-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA)
[](https://opensource.org/licenses/MIT)
[](https://www.codetriage.com/roshanjossey/first-contributions)
@@ -109,4 +108,4 @@ Axiña mesturarei os teus cambios (facendo *merge*) na master branch deste proxe
## Onde ir dende aquí?
-Tamén poderías unirte á nosa *equipa* en Slack no caso de que necesites axuda ou teñas algunha pregunta. [Únete ó noso Slack](https://firstcontributors.slack.com/join/shared_invite/enQtMzE1MTYwNzI3ODQ0LTZiMDA2OGI2NTYyNjM1MTFiNTc4YTRhZTg4OWZjMzA0ZWZmY2UxYzVkMzI1ZmVmOWI4ODdkZWQwNTM2NDVmNjY)
+Se queres practicar máis e contribuír a código aberto, mira [Code Contributions](https://github.com/roshanjossey/code-contributions).
diff --git a/docs/translations/README.gr.md b/docs/translations/README.gr.md
index f9efdcbd..83f2e6e6 100644
--- a/docs/translations/README.gr.md
+++ b/docs/translations/README.gr.md
@@ -1,5 +1,4 @@
[](https://github.com/ellerbrock/open-source-badges/)
-[
](https://join.slack.com/t/firstcontributors/shared_invite/zt-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA)
[](https://opensource.org/licenses/MIT)
[](https://www.codetriage.com/roshanjossey/first-contributions)
@@ -49,7 +48,7 @@ git clone https://github.com/this-is-you/first-contributions.git
cd first-contributions
```
-Τώρα δημιουργείστε ένα νέο παρακλάδι χρησιμοποιώντας την εντολή `git switch` :
+Τώρα δημιουργήστε ένα νέο παρακλάδι χρησιμοποιώντας την εντολή `git switch` :
```
git switch -c your-new-branch-name
@@ -63,7 +62,7 @@ git switch -c add-alonzo-church
(Το όνομα του παρακλαδιού δεν χρειάζεται να περιέχει την λέξη _add_ αλλά είναι λογικό να την συμπεριλάβουμε μιας και ο σκοπός του παρακλαδιού είναι να προσθέσουμε το όνομα μας σε μια λίστα.)
-## Πραγματοποιήστε τις αλλαγές και αποθηκεύστετες (add & commit)
+## Πραγματοποιήστε τις αλλαγές και αποθηκεύστε τες (add & commit)
Τώρα ανοίξτε το αρχείο `Contributors.md` με έναν επεξεργαστή κειμένου. Χρειάζεται να είστε εξοικειωμένοι με την Markdown, μια ελαφριά γλώσσα σήμανσης. Δείτε στο [cheat sheet](https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet) για το πως να χρησιμοποιήσετε την Markdown.
@@ -107,13 +106,13 @@ git push origin
-Τώρα υποβάλλετε το pull request.
+Τώρα υποβάλετε το pull request.
@@ -125,9 +124,6 @@ git push origin
](https://join.slack.com/t/firstcontributors/shared_invite/zt-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA)
[](https://opensource.org/licenses/MIT)
[](https://www.codetriage.com/roshanjossey/first-contributions)
+
# પ્રથમ યોગદાન
પ્રથમ વખત કંઈક કરવું થોડું મુશ્કેલ છે. ખાસ કરીને જ્યારે તમે જુથ સાથે મળીને કામ કરી રહ્યા હોવ, ત્યારે ભૂલો કરવી એ સારી વાત નથી. પરંતુ એકબીજા સાથે મળીને અને એક જ સાથે કામ કરવું એ જ તો ઓપેન સોર્સ છે. અમે તમારું પ્રથમ ઓપન સોર્સ કોન્ટ્રિબ્યુશન / યોગદાન સરળ બનાવાનો પ્રયત્ન કરીશુ.
@@ -14,27 +14,22 @@
જો તમારા કમ્પ્યુટર પર Git ઇન્સ્ટોલ નથી, [ તો Git ઈન્સ્ટોલ કરો](https://help.github.com/articles/set-up-git/)
-
## રિપોઝીટરીને ફોર્ક કરો
ફોર્ક(કાંટા) બટન પર ક્લિક કરવાથી આ રિપોઝીટરી ફોર્ક થાય છે, આ તમારા GitHub એકાઉન્ટમાં આ રિપોઝીટરીની એક નકલ (કોપી) બનાવશે.
-
## રિપોઝીટરી ક્લોન કરો
-
હવે તમે આ રેપો તમારા કમ્પ્યુટરમાં ક્લોન કરો (અર્થાત ડાઉનલોડ કરો). તમારા GitHub એકાઉન્ટ પર જાવ, કોડ બટન પર ક્લિક કરો અને પછી `copy to clipboard` આઇકોન પર ક્લિક કરો. આનાથી એ રેપોજીટરીનો યુઆરએલ કોપી થશે.
-
તમારા કમ્પ્યુટર પર એક ટર્મિનલ / કમાંડ પ્રોમ્પ્ટ ખોલો અને નીચે દર્શાવ્યા મુજબ git આદેશ ચલાવો:
```
git clone "યુઆરએલ જે તમે હમણાં જ નકલ(ક્લોન) કરી"
```
-
જ્યાં "યુઆરએલ જે તમે હમણાં જ કોપી કર્યું છે" (અવતરણ ચિહ્નો સિવાય) એ આ રિપોઝીટરી(આ પ્રોજેક્ટનો તમારો ફૉર્ક) ની URL ના સંગ્રહ માટે છે. તેની URL ને મેળવવા માટે પાછલા પગલાં જુઓ. તેમને કોપી કરેલ યુઆરએલ સાથે બદલી કાઢો.
ઉદાહરણ તરીકે:
@@ -45,19 +40,16 @@ git clone https://github.com/આ-તમે-છો/first-contributions.git
-
'આ-તમે-છો' તમારા GitHub એકાઉન્ટનું `username` છે. અહીં તમે તમારા કમ્પ્યુટરમાં GitHub થી first-contributions રિપોને કોપી કરી રહ્યા છો અથવા તેના એક સ્થાનિક / લોકલ કોપી બનાવી રહ્યા છે.
## એક બ્રાંચ બનાવો
તમારા કમ્પ્યુટર પર બનાવેલ રિપોઝીટરીની કોપીનાં ફોલ્ડર / ડિરેક્ટરીમાં જાવ (જો હજુ સુધી તમે ત્યાં ન હોવ તો નીચે આપેલ Command(આદેશ) ચલાવો)
-
```
cd first-contributions
```
-
હવે 'git checkout' command(આદેશ) નો ઉપયોગ કરીને એક નવી શાખા(Branch) બનાવો. નવી શાખા(Branch) બનાવવા માટે -b વિકલ્પનો ઉપયોગ થાય છે.
```
@@ -70,25 +62,20 @@ git checkout -b <તમારી-શાખા-નામ-ઉમેરો>
git checkout -b add-alonzo-church
```
-
(શાખા(Branch)ના નામમાં 'add' ઉમેરવાની જરૂર નથી, પરંતુ તેમાં શામેલ કરવું યોગ્ય છે કારણ કે શાખા(Branch)નો હેતુ એક નામ છે, જે નામ ઉમેરવાનું છે.)
## આવશ્યક ફેરફારો કરો અને તે ફેરફારોને કમીટ કરો-
-
હવે 'Contributors.md` ફાઇલને એક ટેક્સ્ટ એડિટરમાં ખોલો અને તેમા તમારુ નામ લખો. ફાઇલની શરૂઆત અથવા અંતે ઉમેરવાને બદલે, તેને મધ્યમાં ગમે ત્યાં રાખો. હવે, ફાઇલને સેવ કરો.
-
જો તમે પ્રોજેક્ટની ડાઈરેક્ટરીમા જશો અને કમાન્ડ પ્રોમ્પ્ટમાં `git status` નિર્દેશ ચલાવશો, તો તમે કરેલા પરિવર્તન જોઈ શક્શો. તે પરિવર્તન બનાવવામાં આવેલ શાખા(Branch)માં ઉમેરવા માટે 'git add` કમાન્ડ વાપરો.
-
```
git add Contributors.md
```
-
હવે તમારા પોતાના ફેરફારોને 'git commit' આદેશનો ઉપયોગ કરી કમીટ કરો.
```
@@ -97,8 +84,8 @@ git commit -m "Add <તમારુ-નામ> to Contributors list"
<તમારુ નામ> ની જગ્યાએ તમારું નામ દાખલ કરો
+##
-##
તમારા ફેરફારો ને Github માં પુશ કરો (ધકેલો).
`git push` ઉપયોગ કરીને તમારા પરિવર્તન ને પુશ કરો
@@ -111,7 +98,6 @@ git push origin <તમારી-શાખા-નામ-ઉમેરો>
## તમારા ફેરફારોના રીવ્યુ માટે સબમિટ કરો
-
જો તમે તમારા github એકાઉન્ટ પર તમારી રિપો માં જાવ તો Compare & pull request નો ઓપ્શન હશે. તેને દબાવો.
@@ -121,23 +107,18 @@ git push origin <તમારી-શાખા-નામ-ઉમેરો>
ટૂંક સમયમાં હું તમારા ફેરફારો માટે આ પ્રોજેક્ટની માસ્ટર શાખામાં મર્જ ક્રી દઇશ. તમને એક મેલ આવશે જ્યારે તમારા ફેરફારો મર્જ થશે.
-
## હવે, અહીંથી ક્યાં જવું ?
અભિનંદન!:tada: તમે હમણાં જ સ્ટાન્ડર્ડ `fork -> clone -> edit -> pull request` વર્કફ્લો પૂર્ણ કર્યો છે. જેનો તમે વારંવાર સહયોગકર્તા (contributor) તરીકે સામનો કરશો!
-
તમારા પ્રથમ યોગદાનની ઉજવણી કરો અને [વેબ એપ્લિકેશન](https://firstcontributions.github.io/#social-share) પર જઈને તમારા મિત્રો અને ફોલોઅર્સ સાથે શેર કરો.
-
-
-જો તમને કોઈ મદદની જરૂર હોય અથવા તમારી કોઈ સમસ્યા હોય તો તમે અમારી સ્લેક ટીમમા જોડાઈ શકો છો. [સ્લેક ટીમ જોઈન કરો.](https://join.slack.com/t/firstcontributors/shared_invite/zt-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA)
-
+જો તમને વધુ પ્રેક્ટિસ જોઈતી હોય, તો [કોડ યોગદાન ચેકઆઉટ](https://github.com/roshanjossey/code-contributions) કરો.
ચાલો, હવે તમને અન્ય પ્રોજેક્ટ્સમાં કંટ્ર્રીબ્યુટ કરવામા મદદ કરુ. અમે તમારા માટે એક યાદી બનાવી છે જેમા ખૂબ સરળ issues(મુદ્દાઓ) છે વેબ એપમા પ્રોજેક્ટ્સ ની સૂચિ જુઓ.](https://firstcontributions.github.io/#project-list)
## અન્ય સાધનોનો ઉપયોગ કરીને ટ્યુટોરીયલ્સ
|
](https://join.slack.com/t/firstcontributors/shared_invite/zt-2vqegkew0-ZuzGM1LO33C6Ts4nZyat1Q)
[](https://opensource.org/licenses/MIT)
[](https://www.codetriage.com/roshanjossey/first-contributions)
@@ -256,8 +255,6 @@ git remote set-url origin git@github.com:your-username/your_repo.git
תחגגו את התרומתכם ושתפו אותה עם החברים והעוקבים שלכם בכך שתלכו ל-[web app](https://firstcontributions.github.io/#social-share).
-אתם יכולים להצטרף לצוות הסלאק שלנו אם אתם צריכים עזרה או אם יש לכם שאלות. [הצטרפות לצוות בסלאק](https://join.slack.com/t/firstcontributors/shared_invite/zt-2vqegkew0-ZuzGM1LO33C6Ts4nZyat1Q).
-
עכשיו אפשר להתחיל לתרום לפרוייקטים אחרים. הכנו רשימה של פרוייקטים על נושאים קלים שאתם יכולים להתחיל לעבוד עליהם. [רשימה של פרוייקטים ב- web app](https://firstcontributions.github.io/#project-list).
### [חומר נוסף](../additional-material/git_workflow_scenarios/additional-material.md)
diff --git a/docs/translations/README.hi.md b/docs/translations/README.hi.md
index 9fef1919..6f4277ee 100644
--- a/docs/translations/README.hi.md
+++ b/docs/translations/README.hi.md
@@ -114,7 +114,7 @@ git push origin <अपनी-शाखा-का-नाम-जोड़ें>
अपने पहले योगदान की खुशी में जश्न मनाएं तथा इसे [वेब एप्प](https://firstcontributions.github.io/#social-share) के जरिये अपने मित्रों के साथ शेयर करें।
-आप हमारी स्लैक टीम को ज्वाइन कर सकते हैं यदि आपको कुछ मदद चाहिए या आपके कोई प्रश्न हों । [स्लैक पे ज्वाइन करें](https://join.slack.com/t/firstcontributors/shared_invite/zt-1n4y7xnk0-DnLVTaN6U9xLU79H5Hi62w)
+यदि आप अधिक अभ्यास करना चाहते हैं, तो हमारे । [कोड योगदान](https://github.com/roshanjossey/code-contributions)
अब आप अन्य प्रोजेक्ट्स पर योगदान कर सकते हैं, तो चलिए शुरू करते हैं! हमने आपके लिए एक प्रोजेक्ट्स की सूचि तैयार की है जहाँ सरल इश्यूज हैं । आप चाहें तो वहाँ से आरम्भ कर सकते हैं । [प्रोजेक्ट्स कि लिस्ट](https://firstcontributions.github.io/#project-list)
diff --git a/docs/translations/README.hr.md b/docs/translations/README.hr.md
index 1c94cc99..a8194eee 100644
--- a/docs/translations/README.hr.md
+++ b/docs/translations/README.hr.md
@@ -1,5 +1,4 @@
[](https://github.com/ellerbrock/open-source-badges/)
-[
](https://join.slack.com/t/firstcontributors/shared_invite/zt-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA)
[](https://opensource.org/licenses/MIT)
[](https://www.codetriage.com/roshanjossey/first-contributions)
@@ -111,7 +110,6 @@ Nakon toga, vlasnik će spojiti promjene koje ste napravili sa master granom pro
Proslavite tako što ćete podjeliti svoj doprinos sa prijateljima i pratiocima otvaranjem [stranice](https://firstcontributions.github.io/#social-share).
-Pridružite se i našem Slack timu u slučaju da vam je potrebna ikakva pomoć ili imate bilo kakvih pitanja. [Slack tim](https://join.slack.com/t/firstcontributors/shared_invite/zt-2vqegkew0-ZuzGM1LO33C6Ts4nZyat1Q).
Sada možemo početi sa doprinosima drugim projektima. Napravili smo popis projekata sa jednostavnim problemima na kojima možete početi raditi. Posjetite [listu projekata na naštoj stranici](https://firstcontributions.github.io/#project-list).
diff --git a/docs/translations/README.hu.md b/docs/translations/README.hu.md
index 89fb1cb3..30570260 100644
--- a/docs/translations/README.hu.md
+++ b/docs/translations/README.hu.md
@@ -1,5 +1,5 @@
[](https://github.com/ellerbrock/open-source-badges/)
-[
](https://join.slack.com/t/firstcontributors/shared_invite/zt-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA)
+
[](https://opensource.org/licenses/MIT)
[](https://www.codetriage.com/roshanjossey/first-contributions)
diff --git a/docs/translations/README.hy.md b/docs/translations/README.hy.md
index e44f16ff..3cec0d22 100644
--- a/docs/translations/README.hy.md
+++ b/docs/translations/README.hy.md
@@ -1,5 +1,4 @@
[](https://github.com/ellerbrock/open-source-badges/)
-[
](https://join.slack.com/t/firstcontributors/shared_invite/zt-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA)
[](https://opensource.org/licenses/MIT)
[](https://www.codetriage.com/roshanjossey/first-contributions)
@@ -123,7 +122,6 @@ git push origin
](https://join.slack.com/t/firstcontributors/shared_invite/zt-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA)
[](https://opensource.org/licenses/MIT)
[](https://www.codetriage.com/roshanjossey/first-contributions)
# Kontribusi Pertama
-Proyek ini bertujuan untuk menyederhanakan dan membimbing perjalanan seorang pemula berkontribusi di Github untuk pertama kali. Pertahatikan langkah - langkah berikut untuk memulai:
+Proyek ini bertujuan untuk menyederhanakan dan membimbing perjalanan seorang pemula berkontribusi di Github untuk pertama kali. Perhatikan langkah-langkah berikut untuk memulai:
#### _Jika Anda tidak terbiasa dengan baris perintah(command line), [di sini ada tutorial untuk menggunakan GUI(antarmuka bergrafis).](#Tutorial-Menggunakan-Alat-Lain)_
@@ -26,17 +25,17 @@ Sekarang kloning repositori yang sudah Anda _fork_ ke komputer Anda. Pergi ke ak
Buka sebuah terminal dan jalankan perintah git berikut:
```
-git clone "url yang telah disalin"
+git clone "url yang telah Anda disalin"
```
-bagian "url yang telah disalin" (tanpa tanda petik) adalah url ke repositori ini (proyek yang telah Anda _fork_ ini). Lihat langkah sebelumnya untuk mendapatkan url.
+bagian "url yang telah Anda disalin" (tanpa tanda petik) adalah url ke repositori ini (proyek yang telah Anda _fork_ ini). Lihat langkah sebelumnya untuk mendapatkan url.
-Sebagai contoh:
+Contohnya:
```
-git clone https://github.com/ini-adalah-anda/first-contributions.git
+git clone git@github.com:ini-adalah-anda/first-contributions.git
```
bagian `ini-adalah-anda` adalah nama pengguna GitHub Anda. Di sini Anda menyalin konten dari repositori first-contributions di GitHub ke komputer Anda.
@@ -55,12 +54,25 @@ Sekarang buatlah sebuah _branch_ menggunakan perintah `git checkout`:
git checkout -b origin https://github.com/your-username/your_repo.git (fetch) + origin https://github.com/your-username/your_repo.git (push)+ + Buat perubahan dengan perintah: + +
git remote set-url origin git@github.com:your-username/your_repo.git+ + Jika tidak, Anda akan tetap dimintai nama pengguna dan kata sandi serta mendapatkan kesalahan autentikasi. + ## Kirim Perubahan Untuk Diperiksa Jika Anda membuka repositori Anda di GitHub, Anda akan melihat sebuah tombol `Compare & pull request`. Tekan tombol tersebut. @@ -122,7 +145,6 @@ Selamat! Anda baru saja menyelesaikan standar _fork_ -> _clone_ -> _edit_ -> _pu Rayakan kontribusi Anda dan bagikan dengan teman-teman dan pengikut Anda dengan membuka [web app](https://firstcontributions.github.io/#social-share). -Anda dapat bergabung dengan tim Slack kami jika Anda membutuhkan bantuan atau memiliki pertanyaan. [Bergabung dengan tim Slack](https://join.slack.com/t/firstcontributors/shared_invite/zt-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA). Sekarang mari kita mulai dengan berkontribusi di proyek lain. Kami sudah menyusun daftar proyek dengan isu yang mudah dikerjakan sehingga Anda dapat segera memulai. Cek di [daftar proyek web app](https://firstcontributions.github.io/#project-list). @@ -133,3 +155,10 @@ Sekarang mari kita mulai dengan berkontribusi di proyek lain. Kami sudah menyusu |
Proyek ini didukung oleh:
+
+
+
+
+
](https://join.slack.com/t/firstcontributors/shared_invite/zt-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA)
[](https://opensource.org/licenses/MIT)
[](https://www.codetriage.com/roshanjossey/first-contributions)
@@ -115,8 +114,6 @@ Ekele! Naanị ị gụchara ihe nkesa -> mmepụta oyiri -> dezie -> Bọpụ
Nalee onyinye gị ma soro ndị enyi gị na ụmụazụ gị kerịta ya site na ịga na [ngwa weebụ](https://firstcontributions.github.io/#social-share).
-Ị nwere ike isonyere ndị ọrụ anyị na-adịghị mma na ikpe ịchọrọ enyemaka ọ bụla ma ọ bụ nwee ajụjụ ọ bụla. [Jikọọ slack otu](https://join.slack.com/t/firstcontributors/shared_invite/zt-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA).
-
Ugbu a, ka anyị malite site na inye onyinye maka ọrụ ndị ọzọ. Anyị ejikọtawo ndepụta nke oru na okwu dị mfe ị nwere ike ịmalite. Lelee [ndepụta nke oru na ngwa weebụ ](https://firstcontributions.github.io/#project-list).
### [Ihe ndi ozo](../additional-material/git_workflow_scenarios/additional-material.md)
diff --git a/docs/translations/README.it.md b/docs/translations/README.it.md
index 286247a3..ca76244d 100644
--- a/docs/translations/README.it.md
+++ b/docs/translations/README.it.md
@@ -1,5 +1,4 @@
[](https://github.com/ellerbrock/open-source-badges/)
-[
](https://join.slack.com/t/firstcontributors/shared_invite/zt-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA)
[](https://opensource.org/licenses/MIT)
[](https://www.codetriage.com/roshanjossey/first-contributions)
diff --git a/docs/translations/README.ja.md b/docs/translations/README.ja.md
index d4b91868..f3f07c87 100644
--- a/docs/translations/README.ja.md
+++ b/docs/translations/README.ja.md
@@ -1,5 +1,5 @@
[](https://github.com/ellerbrock/open-source-badges/)
-[
](https://join.slack.com/t/firstcontributors/shared_invite/zt-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA)
+
[](https://opensource.org/licenses/MIT)
[](https://www.codetriage.com/roshanjossey/first-contributions)
diff --git a/docs/translations/README.ka.md b/docs/translations/README.ka.md
index 2c3ae195..2bf9d66c 100644
--- a/docs/translations/README.ka.md
+++ b/docs/translations/README.ka.md
@@ -1,5 +1,4 @@
[](https://github.com/firstcontributions/open-source-badges)
-[
](https://join.slack.com/t/firstcontributors/shared_invite/zt-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA)
[](https://opensource.org/licenses/MIT)
[](https://www.codetriage.com/roshanjossey/first-contributions)
diff --git a/docs/translations/README.kh.md b/docs/translations/README.kh.md
index 762ed300..b3c1c41d 100644
--- a/docs/translations/README.kh.md
+++ b/docs/translations/README.kh.md
@@ -1,5 +1,4 @@
[](https://github.com/firstcontributions/open-source-badges)
-[
](https://join.slack.com/t/firstcontributors/shared_invite/zt-1n4y7xnk0-DnLVTaN6U9xLU79H5Hi62w)
[](https://opensource.org/licenses/MIT)
[](https://www.codetriage.com/roshanjossey/first-contributions)
diff --git a/docs/translations/README.ko.md b/docs/translations/README.ko.md
index d67580a2..fd9dfc62 100644
--- a/docs/translations/README.ko.md
+++ b/docs/translations/README.ko.md
@@ -1,5 +1,4 @@
[](https://github.com/ellerbrock/open-source-badges/)
-[
](https://join.slack.com/t/firstcontributors/shared_invite/zt-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA)
[](https://opensource.org/licenses/MIT)
[](https://www.codetriage.com/roshanjossey/first-contributions)
@@ -130,9 +129,9 @@ git push -u origin your-branch-name
## 다른 도구들을 사용한 튜토리얼
-| This project is supported by:
diff --git a/docs/translations/README.kr.md b/docs/translations/README.kr.md
index 9868bac1..945b21d7 100644
--- a/docs/translations/README.kr.md
+++ b/docs/translations/README.kr.md
@@ -1,5 +1,4 @@
[](https://github.com/firstcontributions/open-source-badges)
-[
-د دې پاڼې په سر کې د فورک تڼئ پر کلیک سره تاسو کولای شئ دا repository فورک کړئ، فورک به د دې repository یوه کاپي ستاسو د کیټ هب په اکونټ کې جوړه کړي.
- اوس فورک کړل شوې ریپوزیټوري کلون یعنې ښکته کړئ د دې کار د ترسره کولو لپاره خپل اکونټ ته لاړ شی د کوډ پر تڼۍ کلیک وکړئ او د ریپوزیټوري لینک کاپي کړئ. ترمینل یا CMD خلاص کړئ او لاندې د کیټ کمنډ رن کړئ د بیلکې په توګه په پورته لینک کې د MasihKarimi پرځای باید ستاسو د کیټ هب د اکونټ نوم وي د پورته قدمونو په اخیستلو سره تاسو د “first-contributions” ذخیره یا ریپوزیټوري خپل کمپیوټر ته ښکته کوۍ. اوس د first-contributions پروژه په خپل کوډ ایډیټر کې پرانيزی او په ترمینل کې د لاندې کیټ کمنډ په رن کولو سره نوی برانچ یا څانګه جوړه کړئ. د بیلکې په توګه add-Masih-Karimi زما د څانګې نوم دی تاسو کولائ شئ خپل نوم غوره کړئ اوس د contributors.md فایل راخلاص کړئ او خپل نوم مو وراضافه کړئ نوم مو د فایل په شروغ یا اخر کې مه اضافه کوئ په منځ کې یې اضافه کړئ او فایل ذخیره کړئ اوس که چېرې ټرمینل ته ولاړ شئ او د git status کمنډ رن کړئ تاسو کولائ شئ وګورئ چې په کوم فایل کې مو بدلونونه راوستي دي په دې برخه کې د git add کمنډ په مرسته خپل بدلونونه خپل نوي جوړې کړل شوې څانګې ته اضافه کړئ: اوس اضافه کړل شوي بدلونونه د لاندې کمنډ په مرسته ترسره یا commit کړئ: د Masih Karimi پر ځای مو خپل نوم ولیکئ په دې برخه کې د git push کمنډ په مرسته خپل بدلونونه کیټ هب ته پورته کړئ د بېلګې په توګه هېر نه کړئ چې د add-Masih-Karimi پر ځای د خپلې څانګې نوم ورکړئ اوس که چېرې دې ریپوزیټوري ته په خپل کیټ هب اکونټ کې ورشئ تاسو به یو یوه تنۍ د Compare & pull request متن سره ووینۍ. دا تنۍ کیکاږئ اوس د pull غوښتنه وسپارئ له دې ورسته به زه ستاسو راوستي بدلونه د اصلي یا main څانګې سره یوځای کړم او ستاسو نوم به د ګډون کوونکو لیست ته اضافه کړل شي.
-بریا!! !! تاسو په بریالیتوب سره د فورک، کلون ، ایډټ او پول غوښتنې چارې ترسره کړې ، د دې چارو سره به مو د یو ګډون کوونکي په توګه همیش سر او کار وي.
-
-خپل لومړئ ګډون مو ولمانځئ او له خپلو ملګرو سره یې شریک کړئ
+تاسو په بریالیتوب سره د فورک، کلون، ایډیټ، او pull request مرحلې بشپړې کړې. تاسې له دې نه وروسته کولی شئ چې په خلاص-سرچېنه پروژو کې په همدې طریقه برخه واخلئ.
- که چېرې کومه ستونزه او پوښتنه لرئ کولائ شئ زموږ د سلک slack ټیم سره یوځائ شئ
-اوس راځئ په نورو پروژو کې ګډون وکړئ موږ د هغو پروژو لیست جمتو کړئ دئ چې تاسو کولائ شئ په آسانی ګډون پکې وکړئ د پروژو لیست دلته وګورئ
-
-
-
-# لومړنۍ مرستې
-د دې پروژې موخه دا ده چې د پیل کونکو لپاره د دوی لومړنۍ مرسته کولو لاره ساده او لارښود کړي. که تاسو د خپلې لومړۍ مرستې په لټه کې یاست، لاندې مرحلې تعقیب کړئ.
-
-_که تاسو د کمانډ لاین (CLI) سره راحته نه یاست ، [دا لارښوونې وکاروئ ترڅو پوه شئ چې د GUI وسیلو کارولو څرنګوالی](#د-نورو-وسیلو-کارولو-لارښوونې)._
-
-
](https://join.slack.com/t/firstcontributors/shared_invite/zt-1n4y7xnk0-DnLVTaN6U9xLU79H5Hi62w)
[](https://opensource.org/licenses/MIT)
[](https://www.codetriage.com/roshanjossey/first-contributions)
@@ -203,8 +202,6 @@ Pîroz be! We çerxa _fork -> clone -> edit -> pull request_ a standard ku hûn
Beşdariya xwe pîroz bikin û bi hevalên xwe û şopînerên xwe re parve bikin bi çûyîna [sepana webê](https://firstcontributions.github.io/#social-share).
-Heke we hewceyî alîkariyê heye an jî pirsên we hene hûn dikarin beşdarî tîma me ya slack bibin. [Beşdarî tîma slack bibin](https://firstcontributors.slack.com/join/shared_invite/zt-29qhyr9lt-Bi7WLbgGIFqV7aCEG_grvg#/shared-invite/email).
-
Niha em dest bi beşdariya we di projeyên din de bikin. Me lîsteyek ji projeyan bi mijarên hêsan amade kiriye ku hûn dikarin pê dest pê bikin. [Lîsteya projeyan di sepana webê de kontrol bikin](https://firstcontributions.github.io/#project-list).
### [Materyalên zêde](additional-material/git_workflow_scenarios/additional-material.md)
diff --git a/docs/translations/README.kws.md b/docs/translations/README.kws.md
index 7eb993dd..6b58d322 100644
--- a/docs/translations/README.kws.md
+++ b/docs/translations/README.kws.md
@@ -1,5 +1,4 @@
[](https://github.com/ellerbrock/open-source-badges/)
-[
](https://join.slack.com/t/firstcontributors/shared_invite/zt-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA)
[](https://opensource.org/licenses/MIT)
[](https://www.codetriage.com/roshanjossey/first-contributions)
diff --git a/docs/translations/README.kz.md b/docs/translations/README.kz.md
index 4b6dfd52..5cc8bad7 100644
--- a/docs/translations/README.kz.md
+++ b/docs/translations/README.kz.md
@@ -1,5 +1,4 @@
[](https://github.com/ellerbrock/open-source-badges/)
-[
](https://join.slack.com/t/firstcontributors/shared_invite/zt-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA)
[](https://opensource.org/licenses/MIT)
[](https://www.codetriage.com/roshanjossey/first-contributions)
diff --git a/docs/translations/README.la.md b/docs/translations/README.la.md
index 1edc9414..263c9f9b 100644
--- a/docs/translations/README.la.md
+++ b/docs/translations/README.la.md
@@ -1,5 +1,4 @@
[](https://github.com/ellerbrock/open-source-badges/)
-[
](https://join.slack.com/t/firstcontributors/shared_invite/zt-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA)
[](https://opensource.org/licenses/MIT)
[](https://www.codetriage.com/roshanjossey/first-contributions)
@@ -105,8 +104,6 @@ git push origin <ຊື່ branch ຂອງທ່ານ>
ຍິນດີນຳ, ທ່ານໄດ້ປະຕິບັດຂັ້ນຕອນຂອງການເຮັດ contribute ຄື fork -> clone -> edit -> pull request ເຊິ່ງຂັ້ນຕອນຕ່າງໆເຫຼົ່ານີ້ເປັນສິ່ງທີ່ທ່ານຕອງໄດ້ພົບເມື່ອທ່ານເປັນ contributor
ສະເຫຼີມສະຫຼອງໃຫ້ແກ່ການມີສ່ວນຮ່ວມຂອງທ່ານ, ຢ່າລືມແບ່ງປະສົບການທີ່ທ່ານໄດ້ຮັບໃຫ້ແກ່ໝູ່ເພື່ອນຂອງທ່ານ ໂດຍໄປທີ່ [ເວັບໄຊນີ້](https://firstcontributions.github.io/#social-share)
-ຫຼືຈະມີສ່ວນຮ່ວມກັບເຮົາຜ່ານ Slack ໃນກໍລະນີທີ່ທ່ານຕ້ອງການຄວາມຊ່ວຍເຫຼືອ ຫຼື ມີຂໍ້ສົງໄສໃດໆ [ເຂົ້າຮ່ວມ slack ກັບພວກເຮົາ](https://join.slack.com/t/firstcontributors/shared_invite/zt-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA)
-
ຈາກນີ້ທ່ານສາມາດ contribute ໃຫ້ໂປຣເຈັກອື່ນໆໄດ້, ໂດຍທາງເຮົາໄດ້ເຮັດລາຍການໂປຣເຈັກທີ່ງ່າຍຕໍ່ການເລີ່ມຕົ້ນບາງສ່ວນໄວ້ໃຫ້ [ລາຍຊື່ໂປຣເຈັກທີ່ໜ້າສົນໃຈ](https://firstcontributions.github.io/#project-list)
### [ຂໍ້ມູນອື່ນໆເພີ່ມເຕີມ](../additional-material/git_workflow_scenarios/additional-material.md)
diff --git a/docs/translations/README.lt.md b/docs/translations/README.lt.md
index f7a75434..21e101c4 100644
--- a/docs/translations/README.lt.md
+++ b/docs/translations/README.lt.md
@@ -1,5 +1,4 @@
[](https://github.com/ellerbrock/open-source-badges/)
-[
](https://join.slack.com/t/firstcontributors/shared_invite/zt-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA)
[](https://opensource.org/licenses/MIT)
[](https://www.codetriage.com/roshanjossey/first-contributions)
@@ -8,11 +7,13 @@
Sunku. Visada sunku ką nors padaryti pirmą kartą. Ypač bendradarbiaujant, klaidų darymas nėra malonus dalykas. Tačiau atviras kodas - tai bendravimas ir bendradarbiavimas. Mes norime paprasčiau paaiškinti naujiesiems atvirojo kodo kūrėjams, kaip jie gali prisidėti pirmą kartą.
-Galite pradėti skaityti straipsnius ir žiūrėti vadovus, bet kas gali būti geriau nei mokymasis darant be klaidų pirmą kartą? Šio projekto tikslas - suteikti patarimus ir supaprastinti tai, kaip naujokai daro pirmąjį indėlį. Prisiminkite: kuo labiau esate atsipalaidavęs, tuo geriau mokotės. Jei norite atlikti pirmąjį indėlį, atlikite toliau pateiktus paprastus veiksmus. Mes pažadame, tai bus smagu.
+Galite pradėti skaityti straipsnius ir žiūrėti vadovus, bet kas gali būti geriau nei mokymasis darant be klaidų pirmą kartą? Šio projekto tikslas - suteikti patarimus ir supaprastinti tai, kaip naujokai atlieka savo pirmąjį indėlį. Prisiminkite: kuo labiau atsipalaidavę esate, tuo geriau mokotės. Jei norite atlikti pirmąjį indėlį, atlikite toliau pateiktus paprastus veiksmus. Mes pažadame, tai bus smagu.
+
+_Jei nesate pratę dirbti su komandine eilute, [čia rasite vadovą, naudojantį GUI įrankius.](#tutorials-using-other-tools)_
-Jei neturite instaliuoto git, [ instaliuokite čia ]( https://help.github.com/articles/set-up-git/).
+#### Jei neturite instaliuoto git, [instaliuokite čia](https://help.github.com/articles/set-up-git/).
## Kopijuokite (fork) šią saugyklą
@@ -28,9 +29,9 @@ Dabar klonuokite šią saugyklą į savo kompiuterį. Spustelėkite klonavimo my
Atidarykite terminalą ir paleiskite šią git komandą:
```
-git clone "kopijuota nuoroda"
+git clone "kątik nukopijuota nuoroda"
```
-kur "kopijuota nuoroda" (be citatos ženklų) yra url nuoroda jūsų saugyklai. Peržiūrėkite ankstesnius veiksmus, kad gautumėte url nuorodą.
+kur "kątik nukopijuota nuoroda" (be citatos ženklų) yra url nuoroda jūsų saugyklai (jūsų projekto kopijai). Peržiūrėkite ankstesnius veiksmus, kad gautumėte url nuorodą.
@@ -47,20 +48,35 @@ Pakeiskite kompiuterio saugyklos katalogą (jei dar to nepadarėte anksčiau):
```
cd first-contributions
```
-Dabar sukurkite šaką naudodami komandą `git checkout`:
+Dabar sukurkite šaką naudodami komandą `git branch`:
```
-git checkout -b Jei gavote klaidos pranešimą naudodami git switch, spauskite čia:
+
+Jei klaidos pranešimas yra "Git: `switch` is not a git command. See `git –help`", tikėtinai naudojate seną git versiją.
+
+Tokiu atveju bandykite `git checkout`:
+
+```bash
git checkout -b add-vardenis-pavardenis
```
-(Saugyklos pavadinime neturi būti žodžio *add*, bet tai yra reikalinga, kadangi šios šakos (branch) paskirtis yra įtraukti savo vardą į sąrašą.)
+
+ Jei gaunate klaidos pranešimą išsaugodami pakeitimus, spauskite čia:
+
+- ### Autentifikacijos klaida
+ remote: Support for password authentication was removed on August 13, 2021. Please use a personal access token instead.
+ remote: Please see https://github.blog/2020-12-15-token-authentication-requirements-for-git-operations/ for more information.
+ fatal: Authentication failed for 'https://github.com/
+ [GitHub vadovas](https://docs.github.com/en/authentication/connecting-to-github-with-ssh/adding-a-new-ssh-key-to-your-github-account) padės jums sugeneruoti ir sukonfiguruoti SSH raktą savo paskyroje.
+
+ Taip pat, galbūt norėsite pabandyti 'git remote -v', skirtą patikrintite savo nuotolinį adresą (remote address).
+
+ Jei jis atrodo taip ar panašiai:
+ origin https://github.com/your-username/your_repo.git (fetch)
+ origin https://github.com/your-username/your_repo.git (push)
+
+ pakeiskite jį, naudodami komandą:
+ ```bash
+ git remote set-url origin git@github.com:your-username/your_repo.git
+ ```
+ Kitu atveju jūsų vis tiek sulauksite klausimo apie savo vartotojo vardą ir slaptažodį ir sulauksite autentifikacijos klaidos.
+
](https://join.slack.com/t/firstcontributors/shared_invite/zt-1n4y7xnk0-DnLVTaN6U9xLU79H5Hi62w)
[](https://opensource.org/licenses/MIT)
[](https://www.codetriage.com/roshanjossey/first-contributions)
@@ -111,8 +110,6 @@ Ki ekirungi! Onoowuziza ku ttendekero lya _fork -> clone -> edit -> pull request
Jaguza ekyo ky'oyongeddeko era ogikwase mikwano gyo n'abagoberera nga oyita ku [web app](https://firstcontributions.github.io/#social-share).
-Osobola okuyingira ku team ya slack bw'oba oyagala obuyambi obulala oba olina ebibuuzo. [Yingira team ya slack.](https://firstcontributors.slack.com/join/shared_invite/zt-29qhyr9lt-Bi7WLbgGIFqV7aCEG_grvg#/shared-invite/email).
-
Kati ka tutandikire okukola ku kintu ekirala. Tundese olukalala lwa project ezirina ebizibu ebitalina y'oyinza okutandika n'okukola. Kebera [olukalala lwa project mu web app](https://firstcontributions.github.io/#project-list).
### [Ebirala ebisobola okukuyamba](additional-material/git_workflow_scenarios/additional-material.md)
diff --git a/docs/translations/README.lv.md b/docs/translations/README.lv.md
index 66f86b2f..6b530fe0 100644
--- a/docs/translations/README.lv.md
+++ b/docs/translations/README.lv.md
@@ -1,5 +1,4 @@
[](https://github.com/ellerbrock/open-source-badges/)
-[
](https://join.slack.com/t/firstcontributors/shared_invite/zt-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA)
[](https://opensource.org/licenses/MIT)
[](https://www.codetriage.com/roshanjossey/first-contributions)
@@ -109,8 +108,6 @@ Apsveicam! Tu tikko pabeidzi standarta _fork -> clone -> edit -> PR_ darbplūs
Pastāsti par savu devumu saviem draugiem un sekotājiem, izmantojot [mūsu vietni](https://firstcontributions.github.io/#social-share).
-Tu vari pievienoties arī mūsu slack komandai, ja tev nepieciešama palīdzība vai ir kādi jautājumi. [Pievienojies slack](https://join.slack.com/t/firstcontributors/shared_invite/zt-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA).
-
Tagad tu vari līdzdarboties arī citos projektos. Mēs esam sastādījuši sarakstu ar projektiem, kuros ir vienkāršas problēmas, ar kurām tu varētu sākt. Izpēti [projektu sarakstu mūsu vietnē](https://firstcontributions.github.io/#project-list).
### [Papildu materiāli](../additional-material/git_workflow_scenarios/additional-material.md)
diff --git a/docs/translations/README.me.md b/docs/translations/README.me.md
index 71405b8c..9f8c3837 100644
--- a/docs/translations/README.me.md
+++ b/docs/translations/README.me.md
@@ -1,5 +1,4 @@
[](https://github.com/firstcontributions/open-source-badges)
-[
](https://join.slack.com/t/firstcontributors/shared_invite/zt-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA)
[](https://opensource.org/licenses/MIT)
[](https://www.codetriage.com/roshanjossey/first-contributions)
@@ -14,7 +13,6 @@ _Ako nijeste navikli da koristite komandnu liniju, [evo tutorijala koji koristi
#### Ako nemate git na svojoj mašini, [instalirajte ga ovdje](https://help.github.com/articles/set-up-git/).
## Napravite kopiju repozitorijuma
-
Napravite kopiju _(fork)_ ovog repozitorijuma tako što ćete kliknuti na dugme **fork** na vrhu stranice.
Ovo će kreirati kopiju ovog repozitorijuma na vašem nalogu.
@@ -116,8 +114,6 @@ Uskoro, ja ću spojiti promjene koje ste napravili sa master granom repozitoriju
Proslavite vaš doprinos i podijelite ga sa prijateljima i pratiocima kroz [stranicu](https://firstcontributions.github.io/#social-share).
-Ukoliko vam je potrebna pomoć ili imate neka pitanja, možete da se priključite našem [Slack timu](https://join.slack.com/t/firstcontributors/shared_invite/zt-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA).
-
Sada možete početi da doprinosite i drugim projektima. Sastavili smo listu projekata sa jednostavim problemima na kojima možete početi da radite. Pogledajte [listu projekata na stranici](https://firstcontributions.github.io/#project-list).
### [Dodatni materijali](additional-material/git_workflow_scenarios/additional-material.md)
diff --git a/docs/translations/README.mg.md b/docs/translations/README.mg.md
index 2cb9a192..307648c4 100644
--- a/docs/translations/README.mg.md
+++ b/docs/translations/README.mg.md
@@ -1,5 +1,4 @@
[](https://github.com/ellerbrock/open-source-badges/)
-[
](https://join.slack.com/t/firstcontributors/shared_invite/zt-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA)
[](https://opensource.org/licenses/MIT)
[](https://www.codetriage.com/roshanjossey/first-contributions)
diff --git a/docs/translations/README.ml.md b/docs/translations/README.ml.md
index 0568b4af..d955896d 100644
--- a/docs/translations/README.ml.md
+++ b/docs/translations/README.ml.md
@@ -1,5 +1,4 @@
[](https://github.com/ellerbrock/open-source-badges/)
-[
](https://join.slack.com/t/firstcontributors/shared_invite/zt-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA)
[](https://opensource.org/licenses/MIT)
[](https://www.codetriage.com/roshanjossey/first-contributions)
diff --git a/docs/translations/README.mm_unicode.md b/docs/translations/README.mm_unicode.md
index f8574413..69f9fb13 100644
--- a/docs/translations/README.mm_unicode.md
+++ b/docs/translations/README.mm_unicode.md
@@ -1,5 +1,4 @@
[](https://github.com/firstcontributions/open-source-badges)
-[
](https://join.slack.com/t/firstcontributors/shared_invite/zt-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA)
[](https://opensource.org/licenses/MIT)
[](https://www.codetriage.com/roshanjossey/first-contributions)
diff --git a/docs/translations/README.mn.md b/docs/translations/README.mn.md
new file mode 100644
index 00000000..d580cf9a
--- /dev/null
+++ b/docs/translations/README.mn.md
@@ -0,0 +1,147 @@
+
+[](https://github.com/ellerbrock/open-source-badges/)
+[](https://opensource.org/licenses/MIT)
+[](https://www.codetriage.com/roshanjossey/first-contributions)
+
+
+# Эхний Хувь Нэмэр
+
+Анх удаа ямар нэг зүйл хийхэд үргэлж хэцүү байдаг. Ялангуяа хамтран ажиллаж, алдаа гаргах үед тухгүй санагддаг. Бид шинэ нээлттэй эхийн хувь нэмэр оруулагчид хэрхэн суралцаж, анхны хувь нэмрээ хийх процессыг хялбар болгохыг хүссэн.
+
+Өгүүллэг уншиж, бичлэг үзэх нь тус дөхөмтэй байж болох ч бодитоор нь хийж үзэхээс дээр зүйл үгүй. Энэхүү төсөл нь анхлан суралцагчдад анхны хувь нэмрээ оруулах замыг зааж өгөх, хялбарчлах зорилготой. Хэрэв та анхны хувь нэмрээ хийхийг хүсвэл доорх алхмуудыг дагаарай.
+
+#### *Хэрэв та командын мөр ашиглахад тухгүй байвал [энд бусад хэрэгсэл ашиглах зааврууд бий.](#Бусад-Хэрэгсэл-Ашигласан-Заавар)*
+
+
+
+Хэрэв таны машин дээр git байхгүй бол [суулгана уу](https://help.github.com/articles/set-up-git/).
+
+## Репог салаалж авах (Fork)
+
+Энэ репогийн хуудасны дээд талд байрлах **Fork** товчийг дарна уу.
+Ингэснээр таны GitHub бүртгэл дээр тус репогийн хуулбар үүснэ.
+
+## Репог клон хийх (Clone)
+
+
+
+Одоо энэ репог өөрийн компьютер дээрээ клон хийж авна. GitHub бүртгэл рүүгээ орж, **Clone** товчийг дараад дараа нь *copy to clipboard* тэмдгийг дарна.
+
+Терминал нээгээд дараах командыг ажиллуулна:
+
+```
+
+git clone "та хуулсан url"
+
+```
+
+Энд `"та хуулсан url"` гэдэг нь энэ төслийн таны салаалсан хувилбарын URL юм.
+
+
+
+Жишээ нь:
+
+```
+
+git clone [https://github.com/taniin-ner/first-contributions.git](https://github.com/taniin-ner/first-contributions.git)
+
+```
+
+Энд `taniin-ner` гэдэг нь таны GitHub-н хэрэглэгчийн нэр.
+
+## Салбар (Branch) үүсгэх
+
+Компьютер дээрээ тухайн репо руу орно:
+
+```
+
+cd first-contributions
+
+```
+
+Шинэ салбар үүсгэнэ:
+
+```
+
+git checkout -b
+
+Дараа нь терминалдаа `git status` ажиллуулбал өөрчлөлт гарсныг харуулна.
+
+Өөрчлөлтөө салбартаа нэмнэ:
+
+```
+
+git add Contributors.md
+
+```
+
+Commit хийж хадгална:
+
+```
+
+git commit -m "Add
+
+Дараа нь pull request-ээ илгээнэ.
+
+
+
+Тун удалгүй таны өөрчлөлтүүд гол (master) салбарт нэгтгэгдэх бөгөөд танд мэдэгдэл ирнэ.
+
+## Цааш хаашаа явах вэ?
+
+Баяр хүргэе! Та _fork -> clone -> edit -> PR_ гэсэн стандарт ажлын урсгалыг амжилттай хийж дуусгалаа.
+
+Хувь нэмрээ хийсэндээ баярлаад найзууд, дагагчидтайгаа [энэ вэб апп](https://firstcontributions.github.io/#social-share)-аар дамжуулан хуваалцаарай.
+
+Мөн бид анхлан суралцагчдад зориулсан хялбар асуудлуудтай төслүүдийн жагсаалтыг цуглуулсан байгаа. [Энэ вэб апп доторх төслийн жагсаалтыг](https://firstcontributions.github.io/#project-list) шалгаарай.
+
+### [Нэмэлт материал](../additional-material/git_workflow_scenarios/additional-material.md)
+
+## Бусад Хэрэгсэл Ашигласан Заавар
+
+| |
|
|
| |
|
+| --- | --- | --- | --- | --- | --- |
+| [GitHub Desktop](../gui-tool-tutorials/github-desktop-tutorial.md) | [Visual Studio 2017](../gui-tool-tutorials/github-windows-vs2017-tutorial.md) | [GitKraken](../gui-tool-tutorials/gitkraken-tutorial.md) | [Visual Studio Code](../gui-tool-tutorials/github-windows-vs-code-tutorial.md) | [Atlassian Sourcetree](../gui-tool-tutorials/sourcetree-macos-tutorial.md) | [IntelliJ IDEA](../gui-tool-tutorials/github-windows-intellij-tutorial.md) |
+```
+
+---
+
+
diff --git a/docs/translations/README.mr.md b/docs/translations/README.mr.md
index 7087531b..6b59a02b 100644
--- a/docs/translations/README.mr.md
+++ b/docs/translations/README.mr.md
@@ -1,5 +1,4 @@
[](https://github.com/ellerbrock/open-source-badges/)
-[
](https://join.slack.com/t/firstcontributors/shared_invite/zt-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA)
[](https://opensource.org/licenses/MIT)
[](https://www.codetriage.com/roshanjossey/first-contributions)
diff --git a/docs/translations/README.mx.md b/docs/translations/README.mx.md
index df61d92f..794554f0 100644
--- a/docs/translations/README.mx.md
+++ b/docs/translations/README.mx.md
@@ -1,5 +1,4 @@
[](https://github.com/ellerbrock/open-source-badges/)
-[
](https://join.slack.com/t/firstcontributors/shared_invite/zt-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA)
[](https://opensource.org/licenses/MIT)
[](https://www.codetriage.com/roshanjossey/first-contributions)
diff --git a/docs/translations/README.my.md b/docs/translations/README.my.md
index a2288cd0..4abf1ffe 100644
--- a/docs/translations/README.my.md
+++ b/docs/translations/README.my.md
@@ -1,5 +1,4 @@
[](https://github.com/ellerbrock/open-source-badges/)
-[
](https://join.slack.com/t/firstcontributors/shared_invite/zt-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA)
[](https://opensource.org/licenses/MIT)
[](https://www.codetriage.com/roshanjossey/first-contributions)
@@ -105,8 +104,6 @@ Tahniah! Anda baru saja selesai melaksanakan aliran kerja standard _fork -> clon
Raikan sumbangan anda dan kongsi dengan rakan-rakan serta pengikut melalui [aplikasi web](https://firstcontributions.github.io/#social-share).
-Anda boleh menyertai pasukan 'Slack' kami sekiranya anda memerlukan bantuan atau mempunyai sebarang pertanyaan. [Sertai pasukan Slack](https://join.slack.com/t/firstcontributors/shared_invite/zt-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA).
-
Mari kita mulakan dengan menyumbang kepada projek lain. Kami telah menyediakan senarai projek dengan isu-isu mudah yang boleh anda mula sumbangkan. Sila rujuk [senarai projek dalam aplikasi web](https://firstcontributions.github.io/#project-list).
### [Bahan tambahan](../additional-material/git_workflow_scenarios/additional-material.md)
diff --git a/docs/translations/README.np.md b/docs/translations/README.np.md
index 12b4d4df..51973145 100644
--- a/docs/translations/README.np.md
+++ b/docs/translations/README.np.md
@@ -201,7 +201,8 @@ git push -u origin add-ram-regmi
तपाईंले योगदान(contribution) दिनु भएकोमा खुशी मनाउनुहोस् र [web app](https://firstcontributions.github.io/#social-share) मा गएर आफ्नो friends and follower हरूमा पनि शेयर गर्नुहोस् ।
-तपाइँलाई कुनै पनि मद्दत चाहिन्छ वा कुनै प्रश्न छ भने तपाइँ हाम्रो slack team मा सामेल हुन सक्नुहुनेछ। [join slack team](https://join.slack.com/t/firstcontributors/shared_invite/zt-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA).
+यदि तपाईंलाई थप अभ्यास चाहियो भने, [कोड योगदानहरू](https://github.com/roshanjossey/code-contributions) हेर्नुहोस्।
+
अब तपाईले अन्य प्रोजेक्टहरूमा योगदान दिन सुरु गर्नुहोस्। हामीले तपाईंले गर्न सक्नुहुने सजिलो समस्याहरू(issues)को साथमा प्रोजेक्टहरूको सूची संकलन गरेका छौ हेर्नुहोस् ।. [list of projects in the web app](https://firstcontributions.github.io/#project-list)।
diff --git a/docs/translations/README.pb.md b/docs/translations/README.pb.md
index d53d6107..43d093d1 100644
--- a/docs/translations/README.pb.md
+++ b/docs/translations/README.pb.md
@@ -1,5 +1,4 @@
[](https://github.com/ellerbrock/open-source-badges/)
-[
](https://join.slack.com/t/firstcontributors/shared_invite/zt-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA)
[](https://opensource.org/licenses/MIT)
# ਪਹਿਲਾ ਯੋਗਦਾਨ
@@ -104,7 +103,7 @@ git push origin
+
+
+
+
+
+
+
-که د کمانډ لاین سره راحت نه یاست [ کولای شی تصویر بڼه دلته پرمخ یوسئ](https://github.com/firstcontributions/first-contributions#tutorials-using-other-tools)
+---
-که چېرې مو git نه وي انسټال کړی [له دغه ځایه یې درښکته او انسټال یې کړئ](https://help.github.com/articles/set-up-git/)
+## لومړی ګډون
-
-###
+
+## دا ذخیره (repository) کلون کړئ
-###
-
-```git
-git clone https://github.com/MasihKarimi/first-contributions.git
-```
-
- که چېرې په دې لړ کې د کومې ستونزې سره مخ شوئ دا ځاې کېکاږئ
+که چېرې په دې لړ کې د کومې ستونزې سره مخ شوئ دا ځای کېکاږئ
-- ### د تصدیق کولو تېروتنه
- remote: Support for password authentication was removed on August 13, 2021. Please use a personal access token instead.
- remote: Please see https://github.blog/2020-12-15-token-authentication-requirements-for-git-operations/ for more information.
- fatal: Authentication failed for 'https://github.com/
- [په دې کیټ هب ښونه کې زده کړئ چې څنګه پورته ستونزه حل کړئ](https://docs.github.com/en/authentication/connecting-to-github-with-ssh/adding-a-new-ssh-key-to-your-github-account)
+که چېرته ستاسې ستونزه داسي وي.
+
+
+remote: Support for password authentication was removed on August 13, 2021. Please use a personal access token instead.
+remote: Please see https://github.blog/2020-12-15-token-authentication-requirements-for-git-operations/ for more information.
+fatal: Authentication failed for 'https://github.com/<your-username>/first-contributions.git/
+
+
-
- |
|
|
| |
|
| ----------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| [GitHub Desktop](gui-tool-tutorials/github-desktop-tutorial.md) | [Visual Studio 2017](gui-tool-tutorials/github-windows-vs2017-tutorial.md) | [GitKraken](gui-tool-tutorials/gitkraken-tutorial.md) | [Visual Studio Code](gui-tool-tutorials/github-windows-vs-code-tutorial.md) | [Atlassian Sourcetree](gui-tool-tutorials/sourcetree-macos-tutorial.md) | [IntelliJ IDEA](gui-tool-tutorials/github-windows-intellij-tutorial.md) |
\ No newline at end of file
+| [GitHub Desktop](gui-tool-tutorials/github-desktop-tutorial.md) | [Visual Studio 2017](gui-tool-tutorials/github-windows-vs2017-tutorial.md) | [GitKraken](gui-tool-tutorials/gitkraken-tutorial.md) | [Visual Studio Code](gui-tool-tutorials/github-windows-vs-code-tutorial.md) | [Atlassian Sourcetree](gui-tool-tutorials/sourcetree-macos-tutorial.md) | [IntelliJ IDEA](gui-tool-tutorials/github-windows-intellij-tutorial.md) |
+
+
](https://join.slack.com/t/firstcontributors/shared_invite/zt-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA)
[](https://opensource.org/licenses/MIT)
[](https://www.codetriage.com/roshanjossey/first-contributions)
diff --git a/docs/translations/README.pus.md b/docs/translations/README.pus.md
deleted file mode 100644
index d8b8e6bd..00000000
--- a/docs/translations/README.pus.md
+++ /dev/null
@@ -1,107 +0,0 @@
-[](https://github.com/firstcontributions/open-source-badges)
-[
](https://join.slack.com/t/firstcontributors/shared_invite/zt-vchl8cde-S0KstI_jyCcGEEj7rSTQiA)
-[](https://opensource.org/licenses/MIT)
-[](https://www.codetriage.com/roshanjossey/first-contributions)
-
-
-
-#### که تاسو git نصب نلرئ [له دې ځایه نصب کړئ](https://help.github.com/articles/set-up-git/).
-
-## د دې ریپوزیتوری فورک کړئ
-د دې پاڼې په سر کې د Fork تڼۍ په کلیک کولو سره دا ذخیره فورک کړئ.
-دا به ستاسو په حساب کې د دې ذخیره کاپي رامینځته کړي.
-
-## فورک شوی ریپازیتوری کلون Clone کړئ
-
-
-
-اوس خپل ماشین ته د فورک شوي ذخیره کلون کړئ. خپل GitHub حساب ته لاړ شئ، د فورک شوي ریپازیتوری خلاص کړئ، د Code تڼۍ باندې کلیک وکړئ او بیا د کلپ بورډ ته د Copy To Clipboard باندې کلیک وکړئ.
-
-بیا یو ټرمینل خلاص کړئ او لاندې کمانډ چل کړئ:
-```
-git clone "url you just copied"
-```
-چیرته چې "url you just copied" (پرته د نرخ نښه) د دې ریپازیتوری url دی (ستاسو د دې پروژې فورک). د url ترلاسه کولو لپاره مخکیني ګامونه وګورئ.
-
-
-
-د مثال په توګه:
-```
-git clone https://github.com/this-is-you/first-contributions.git
-```
-چیرته چې 'this-is-you' ستاسو د GitHub کاربری نوم دی. دلته تاسو خپل کمپیوټر ته په GitHub کې د لومړۍ مرستې ذخیره مینځپانګې کاپي کوئ.
-
-### یوه څانګه جوړه کړئ
-په خپل کمپیوټر کې د ریپوزیتوری لارښود ته بدل کړئ (که تاسو دمخه نه لرئ):
-```
-cd first-contributions
-```
-اوس د `git switch` کمانډ په کارولو سره څانګه جوړه کړئ:
-```
-git checkout -b your-new-branch-name
-```
-د مثال په توګه:
-```
-git checkout -b add-alonzo-church
-```
-
-### اړین بدلونونه وکړئ او دا بدلونونه Commit کړئ
-اوس د `Contributors.md` فایل په متن ایډیټر کې خلاص کړئ، خپل نوم پکې اضافه کړئ. دا د فایل په پیل یا پای کې مه اضافه کړئ. په منځ کې هر ځای کېږدئ. اوس، فایل ذخیره کړئ.
-
-
-
-که تاسو د پروژې موقعیت ته لاړ شئ او د `git status` کمانډ اجرا کړئ ، نو تاسو به وګورئ چې بدلونونه شتون لري.
-
-د `git add` کمانډ په کارولو سره دا بدلونونه په هغه څانګه کې اضافه کړئ چې تاسو یې رامینځته کړی:
-```
-git add Contributors.md
-```
-
-اوس دا بدلونونه د `git commit` کمانډ په کارولو سره ترسره کړئ:
-```
-git commit -m "Add
-
-اوس د پلولو غوښتنه (Pull Request) وسپارئ.
-
-
-
-ډیر ژر به زه ستاسو ټول بدلونونه د دې پروژې په اصلي څانګه کې یوځای کړم. تاسو به د خبرتیا بریښنالیک ترلاسه کړئ کله چې بدلونونه یوځای شي.
-
-## راتلونکی څه شی دی
-مبارک شه! تاسو یوازې د معیاري فورک(Fork)، کلون(Clone)، ایډیټ(Edit)، او پلولو غوښتنې (Pull Request) کاري فلو بشپړ کړی چې تاسو به ډیری وختونه د مرسته کونکي په توګه ورسره مخ شئ!
-
-خپله ونډه ولمانځئ او له خپلو ملګرو او پیروانو سره یې شریک کړئ [دلته](https://firstcontributions.github.io/#social-share) لاړ شئ.
-
-همدارنګه، تاسو کولی شئ زموږ د Slack ټیم سره یوځای شئ که تاسو کومې مرستې ته اړتیا لرئ یا کومه پوښتنه لرئ. [دلته کلیک وکړی](https://join.slack.com/t/firstcontributors/shared_invite/zt-vchl8cde-S0KstI_jyCcGEEj7rSTQiA)
-
-اوس راځئ چې تاسو په نورو پروژو کې د مرستې سره پیل وکړو. موږ د اسانه مسلو سره د پروژو لیست ترتیب کړی چې تاسو یې پیل کولی شئ. [بشپړ ی وګوره](https://firstcontributions.github.io/#project-list)
-
-### [نور معلومات](additional-material/git_workflow_scenarios/additional-material.md)
-
-## د-نورو-وسیلو-کارولو-لارښوونې
-| |
|
|
| |
|
-| ----------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| [GitHub Desktop](gui-tool-tutorials/github-desktop-tutorial.md) | [Visual Studio 2017](gui-tool-tutorials/github-windows-vs2017-tutorial.md) | [GitKraken](gui-tool-tutorials/gitkraken-tutorial.md) | [Visual Studio Code](gui-tool-tutorials/github-windows-vs-code-tutorial.md) | [Atlassian Sourcetree](gui-tool-tutorials/sourcetree-macos-tutorial.md) | [IntelliJ IDEA](gui-tool-tutorials/github-windows-intellij-tutorial.md) |
-| | | | | | |
-
](https://join.slack.com/t/firstcontributors/shared_invite/zt-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA)
[](https://opensource.org/licenses/MIT)
[](https://www.codetriage.com/roshanjossey/first-contributions)
diff --git a/docs/translations/README.se.md b/docs/translations/README.se.md
index 2d1bb805..0e18acfe 100644
--- a/docs/translations/README.se.md
+++ b/docs/translations/README.se.md
@@ -31,7 +31,7 @@ Klona repot till din dator. Gå till ditt GitHub-konto och klicka på clone-knap
Öppna en terminal och kör följande kommando:
-```
+```bash
git clone "url you just copied"
```
där "url you just copied" (utan citat-tecken) är URL:en för detta repo (din fork för detta projekt). Se föregående steg för att hitta URL:en.
@@ -39,7 +39,7 @@ där "url you just copied" (utan citat-tecken) är URL:en för detta repo (din f
Till exempel:
-```
+```bash
git clone https://github.com/this-is-you/first-contributions.git
```
där `this-is-you` är ditt användarnamn på GitHub. På detta sätt kopierar du innehållet i repot till din dator.
@@ -48,17 +48,17 @@ där `this-is-you` är ditt användarnamn på GitHub. På detta sätt kopierar d
Gå till repo-katalogen på din dator (om du inte redan står i den katalogen):
-```
+```bash
cd first-contributions
```
-Nu skapar du en branch genom att använda `git checkout`-kommandot:
-```
+Nu skapar du en branch genom att använda kommandot `git checkout`:
+```bash
git checkout -b
-Ge kommando `git status` i projektkatalogen för att se de ändringar du gjort.
+Mata in kommandot `git status` i projektkatalogen för att se de ändringar du gjort.
-Lägg till dina ändringar genom att använda kommando `git add -A`:
+Lägg till dina ändringar genom att använda kommando `git add`:
-```
+```bash
git add Contributors.md
```
Commita dina ändringar genom att använda `git commit`:
-```
+```bash
git commit -m "Add
+**සටහන:** ඔයාගේ computer එකේ git install කරලා නැත්නම්, මුලින්ම [මේ link එකෙන් ගිහින් install කරගන්න](https://docs.github.com/en/get-started/quickstart/set-up-git).
-ඔබේ පරිගණකයේ git නොමැති නම්, [ස්ථාපනය කරන්න](https://help.github.com/articles/set-up-git/).
+## 1. මේ Repository එක Fork කරගන්න
-## මෙම ගබඩාව fork කිරීම
+
-පිටුවේ ඉහළින් ඇති fork බොත්තම ක්ලික් කිරීමෙන් මෙය කළ හැකිය. මෙය ඔබගේ ගිණුමේ
-පිටපතක් සාදනු ඇත.
+මේ පිටුවේ උඩ දකුණු පැත්තේ තියෙන 'Fork' button එක click කරන්න. එතකොට මේ repository එකේ copy එකක් ඔයාගේ GitHub ගිණුමේ හැදෙයි.
+## 2. Fork කරගත්තු Repository එක Clone කරගන්න
-## මෙම ගබඩාව clone කරන්න
+
-
+දැන් ඔයා fork කරගත්ත repository එක ඔයාගේ computer එකට clone කරගන්න ඕන. ඒකට, ඔයාගේ GitHub ගිණුමට යන්න. Fork කරගත්ත repository එක open කරලා, 'Code' button එක click කරලා, එන URL එක copy කරගන්න.
-දැන් ඔබේ පරිගණකට fork කරපු repository ය ක්ලෝන කරන්න. ඔබට ඔබගේ GitHub ගිණුමට ගොස් fork කරපු repository විවෘත කර clone බොත්තම ක්ලික් කර එය පසුරු පුවරුවට (clipboard) පිටපත් කිරීමෙන් මෙය කළ හැක.
+දැන් ඔබේ පරිගණකට fork කරපු repository ය ක්ලෝන කරන්න. ඔබට ඔබගේ GitHub ගිණුමට ගොස් fork කරපු repository විවෘත කර code බොත්තම ක්ලික් කර,පසුව SSH ටැබය මත ක්ලික් කිරීමෙන් ලැබෙන url එක පසුරු පුවරුවට (clipboard) පිටපත් කිරීමෙන් මෙය කළ හැක.
-*terminal* හෝ *command prompt* විවෘත කර පහත git විධානය ක්රියාත්මක කරන්න:
+දැන් ඔයාගේ computer එකේ terminal (command prompt) එක open කරලා, මේ git command එක run කරන්න:
-```
-git clone "ඔබ පිටපත් කළ url එක"
+```bash
+git clone "ඔයා දැන් copy කරගත්තු url එක"
```
-මෙහි "ඔබ පිටපත් කළ url එක" (උපුටා දැක්වීම් ලකුණු නොමැතිව) මෙම ගබඩාවේ url එක වේ (මෙම ව්යාපෘතියේ ඔබේ දෙබල (fork) ). url එක ලබා ගැනීමට පෙර පියවර බලන්න.
+"ඔයා දැන් copy කරගත්තු url එක" කියන තැනට (කමාන්ඩ් එකේදී උඩු කොමා දාන්නේ නැතුව) ඔයාගේ forked repository එකේ URL එක දාන්න.
-
+උදාහරණයක් විදියට:
-
-උදාහරණ වශයෙන්:
-
-```
-git clone https://github.com/මෙය-ඔබයි/first-contributions.git
+```bash
+git clone git@github.com:this-is-you/first-contributions.git
```
-මෙහි `මෙය ඔබයි` යනු GitHub පරිශීලක නාමයයි. මෙය ඔබගේ GitHub ගිණුමේ first-contributions repository පිටපතක් සෑදීමට ඔබට ඉඩ සලසයි.
+`this-is-you` කියන තැනට ඔයාගේ GitHub username එක එන්න ඕන. මේ command එකෙන් කරන්නේ, *first-contributions repository* එකේ අන්තර්ගතය ඔයාගේ computer එකට copy කරන එකයි.
-## ශාඛාවක් නිර්මාණය කිරීම
+## 3. අලුත් Branch එකක් හදන්න
-ඔබේ පරිගණකයේ ගබඩා නාමාවලියට වෙනස් කරන්න (ඔබ දැනටමත් එහි නොමැති නම්):
+Terminal එකේ ඉඳන් ඔයා දැන් clone කරගත්ත repository එකේ folder එකට යන්න (ඔයා දැනටමත් ඒක ඇතුලේ නෙවෙයි නම්):
-```
+```bash
cd first-contributions
```
+දැන්, ඔයාගේ වෙනස්කම් ටික කරන්න අලුත් branch එකක් හදන්න `git switch` command එක run කරන්න:
-දැන් `git checkout` විධානය භාවිතා කරමින් ශාඛාවක් සාදන්න:
-
-```
-git checkout -b <ඔබගේ-නව-ශාඛාවේ-නම>
+```bash
+git switch -c ඔයාගේ-අලුත්-branch-එකේ-නම
```
-උදාහරණ වශයෙන්:
+උදාහරණයක් විදියට:
-```
-git checkout -b add-luke-oliff
+```bash
+git switch -c add-kasun-perera
```
-(ශාඛාවේ නමට *add* එකතු කිරීම අවශ්ය නොවේ, නමුත් එය සාධාරණ දෙයකි, මන්ද මෙම ශාඛාවේ අරමුණ ඔබේ නම ලැයිස්තුවකට එකතු කිරීමයි.)
+ git switch භාවිතා කරන විට error එකක් ආවොත්, මෙතන click කරන්න:
-## අවශ්ය වෙනස්කම් සිදු කර commit කරන්න
+"Git: `switch` is not a git command. See `git –help`" වගේ error පණිවිඩයක් ආවොත්, ඒකට හේතුව වෙන්න පුළුවන් ඔයා git වල පරණ version එකක් use කරන එක.
-දැන් Contributors.md ගොනුව පෙළ සංස්කාරකයක විවෘත කරන්න, එයට ඔබේ නම එක් කරන්න. ගොනුවේ ආරම්භයේ හෝ අවසානයේ එය එකතු නොකරන්න. එය අතර මැද ඕනෑම තැනකට එකතු කරන්න. දැන්, ගොනුව save කරන්න.
+ඒ වගේ වෙලාවක, `git switch` වෙනුවට `git checkout` command එක use කරලා බලන්න:
+
+```bash
+git checkout -b your-new-branch-name
+```
+
+
-ඔබ ව්යාපෘති නාමාවලිය වෙත ගොස් git status විධානය ක්රියාත්මක කළහොත්, වෙනස්කම් ඇති බව ඔබට පෙනෙනු ඇත.
+දැන් `Contributors.md` file එක ඔයා කැමති text editor එකකින් (උදා: VS Code, Notepad) open කරලා, ඔයාගේ නම ඒකට එකතු කරන්න. File එකේ මුලටම හරි අගටම හරි නම දාන්න එපා. මැද හරියට කොතනට හරි දාන්න. දැන් file එක save කරන්න.
-`git add` විධානය භාවිතයෙන් ඔබ දැන් නිර්මාණය කළ ශාඛාවට එම වෙනස්කම් එක් කරන්න:
+ඔයා project folder එකේ terminal එකට ගිහින් `git status` කියලා type කලොත්, ඔයා කරපු වෙනස්කම් ටික පෙන්නයි.
-```
+ඒ වෙනස්කම් ටික ඔයා හදපු අලුත් branch එකට add කරන්න `git add` command එක run කරන්න:
+
+```bash
git add Contributors.md
```
-දැන් `git commit` විධානය භාවිතා කර එම වෙනස්කම් සිදු කරන්න:
+දැන්, `git commit` command එකෙන් මේ වෙනස්කම් ටික commit කරන්න:
-```
-git commit -m "Add <ඔයාගේ_නම> to Contributors list"
+```bash
+git commit -m "Add your-name to Contributors list"
```
-`<ඔබේ_නම>` වෙනුවට ඔබේ නම ඇතුල් කරන්න.
+your-name` කියන තැනට ඔයාගේ නම දාන්න.
-## GitHub වෙත වෙනස්කම් තල්ලු කරන්න
+## 5. වෙනස්කම් ටික GitHub වලට Push කරන්න
-`git push` විධානය භාවිතයෙන් ඔබගේ වෙනස්කම් තල්ලු කරන්න:
-```
-git push origin -u <ඔබගේ-නව-ශාඛාවේ-නම>
+ඔයා කරපු වෙනස්කම් ටික GitHub එකට push (upload) කරන්න `git push` command එක run කරන්න:
+
+```bash
+git push -u origin ඔයාගේ-branch-එකේ-නම
```
-`<ඔබගේ-නව-ශාඛාවේ-නම>` ඔබ කලින් නිර්මාණය කළ නම සමඟ ශාඛාව ප්රතිස්ථාපනය කරන්න.
+ඔයාගේ-branch-එකේ-නම` කියන තැනට ඔයා කලින් හදපු branch එකේ නම දාන්න.
-## සමාලෝචනය සඳහා ඔබේ වෙනස්කම් ඉදිරිපත් කරන්න
+## 6. ඔයාගේ වෙනස්කම් Pull Request එකක් ලෙස යවන්න
+
-ඔබ GitHub හි ඔබගේ ගබඩාවට ගියහොත්, ඔබට `Compare & pull request` බොත්තමක් පෙනෙනු ඇත. එම බොත්තම මත ක්ලික් කරන්න.
+ඔයාගේ GitHub ගිණුමේ තියෙන repository එකට ගියාම, ඔයාට `'Compare & pull request'` කියලා button එකක් පෙනෙයි. ඒක click කරන්න.
-
+
-දැන් pull request ඉදිරිපත් කරන්න.
+දැන් ඔයාගේ pull request එක submit කරන්න.
-
-
-මම ළඟදීම ඔබේ සියලු වෙනස්කම් මෙම ව්යාපෘතියේ ප්රධාන ශාඛාවට ඒකාබද්ධ කරමි. වෙනස්කම් ඒකාබද්ධ කළ පසු ඔබට දැනුම්දීමේ Email පණිවිඩයක් ලැබෙනු ඇත.
+ඉක්මනින්ම මම ඔයාගේ වෙනස්කම් ටික මේ project එකේ ප්රධාන (main) branch එකට merge කරන්නම්. ඒක merge කරාට පස්සේ ඔයාට notification email එකක් එයි.
## මෙතැන් සිට කොහේ යන්නද?
-සුභ පැතුම්! ඔබ දායකයෙකු ලෙස සම්මත 'fork -> clone -> edit -> pull request' කාර්ය ප්රවාහය ඔබ සම්පුර්ණ කර ඇත!
+සුභ පැතුම්! Open-source contributor කෙනෙක් විදියට ඔයා නිතරම භාවිතා කරන **fork -> clone -> edit -> pull request** කියන සම්පූර්ණ ක්රියාවලියම ඔයා දැන් සාර්ථකව අවසන් කරලා තියෙන්නේ!
-ඔබේ දායකත්වය සහ ඔබේ මිතුරන් සහ අනුගාමිකයින් සමඟ සමරන්න [web app](https://firstcontributions.github.io/#social-share) ගිහින් share කරන්න.
+ඔයාගේ මේ පළමු දායකත්වය සමරන්න, ඒ වගේම යාළුවොත් එක්ක share කරගන්න [web app](https://firstcontributions.github.io/#social-share) එකට යන්න.
-ඔබට කිසියම් උදව්වක් අවශ්ය නම් හෝ කිසියම් ප්රශ්නයක් ඇත්නම් ඔබට අපගේ slack කණ්ඩායමට සම්බන්ධ විය හැකිය. [අපගේ slack කණ්ඩායමට එක්වන්න](https://join.slack.com/t/firstcontributors/shared_invite/zt-kpbyrmkk-JDkRtchcvRvQ0qK4iPmyvA)..
+තවත් පුහුණුවක් ලබන්න කැමති නම්, [code contributions](https://github.com/roshanjossey/code-contributions) බලන්න.
-දැන් අපි ඔබට වෙනත් ව්යාපෘති සඳහා දායක වීම ආරම්භ කරමු. ඔබට ආරම්භ කළ හැකි පහසු ගැටළු සහිත ව්යාපෘති ලැයිස්තුවක් අපි සම්පාදනය කර ඇත්තෙමු. පරීක්ෂා කරන්න [web app ව්යාපෘති ලැයිස්තුව](https://firstcontributions.github.io/#project-list).
+දැන් ඔයාට වෙනත් projects වලටත් contribute කරන්න පටන්ගන්න උදව් කරමු. අපි ඔයාට පටන් ගන්නම ලේසි issues (ගැටළු) තියෙන projects ලැයිස්තුවක් හදලා තියෙනවා. [Web app එකෙන් ඒ projects ලැයිස්තුව බලන්න](https://firstcontributions.github.io/#project-list).
### [අතිරේක සම්පත්](../additional-material/git_workflow_scenarios/additional-material.md)
-## වෙනත් මෙවලම් භාවිතා කරන නිබන්ධන
+## වෙනත් මෙවලම් සඳහා වන මාර්ගෝපදේශ
| |
|
|
| |
|
| ----------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
diff --git a/docs/translations/README.ta.md b/docs/translations/README.ta.md
index edff6820..95b2919c 100644
--- a/docs/translations/README.ta.md
+++ b/docs/translations/README.ta.md
@@ -1,5 +1,4 @@
[](https://github.com/firstcontributions/open-source-badges)
-[
](https://join.slack.com/t/firstcontributors/shared_invite/zt-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA)
[](https://opensource.org/licenses/MIT)
[](https://www.codetriage.com/roshanjossey/first-contributions)
@@ -78,7 +77,7 @@ git checkout -b உங்கள்-கிளையின்-பெயர்
## தேவையான மாற்றங்களைச் செய்து அந்த மாற்றங்களை commit செய்யுங்கள்
-இப்போது *text editor* அல்லது *notepad* இல் `Contribitors.md` கோப்பைத் திறந்து, அதில் உங்கள் பெயரைச் சேர்க்கவும். கோப்பின் தொடக்கத்திலோ அல்லது முடிவிலோ இதைச் சேர்க்க வேண்டாம். இடையில் எங்கும் வைக்கவும். இப்போது, கோப்பை சேமிக்கவும்.
+இப்போது *text editor* அல்லது *notepad* இல் `Contributors.md` கோப்பைத் திறந்து, அதில் உங்கள் பெயரைச் சேர்க்கவும். கோப்பின் தொடக்கத்திலோ அல்லது முடிவிலோ இதைச் சேர்க்க வேண்டாம். இடையில் எங்கும் வைக்கவும். இப்போது, கோப்பை சேமிக்கவும்.
@@ -141,7 +140,7 @@ GitHub இல் உள்ள உங்கள் களஞ்சியத்த
உங்கள் பங்களிப்பைக் கொண்டாடுங்கள் மற்றும் உங்கள் நண்பர்கள் மற்றும் பின்தொடர்பவர்களுடன் [web app](https://firstcontributions.github.io/#social-share) சென்று பகிர்ந்து கொள்ளுங்கள்.
-உங்களுக்கு ஏதேனும் உதவி தேவைப்பட்டால் அல்லது ஏதேனும் கேள்விகள் இருந்தால் எங்கள் slack team இல் இணையலாம். [Join our slack crew](https://join.slack.com/t/firstcontributors/shared_invite/zt-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA)..
+உங்களுக்கு மேலும் பயிற்சி தேவைப்பட்டால், [code contributions](https://github.com/roshanjossey/code-contributions) என்னும் செயலை சரிபார்க்கலாம்.
இப்போது மற்ற திட்டங்களுக்கு பங்களிப்பதன் மூலம் தொடங்குவோம். நீங்கள் தொடங்கக்கூடிய எளிதான சிக்கல்களுடன் திட்டங்களின் பட்டியலை நாங்கள் தொகுத்துள்ளோம். பாருங்கள் [the list of projects in the web app](https://firstcontributions.github.io/#project-list).
diff --git a/docs/translations/README.te.md b/docs/translations/README.te.md
index 1b62c438..9c50be69 100644
--- a/docs/translations/README.te.md
+++ b/docs/translations/README.te.md
@@ -1,38 +1,26 @@
[](https://github.com/ellerbrock/open-source-badges/)
-[
](https://join.slack.com/t/firstcontributors/shared_invite/zt-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA)
[](https://opensource.org/licenses/MIT)
[](https://www.codetriage.com/roshanjossey/first-contributions)
# ఓపెన్సోర్స్కు మీ మొదటి సహకారం
-వ్యాసాలు చదవడం & చూడటం ట్యుటోరియల్స్ సహాయపడతాయి, కానీ వాస్తవంగా ఆచరణాత్మక వాతావరణంలో నేర్పిస్తున్నదాని కంటే మెరుగైనది ఏమిటి?
+ఇది కష్టం. మీరు ఏదైనా మొదటిసారి చేస్తున్నప్పుడు, ముఖ్యంగా ఇతరులతో కలిసి పని చేస్తున్నప్పుడు, తప్పులు చేయడం సౌకర్యంగా ఉండదు. కానీ ఓపెన్ సోర్స్ అంటే సహకారం మరియు కలిసి పనిచేయడం. మొదటిసారి ఓపెన్ సోర్స్ కంట్రిబ్యూటర్లు నేర్చుకోవాలని మరియు కంట్రిబ్యూట్ చేయాలని అనుకునే విధానాన్ని సరళం చేయాలని మేము అనుకుంటున్నాము.
-మార్గదర్శిని అందించడం మరియు ఈ ప్రాజెక్ట్ ప్రారంభకులకు వారి మొదటి ఓపెన్ సోర్స్ సహకారం అందించే విధానాన్ని సరళీకరించడం మరియు మార్గనిర్దేశం చేయడం లక్ష్యంగా పెట్టుకుంది. మీరు మీ మొదటి ఓపెన్ సోర్స్స హకారం అందించాలని చూస్తున్నట్లయితే, దిగువ దశలను అనుసరించండి.
+వ్యాసాలు చదవడం మరియు ట్యుటోరియల్స్ చూడటం సహాయపడవచ్చు, కానీ వాస్తవంగా ఆచరణాత్మక వాతావరణంలో చేయడం కంటే మెరుగైనది ఏముంది? ఈ ప్రాజెక్ట్ యొక్క లక్ష్యం ప్రారంభకులకు మార్గదర్శకత్వం మరియు వారి మొదటి కంట్రిబ్యూషన్ చేసే విధానాన్ని సరళీకరించడం. మీరు మీ మొదటి కంట్రిబ్యూషన్ చేయాలని చూస్తున్నట్లయితే, దిగువ దశలను అనుసరించండి.
-
-#### *మీకు ఆదేశ పంక్తితో సౌకర్యంగా లేకపోతే, [ఇక్కడ GUI సాధనాలను ఉపయోగించి ట్యుటోరియల్స్ ఉన్నాయి.](#ఇతర-సాధనాలను-ఉపయోగించి-ట్యుటోరియల్స్)*
-
-
-
-
-
-మొదటిసారి ఓపెన్ సోర్స్ కొరకు సహకరించాలి అనుకునే ప్రారంభకులకు పద్దతులను సులభతరం చేయడం ఈ ప్రాజెక్ట్ **ముఖ్య ఉద్దేశం**
-
- మీరు మొదటిసారి ఒపెన్ సోర్స్ ప్రాజెక్ట్ లకొరకు కాంట్రిబ్యూట్ చేయాలి అనుకుంటే కింది సూచనలు పాటించండి.
-
-మీరు `గిట్(git)`వర్షన్ కట్రోల్ సిస్టమ్ తో సౌకర్యవంతంగా లేకపోతే [ఇక్కడ GUI సాధనాలను ఉపయోగించి ట్యుటోరియల్స్ ఉన్నాయి.](#ఇతర-సాధనాలను-ఉపయోగించి-ట్యుటోరియల్స్)*
+#### *మీకు కమాండ్ లైన్తో సౌకర్యంగా లేకపోతే, [ఇక్కడ GUI సాధనాలను ఉపయోగించి ట్యుటోరియల్స్ ఉన్నాయి.](#ఇతర-సాధనాలను-ఉపయోగించి-ట్యుటోరియల్స్)*
-మీ కంప్యూటర్ లో `GIT` లేకపోతే, [గిట్ వర్షన్ కంట్రోల్ సిస్టమ్ ను ఇన్స్టాల్ చేయండి](https://help.github.com/articles/set-up-git/).
+#### మీ కంప్యూటర్లో git లేకపోతే, [దాన్ని ఇన్స్టాల్ చేయండి](https://docs.github.com/en/get-started/quickstart/set-up-git).
-## ఈ రిపోజిటరీని ఫోర్క్ చెయ్యండి
+## ఈ రిపోజిటరీని ఫోర్క్ చేయండి
-ఈ రిపోజిటరీని ఫోర్క్ చెయ్యండి ఈ పేజీ ఎగువ భాగంలో ఫోర్క్ బటన్ పై క్లిక్ చేయడం ద్వారా క్లిక్ చేయండి.
+ఈ రిపోజిటరీని ఫోర్క్ చేయండి ఈ పేజీ ఎగువ భాగంలో ఫోర్క్ బటన్పై క్లిక్ చేయడం ద్వారా.
ఇది మీ ఖాతాలో ఈ రిపోజిటరీ కాపీని సృష్టిస్తుంది.
-## ఈ రిపోజిటరీని క్లోన్ చెయ్యండి
+## రిపోజిటరీని క్లోన్ చేయండి
@@ -125,7 +113,7 @@ git push origin
](https://join.slack.com/t/firstcontributors/shared_invite/zt-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA)
[](https://opensource.org/licenses/MIT)
[](https://www.codetriage.com/roshanjossey/first-contributions)
-#### _[Başka dillerde](translations/Translations.md) okamak._
-
-[](translations/README.al.md)[
](translations/README.uz.md)[
](translations/README.aze.md)[
](translations/README.bn.md)[
](translations/README.bg.md)[
](translations/README.pt_br.md)[
](translations/README.ca.md)[](translations/README.zh-cn.md)[
](translations/README.cs.md)[
](translations/README.de.md)[
](translations/README.da.md)[
](translations/README.eg.md)[
](translations/README.es.md)[
](translations/README.fr.md)[
](translations/README.gl.md)[](translations/README.gr.md)[
](translations/README.ge.md)[
](translations/README.hu.md)[
](translations/README.id.md)[
](translations/README.hb.md)[
](translations/Translations.md)[
](translations/README.ta.md)[
](translations/README.fa.md)[
](translations/README.pus.md)[
](translations/README.it.md)[
](translations/README.ja.md)[
](translations/README.si.md)[
](translations/README.kws.md)[
](translations/README.ko.md)[
](translations/README.lt.md)[
](translations/README.ro.md)[
](translations/README.mm_unicode.md)[
](translations/README.mk.md)[
](translations/README.mx.md)[
](translations/README.my.md)[
](translations/README.nl.md)[
](translations/README.no.md)[
](translations/README.np.md)[
](translations/README.tl.md)[
](translations/README.en-pirate.md)[](translations/README.ur.md)[
](translations/README.pl.md)[
](translations/README.pt-pt.md)[
](translations/README.ru.md)[
](translations/README.ar.md)[
](translations/README.se.md)[
](translations/README.slk.md)[
](translations/README.sl.md)[
](translations/README.th.md)[
](translations/README.tr.md)[
](translations/README.zh-tw.md)[
](translations/README.ua.md)[
](translations/README.vn.md)[
](translations/README.zul.md)[
](translations/README.afk.md)[
](translations/README.igb.md)[
](translations/README.yor.md)[
](translations/README.hau.md)[
](translations/README.lv.md)[
](translations/README.fi.md)[
](translations/README.by.md)[
](translations/README.sr.md)[
](translations/README.kz.md)[
](translations/README.bih.md)[
](translations/README.bih.md)[
](translations/README.hr.md)[
](translations/README.ps.md)[
](translations/README.so.md)[
](translations/README.tm.md)
# Ilkinji goşantlar
-Bu proýektiň maksady githuby täze öwrenijilere nädip ilkinji goşantlaryny(contribution) goşup biljeklerini görkezmekdir.
+Bu proýektiň maksady, GitHub-y täze öwrenýänlere ilkinji goşantlaryny (contribution) nädip goşup biljeklerini görkezmekdir.
-Kyn bolup biler. Täze bir işi ilkinji sapar etmek hemişe kyn bolup biler. Hem-de başka kişiler bilen bilelikde işleşmeli bolsa, ýalňyşlyk etmäne çekinýäň, gorkýaň. Ýöne açyk çeşmäniň(open source) düýbünde başka kişiler bilen bilelikde işleşmek ýatýar. Biz açyk çeşme(open source) proýektlerine ilkinji sapar goşant goşjaklara ýol görkezip, ilkinji goşantlaryny goşmagyny aňsatlaşdyrmak isleýäs.
+Kyn bolup biler. Täze bir işi ilkinji sapar etmek hemişe kyn bolýar. Başga kişiler bilen bilelikde işlemeli bolsaň, ýalňyşlyk etmäne çekinýäň we gorkýaň. Ýöne açyk çeşmäniň (open source) düýbünde başga adamlar bilen bilelikde işleşmek ýatýar. Biz açyk çeşme (open source) proýektlerine ilkinji sapar goşant goşjaklara ýol görkezip, olaryň ilkinji goşantlaryny has aňsatlaşdyrmak isleýäris.
+
+Blog postlary okamak ýa-da wideolary görüp öwrenmek kömek edip biler, ýöne bir zady edip öwrenmegiň ýerini tutup biljek zat ýok, şeýle dälmi? Eger ilkinji goşandyňyzy goşmak isleýän bolsaňyz, aşakdaky görkezmeleri yzarlaň.
-Blog post okamak ýa-da wideolardan öwrenmek kömek edip biler, ýöne bir zady edip öwrenmegiň ýerini tutup biljek zat ýok, şeýle dälmi? Ilkinji goşandyňy goşmak isleýän bolsaň, aşakdaky görkezilenleri yzarlap bilersiň.
@@ -73,7 +70,7 @@ git switch -c goş-ahmet-ahmedow
## Gerekli üýtgeşmeleri edip, ol üýtgeşmeleri bellige almak (commit etmek).
-Indi, tekst redaktorynda(m.ü VSCode) `Contributors.md` faylyny açyň, içinde iň soňunda adyňyzy giriziň we ýatda saklaň(save)
+Indi, tekst redaktorynda(m.ü VSCode) `Contributors.md` faýlyny açyň, içinde iň soňunda adyňyzy giriziň we ýatda saklaň(save)
```
- [Adyňyz](https://github.com/ulanyjy-adyňyz)
diff --git a/docs/translations/README.tr.md b/docs/translations/README.tr.md
index 815dd1fc..6f7668bd 100644
--- a/docs/translations/README.tr.md
+++ b/docs/translations/README.tr.md
@@ -5,7 +5,7 @@
# İlk katkı
-Zor gelir... Herhangi bir işi ilk kez yapmak daima zor gelir. Özellikle başkalarıyla ortak çalışıyorsanız, hata yapmak içinize sinmez. Ancak "Açık Kaynakın" temelinde işbirliği ve birlikte çalışma yatmakta. Biz, açık kaynak projelere ilk kez katkıda bulunacak kişilerin bu süreci öğrenmesini ve ilk katkılarını sunmalarını kolaylaştırmayı istiyoruz.
+Zor gelir... Herhangi bir işi ilk kez yapmak daima zor gelir. Özellikle başkalarıyla ortak çalışıyorsanız, hata yapmak içinize sinmez. Ancak "Açık Kaynağın" temelinde işbirliği ve birlikte çalışma yatmakta. Biz, açık kaynak projelere ilk kez katkıda bulunacak kişilerin bu süreci öğrenmesini ve ilk katkılarını sunmalarını kolaylaştırmayı istiyoruz.
Makale okumak ve eğitim videoları izlemek yardımcı olabilir, fakat bir işi gerçekten yapmanın yerini ne tutabilir ki? Bu proje yeni başlayanların veya ilk defa katkıda bulunacakların işini kolaylaştırmak ve onlara rehberlik etmek amacındadır. Unutmayın ki ne kadar rahat olursanız o kadar rahat öğrenirsiniz. Eğer bir GitHub projesine ilk defa katkıda bulunacaksanız, aşağıda gösterilen basit adımları takip etmeniz yeterli olacaktır. Söz veriyoruz, eğlenceli olacak.
@@ -13,7 +13,7 @@ Makale okumak ve eğitim videoları izlemek yardımcı olabilir, fakat bir işi
Eğer bilgisayarınızda git kurulu değil ise, [ yükleyin ]( https://help.github.com/articles/set-up-git/ ).
-## Projeyi "çatallama"
+## Projeyi "forklama"
Sayfanın sağ üst köşesinde bulunan "Fork" butonuna basıp bu projeyi çatallayın.
Bu işlem sizin hesabınız altında projenin bir kopyasını oluşturacaktır.
diff --git a/docs/translations/README.ua.md b/docs/translations/README.ua.md
index 521bda0f..4011a3ad 100644
--- a/docs/translations/README.ua.md
+++ b/docs/translations/README.ua.md
@@ -1,5 +1,4 @@
[](https://github.com/firstcontributions/open-source-badges)
-[
](https://join.slack.com/t/firstcontributors/shared_invite/zt-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA)
[](https://opensource.org/licenses/MIT)
[](https://www.codetriage.com/roshanjossey/first-contributions)
@@ -118,8 +117,6 @@ git push -г origin
@@ -41,7 +41,7 @@ Misol uchun:
git clone https://github.com/bu-siz/first-contributions.git
```
-bu yerdagi `bu-siz` sizning Github akkount nomingiz (username). Bu yerda Githubdagi first-contributions repositorysining kontentlarini kompyuteringizga
+bu yerdagi `bu-siz` sizning Github hisobingiz nomi (username). Bu yerda Githubdagi first-contributions repositorysining kontentlarini kompyuteringizga
ko'chiryapsiz.
## Branch yaratish
@@ -61,16 +61,16 @@ git switch -c yangi-branch-nomingiz
Misol uchun:
```bash
-git switch -c add-aliml92
+git switch -c new_branch # yangi branch
```
-## Kerakli o'zgarishlarni qiling va bu o'zgarishlarni commit qiling
+## O'zgartirishlar kiriting va commit yarating!
Endi matn muharririda `Contributors.md` faylini oching, unga ismingizni qo'shing. Uni faylning boshiga yoki oxiriga qo'shmang. Uni istalgan o'rta qismga qo'shing. Endi faylni saqlang.
-Agar proyekt papkasiga o'tsangiz va `git status` buyrug'ini yurg'izsangiz, o'zgarishlar borligini ko'rasiz.
+Agar proyekt papkasiga o'tsangiz va `git status` buyrug'ini ishga tushirsangiz, o'zgarishlar borligini ko'rasiz.
`git add` buyrug'i yordamida hosil qilgan branchingizga o'zgarishlarni qo'shing:
@@ -81,7 +81,7 @@ git add Contributors.md
Endi `git commit` buyrug'i yordamida bu o'zgarishlarni commit qiling:
```bash
-git commit -m "Contributors royxatiga ismingiz-ni kiritish"
+git commit -m "Contributors ro'yxatiga ismingiz-ni kiritish"
```
`ismingiz-` ni o'rniga o'zingizni ismingizni yozing.
@@ -90,11 +90,9 @@ git commit -m "Contributors royxatiga ismingiz-ni kiritish"
`git push` buyrug'i bilan o'zgartishlaringizni push qiling:
```bash
-git push origin -u yangi-branch-nomingiz
+git push origin -u new_branch # siz yaratgan yangi branch
```
-albatta, `yangi-branch-nomingiz` ni biroz oldin yaratgan branch nomiga almashtirgan holda.
-
Push qilish vaqtida biror xatolarni ko'rsangiz, bu yerni bosing
@@ -111,11 +109,11 @@ Akkountingizga SSH kalit yaratish va konfiguratsiya qilish uchun [GitHub qo'llan
## O'zgartirishlaringizni ko'rib chiqilishi uchun topshirish
-Agar Githubdagi repositoryingizga o'tsangiz, `Compare & pull request` tugmasini ko'rasiz. O'sha tugmani bosing.
+Agar Githubdagi repositoryingizga o'tsangiz, `Compare & pull request` tugmasini ko'rasiz. Shu tugma ustiga bosing!.
-Endi pull requestni submit qiling.
+Endi Pull Requestni submit qiling.
@@ -123,11 +121,10 @@ Tez orada men sizning barcha o'zgarishlaringizni ushbu proyektning main branchig
## Bu yerdan qayerga borish?
-Tabriklayman! Siz horizgina contributor sifatida tez-tez uchraydigan standard ish ketma-ketligi ya'ni _fork -> clone -> edit -> pull request_ ni tamonladingiz.
+Tabriklayman! Siz hozirgina contributor sifatida tez-tez uchraydigan standard ish ketma-ketligi ya'ni _fork -> clone -> edit -> pull request_ ni tamonladingiz.
Hissangizni nishonlang va [web app](https://firstcontributions.github.io/#social-share)ga o'tish orqali do'stlaringizga va ergashuvchilaringizga ulashing.
-
Agar koʻproq mashq qilishni istasangiz, [kod hissalarini](https://github.com/roshanjossey/code-contributions) tekshiring.
diff --git a/docs/translations/README.vn.md b/docs/translations/README.vn.md
index 4bf453ee..58069dfd 100644
--- a/docs/translations/README.vn.md
+++ b/docs/translations/README.vn.md
@@ -1,5 +1,4 @@
[](https://github.com/ellerbrock/open-source-badges/)
-[
](https://join.slack.com/t/firstcontributors/shared_invite/zt-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA)
[](https://opensource.org/licenses/MIT)
[](https://www.codetriage.com/roshanjossey/first-contributions)
@@ -114,9 +113,7 @@ Tôi sẽ sớm hợp nhất (merge) tất cả các thay đổi của bạn và
Chúc mừng! Bạn vừa hoàn thành quy trình tiêu chuẩn copy (fork) -> Sao chép (clone) -> chỉnh sửa (edit) -> yêu cầu kéo (pull request) mà bạn sẽ thường gặp khi đóng góp vào những dự án!
-Hãy ăn mừng đóng góp của bạn, và chia sẻ nó với bạn bè và những người theo dõi của bạn bằng cách truy cập [ứng dụng web](https://roshanjossey.github.io/first-contribution/#social-share).
-
-Bạn có thể tham gia Slack của chúng tôi trong trường hợp bạn cần trợ giúp hoặc có câu hỏi nào. [Tham gia Slack](https://join.slack.com/t/firstcontributors/shared_invite/zt-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA).
+Hãy ăn mừng đóng góp của bạn, và chia sẻ nó với bạn bè và những người theo dõi của bạn bằng cách truy cập [ứng dụng web](https://firstcontributions.github.io/#social-share).
Để hỗ trợ bạn với việc đóng góp cho các dự án (project) khác, chúng tôi đã tổng hợp một danh sách các dự án có các vấn đề đơn giản mà bạn có thể bắt đầu. Hãy kiểm tra [danh sách dự án trong ứng dụng web](https://firstcontributions.github.io/#project-list).
diff --git a/docs/translations/README.zh-tw.md b/docs/translations/README.zh-tw.md
index 5c5f5b14..da3df6d6 100644
--- a/docs/translations/README.zh-tw.md
+++ b/docs/translations/README.zh-tw.md
@@ -1,7 +1,6 @@
[](https://github.com/ellerbrock/open-source-badges/)
[](https://opensource.org/licenses/MIT)
[](https://www.codetriage.com/roshanjossey/first-contributions)
-[
](https://join.slack.com/t/firstcontributors/shared_invite/zt-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA)
# 第一次參與開源
@@ -86,7 +85,7 @@ git push origin 如果在 push(發佈)过程中出 error(錯誤),點擊這裡
+ 如果在 push(發佈)過程中出 error(錯誤),點擊這裡
- ### Authentication Error
remote: Support for password authentication was removed on August 13, 2021. Please use a personal access token instead.
diff --git a/docs/translations/Translations.md b/docs/translations/Translations.md
index c1677c65..393ab89a 100644
--- a/docs/translations/Translations.md
+++ b/docs/translations/Translations.md
@@ -81,4 +81,5 @@
|
| [Türkmençe](README.tm.md) |
|
| [հայերեն](README.arm.md) |
|
| [አማርኛ ቋንቋ](translations/README.et.md) |
+|
| [Монгол хэл](README.mn.md) |
|
| Kurdî |
diff --git a/docs/translations/gujarati/gujarati.md b/docs/translations/gujarati/gujarati.md
deleted file mode 100644
index 02a9a763..00000000
--- a/docs/translations/gujarati/gujarati.md
+++ /dev/null
@@ -1,63 +0,0 @@
-Here’s a normalized version of the text without GitHub command examples:
-
----
-
-# પ્રથમ યોગદાન
-
-આ પ્રોજેક્ટનો ઉદ્દેશ નવા સ્રોતકર્તાઓને તેમની પ્રથમ યોગદાન આપવાની પદ્ધતિને સરળ બનાવવાનો અને માર્ગદર્શન આપવાનો છે. જો તમે તમારી પ્રથમ યોગદાન આપવા માગો છો, તો નીચેના પગલાંઓને અનુસરો.
-
-#### *જો તમે કમાન્ડ લાઈન સાથે નવા છો, તો અન્ય સાધનોના ઉપયોગ માટે ટ્યુટોરીયલ પર જાઓ.*
-
-જો તમારા કમ્પ્યુટરમાં Git સ્થાપિત ન હોય, તો તેને સ્થાપિત કરવા માટેની માર્ગદર્શિકા જોવા માટે લિંક્પ્રदान કરો.
-
-## આ રિપોઝિટરીનો "ફોર્ક" કરો
-
-પૃષ્ઠના જમણાંમાં "ફોર્ક" બટન પર ક્લિક કરો. તે કરવાથી, આ રિપોઝિટરીની એક નકલ તમારા GitHub એકાઉન્ટમાં બનાવાઈ છે.
-
-## કોપી કરેલા રિપોઝિટરીનો "ક્લોન" કરો
-
-હવે, તમે જે રિપોઝિટરીનો ફોર્ક કર્યો છે, તે ક્લોન બનાવો.
-
-તમારા ટર્મિનલને ખોલો અને આડેધોરને અનુસરો.
-
-## એક શાખા બનાવો
-
-તમારા કમ્પ્યુટરમાં રિપોઝિટરીના ડિરેક્ટરીમાં જાઓ. હવે શાખા બનાવો.
-
-## જરૂરી ફેરફાર કરો અને તે ફેરફારોનો "કમિટ" કરો
-
-ફાઇલને ટેક્સ્ટ એડિટરમાં ખોલો અને તમારું નામ ઉમેરો. ફાઇલને સાચવો.
-
-જો તમે પ્રોજેક્ટના ડિરેક્ટરીમાં જાઓ, તો તમે ફેરફારો જોઈ શકશો. ફાઇલને તેમાં ઉમેરો.
-
-હવે આ ફેરફારોને કમિટ કરો.
-
-## GitHub પર તમારાં ફેરફારોનો "પુષ" કરો
-
-તમારા ફેરફારોને મોકલવા માટેનું પગલું પૂર્ણ કરો.
-
-## તમારા ફેરફારોને સમીક્ષ માટે મોકલો
-
-જો તમે તમારા GitHub પરના રિપોઝિટરીમાં જાઓ, તો તમને બટન દેખાશે. આ બટન પર ક્લિક કરો.
-
-હવે *પુલ રિક્વેસ્ટ* મોકલો.
-
-જલદી જ હું તમારા ફેરફારોને આ પ્રોજેક્ટની માસ્ટર શાખામાં જોડવા જઇ રહ્યો છું. જ્યારે ફેરફારો જોડાશે ત્યારે તમને સૂચના મળશે.
-
-## આગામી પગલાં શું છે?
-
-અભિનંદન! તમે યોગદાન આપવાની પ્રક્રિયા પૂરી કરી છે.
-
-તમારા યોગદાનનો ઉત્સવ મનાવો અને તેને શેર કરો.
-
-જો તમને મદદની જરૂર હોય કે તમારી પાસે કોઈ પ્રશ્ન હોય, તો તમારે જોડાવા માટેનાં વિકલ્પો ઉપલબ્ધ છે.
-
-હવે બીજા પ્રોજેક્ટમાં યોગદાન આપવાનું શરૂ કરો. અમે સરળ *ઇશ્યુઝ* સાથેના પ્રોજેક્ટોની યાદી એકત્રિત કરી છે.
-
-### વધુ સામગ્રી માટે અમારું વેબપેજ જુઓ.
-
-## અન્ય સાધનોના ઉપયોગ કરતા ટ્યુટોરીયલ
-
----
-
-Feel free to let me know if you need further modifications!
\ No newline at end of file