-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:
diff --git a/docs/additional-material/git_workflow_scenarios/creating-a-gitignore-file.md b/docs/additional-material/git_workflow_scenarios/creating-a-gitignore-file.md
index fbf671f7..066cdbf9 100644
--- a/docs/additional-material/git_workflow_scenarios/creating-a-gitignore-file.md
+++ b/docs/additional-material/git_workflow_scenarios/creating-a-gitignore-file.md
@@ -1,73 +1,73 @@
-# .gitignore
+## Understanding .gitignore
-The .gitignore file is a text file that tells Git which files or folders to ignore in a project.
+The `.gitignore` file is an essential component of Git's workflow. It tells Git which files and folders to ignore, preventing unnecessary or sensitive data from being tracked in your repository.
-A local .gitignore file is usually placed in the root directory of a project. You can also create a global .gitignore file and any entries in that file will be ignored in all of your Git repositories.
+## Why Use .gitignore?
-## Why .gitignore
-Now you may wonder why would you want git to ignore certain files and folders. Its because you don't want files like build files, cache files, other local configuration files like node modules, compilation files, temporary files IDE's create, etc to be tracked by git. It's usually used to avoid committing transient files from your working directory that aren't useful to other collaborators.
+Certain files should not be included in version control because they are either:
+- Temporary or system-generated (e.g., cache, build files, logs)
+- Large dependencies that can be reinstalled (e.g., `node_modules`)
+- Personal or sensitive configuration files (e.g., API keys, environment variables)
+- IDE or editor-specific files (e.g., `.vscode/`, `.idea/`)
-## Getting started
-To create a local .gitignore file, create a text file and name it .gitignore (remember to include the . at the beginning). Then edit this file as needed. Each new line should list an additional file or folder that you want Git to ignore.
+Ignoring these files keeps the repository clean, reduces conflicts, and prevents security risks.
-The entries in this file can also follow a matching pattern.
+## Creating a .gitignore File
-```
-* is used as a wildcard match
-/ is used to ignore path names relative to the .gitignore file
-# is used to add comments to a .gitignore file
+To create a `.gitignore` file:
+1. In your project root directory, create a new text file named `.gitignore`.
+2. List the files and folders you want to ignore, one per line.
+3. Save the file.
-This is an example of what the .gitignore file could look like:
+### Basic Syntax for .gitignore
+- `*` → Wildcard for matching multiple files.
+- `/` → Specifies path relative to `.gitignore`.
+- `#` → Adds comments.
+### Example .gitignore File:
+```sh
# Ignore Mac system files
-.DS_store
+.DS_Store
-# Ignore node_modules folder
-node_modules
+# Ignore dependency folders
+node_modules/
+venv/
+
+# Ignore log and cache files
+*.log
+.cache/
+
+# Ignore environment files
+.env
# Ignore all text files
*.txt
-
-# Ignore files related to API keys
-.env
-
-# Ignore SASS config files
-.sass-cache
-
```
-To add or change your global .gitignore file, run the following command:
-```
+## Global .gitignore (For All Projects)
+To create a global `.gitignore` file (applies to all repositories):
+```sh
git config --global core.excludesfile ~/.gitignore_global
-
```
-This will create the file ~/.gitignore_global. Now you can edit that file the same way as a local .gitignore file. All of your Git repositories will ignore the files and folders listed in the global .gitignore file.
+Then, edit `~/.gitignore_global` as you would a local `.gitignore`.
-## How to Untrack Files Previously Committed from New Gitignore
+## Removing Files from Git Tracking
-To untrack a single file, ie stop tracking the file but not delete it from the system use:
+If a file was already committed before adding it to `.gitignore`, you need to remove it from tracking:
+- **Untrack a single file** (but keep it locally):
+ ```sh
+ git rm --cached filename
+ ```
+
+- **Untrack all ignored files**:
+ ```sh
+ git rm -r --cached .
+ git add .
+ git commit -m "Updated .gitignore"
+ ```
+
+To undo `git rm --cached filename`, use:
+```sh
+git add filename
```
-git rm --cached filename
-```
-
-To untrack every file in .gitignore:
-
-First, commit any outstanding code changes, and then run:
-
-```
-git rm -r --cached
-```
-
-This removes any changed files from the index(staging area), then run:
-
-```
-git add .
-```
-Commit it:
-
-```
-git commit -m ".gitignore is now working"
-```
-
-To undo ```git rm --cached filename```, use ```git add filename```
diff --git a/docs/additional-material/git_workflow_scenarios/why-using-branches.md b/docs/additional-material/git_workflow_scenarios/why-using-branches.md
index 0ee58ea5..9e6a13ca 100644
--- a/docs/additional-material/git_workflow_scenarios/why-using-branches.md
+++ b/docs/additional-material/git_workflow_scenarios/why-using-branches.md
@@ -1,53 +1,75 @@
-# WHY USING BRANCHES DURING CONTRIBUTING
+## Why Use Branches When Contributing?
+Git branches are an essential tool for collaboration in software development. They allow multiple developers to work on different features or bug fixes simultaneously without interfering with the main project code. By using branches, you can experiment freely, test new ideas, and merge only the best changes into the main project.
-## What are branches.
+## What Are Branches?
+A **branch** in Git is essentially a separate line of development. It allows you to create an isolated version of the project where you can make changes without affecting the main codebase. When you're ready, you can merge your branch back into the main project.
-Branches are simply pointers to a commit.
+### How Branches Work
+Every branch is just a pointer to a specific commit in the project history. When you create a new branch, Git duplicates the state of the current branch, allowing you to work independently. New commits are added to this branch's history without affecting the main branch.
-When you branch out, git is essentially making a new state of your current code, upon which you can work, without affecting the important main state of the code (which is in master branch).
+- To switch between branches, use `git checkout`.
+- To combine changes from one branch into another, use `git merge`.
-When you are happy with your experiments, and want to merge you experiments in main code, you run git merge
-
](https://join.slack.com/t/firstcontributors/shared_invite/enQtNjkxNzQwNzA2MTMwLTVhMWJjNjg2ODRlNWZhNjIzYjgwNDIyZWYwZjhjYTQ4OTBjMWM0MmFhZDUxNzBiYzczMGNiYzcxNjkzZDZlMDM)
+[](https://opensource.org/licenses/MIT)
+[](https://www.codetriage.com/roshanjossey/first-contributions)
+
+# પ્રથમ ફાળો
+
+|
+
+આ ફેરફારોને નીચેના આદેશથી ઉમેરી દો:
+
+```bash
+git add Contributors.md
+```
+
+હવે તમારાં ફેરફારોને કમિટ કરો:
+
+```bash
+git commit -m "Add your-name to Contributors list"
+```
+
+`your-name` ને તમારા નામથી બદલો.
+
+# ફેરફારો GitHub પર અપલોડ કરો
+
+```bash
+git push origin -u your-branch-name
+```
+
+`your-branch-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/+ તમારા GitHub એકાઉન્ટમાં SSH કી કેવી રીતે ઉમેરવી તે જાણવા માટે [GitHub ની ટ્યુટોરિયલ](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)
+
+# 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/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.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..946caa62 100644
--- a/docs/translations/README.assamese.md
+++ b/docs/translations/README.assamese.md
@@ -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
-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..4dd4109d 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)
@@ -111,7 +110,7 @@ Pronto estaré fusionando tus cambios (haciendo *merge*) con la rama master de e
Celebra tu contribución y compártela con tus amigos y seguidores yendo a [web app](https://firstcontributions.github.io/#social-share).
-También podrías unirte a nuestro *equipo* de Slack en caso de que necesites ayuda o tengas alguna pregunta. [Únete a nuestro Slack](https://join.slack.com/t/firstcontributors/shared_invite/zt-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA).
+Si quieres más práctica, echa un vistazo a [contribuciones de código](https://github.com/roshanjossey/code-contributions).
Ahora empieza a contribuir en otros proyectos. Hemos reunido una lista de proyectos con *issues* sencillas para que puedas empezar. Échale un ojo a la [lista de proyectos en la aplicación web](https://firstcontributions.github.io/#project-list).
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 `
-Τώρα υποβάλλετε το pull request.
+Τώρα υποβάλετε το pull request.
diff --git a/docs/translations/README.guj.md b/docs/translations/README.guj.md
index e880ca46..8668eff4 100644
--- a/docs/translations/README.guj.md
+++ b/docs/translations/README.guj.md
@@ -1,7 +1,7 @@
[](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)
+
# પ્રથમ યોગદાન
પ્રથમ વખત કંઈક કરવું થોડું મુશ્કેલ છે. ખાસ કરીને જ્યારે તમે જુથ સાથે મળીને કામ કરી રહ્યા હોવ, ત્યારે ભૂલો કરવી એ સારી વાત નથી. પરંતુ એકબીજા સાથે મળીને અને એક જ સાથે કામ કરવું એ જ તો ઓપેન સોર્સ છે. અમે તમારું પ્રથમ ઓપન સોર્સ કોન્ટ્રિબ્યુશન / યોગદાન સરળ બનાવાનો પ્રયત્ન કરીશુ.
@@ -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-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA)
[](https://opensource.org/licenses/MIT)
[](https://www.codetriage.com/roshanjossey/first-contributions)
diff --git a/docs/translations/README.id.md b/docs/translations/README.id.md
index 7e9871e2..d74eb953 100644
--- a/docs/translations/README.id.md
+++ b/docs/translations/README.id.md
@@ -26,17 +26,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 +55,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. @@ -133,3 +157,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)
diff --git a/docs/translations/README.ko.md b/docs/translations/README.ko.md
index 99f24392..ca508e1c 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)
@@ -124,8 +123,6 @@ git push -u origin your-branch-name
첫 기여에 대한 소식을 친구들 및 팔로워에게 [웹 앱](https://firstcontributions.github.io/#social-share)을 통해 공유해보세요.
-도움이 필요하거나 질문이 있다면 저희 slack 팀에 참여할 수 있습니다. → [slack 팀 참여하기](https://firstcontributors.slack.com/join/shared_invite/zt-29qhyr9lt-Bi7WLbgGIFqV7aCEG_grvg#/shared-invite/email)
-
이제 다른 프로젝트에도 기여해보세요! 지금 바로 시작할 수 있는 난이도가 낮은 이슈들로 가득찬 목록이 있습니다. [웹앱의 프로젝트 목록](https://firstcontributions.github.io/#project-list)에서 확인해보세요.
### [추가 자료](../additional-material/translations/Korean/additional-material.ko.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 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: +/first-contributions.git/'
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-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA)
[](https://opensource.org/licenses/MIT)
[](https://www.codetriage.com/roshanjossey/first-contributions)
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 فورک کړئ، فورک به د دې repository یوه کاپي ستاسو د کیټ هب په اکونټ کې جوړه کړي. -
+- د دې پاڼې په سر کې د Fork تڼۍ کلیک کړئ. +- فورک کول به د دې ذخیرې یوه کاپي ستاسو د GitHub اکاونټ ته انتقال کړي. + +
-اوس فورک کړل شوې ریپوزیټوري کلون یعنې ښکته کړئ د دې کار د ترسره کولو لپاره خپل اکونټ ته لاړ شی د کوډ پر تڼۍ کلیک وکړئ او د ریپوزیټوري لینک کاپي کړئ.
+- خپل اکاونټ ته لاړ شئ او د فورک شوې ذخیرې لینک د **Code** تڼۍ څخه کاپي کړئ. -ترمینل یا CMD خلاص کړئ او لاندې د کیټ کمنډ رن کړئ
-```git -git clone "د ریپوزیټوري کاپي کړل شوی لینک" -``` -د بیلکې په توګه
+په پورته لینک کې د MasihKarimi پرځای باید ستاسو د کیټ هب د اکونټ نوم وي
+- ترمینل یا CMD خلاص کړئ او دا کمانډ اجرا کړئ: -د پورته قدمونو په اخیستلو سره تاسو د “first-contributions” ذخیره یا ریپوزیټوري خپل کمپیوټر ته ښکته کوۍ.
- -###اوس د first-contributions پروژه په خپل کوډ ایډیټر کې پرانيزی او په ترمینل کې د لاندې کیټ کمنډ په رن کولو سره نوی برانچ یا څانګه جوړه کړئ.
- -```git -git switch -c د څانګې نوم -``` -د بیلکې په توګه
-```git -git switch -c add-Masih-Karimi +```bash +git clone https://github.com/YourUsername/first-contributions.git ``` -add-Masih-Karimi زما د څانګې نوم دی تاسو کولائ شئ خپل نوم غوره کړئ
+**یادونه:** دلته `YourUsername` باید ستاسو د GitHub اکاونټ نوم وي. -###اوس د contributors.md فایل راخلاص کړئ او خپل نوم مو وراضافه کړئ نوم مو د فایل په شروغ یا اخر کې مه اضافه کوئ په منځ کې یې اضافه کړئ او فایل ذخیره کړئ
+- د first-contribution پروژه په خپل کوډ ایډیټر کې خلاصه کړئ. +- ترمینل کې دا کمانډ اجرا کړئ ترڅو نوې څانګه جوړه کړئ. ددې لپاره چې زمونږ د بدلونونو لپاره خپله څانګه وي او له نورو سره شریکه نشي. دې څانګې کې به مونږ ایډیټ کوو او بیا به یې له عمومي څانګې سره یوځای کوو. + +```bash +git switch -c your-branch-name +``` + +your-branch-name ستاسو د څانګې نوم دی. کولای شئ چې هر نوم تاسې ټاکلی شئ. + +## اړین بدلونونه راوړئ او commit کړئ + +- د `Contributors.md` فایل خلاص کړئ او خپل نوم پکې اضافه کړئ کې). +- فایل ذخیره کړئ.
-اوس که چېرې ټرمینل ته ولاړ شئ او د git status کمنډ رن کړئ تاسو کولائ شئ وګورئ چې په کوم فایل کې مو بدلونونه راوستي دي
-په دې برخه کې د git add کمنډ په مرسته خپل بدلونونه خپل نوي جوړې کړل شوې څانګې ته اضافه کړئ:
+- ترمینل ته لاړ شئ او دا کمانډ اجرا کړئ ترڅو وګورئ کوم فایلونه مو بدل کړي دي: -```git -git add contributors.md +```bash +git status ``` -اوس اضافه کړل شوي بدلونونه د لاندې کمنډ په مرسته ترسره یا commit کړئ:
-```git -git commit -m “Add Masih Karimi to Contributors List” +- بدلونونه ذخیره کړئ: + +```bash +git add Contributors.md ``` -د Masih Karimi پر ځای مو خپل نوم ولیکئ
-###په دې برخه کې د git push کمنډ په مرسته خپل بدلونونه کیټ هب ته پورته کړئ
-د بېلګې په توګه
+- اوس مو بدلونونه کمټ Commit کړئ: -```git -git push origin -u add-Masih-Karimi +```bash +git commit -m "message" ``` -هېر نه کړئ چې د add-Masih-Karimi پر ځای د خپلې څانګې نوم ورکړئ
+ +د مسیج پر ځای تاسې هر څه لیکلی شئ. بهتره دا ده چې تاسې په دې ځای کې ولیکئ چې کوم بدلونونه مو پروژې کې راوستل. + +## بدلونونه GitHub ته push کړئ + +- خپل بدلونونه کیټ هب ته پورته کړئ: + +```bash +git push origin -u your-branch-name +``` + +د your-branch-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/- [په دې کیټ هب ښونه کې زده کړئ چې څنګه پورته ستونزه حل کړئ](https://docs.github.com/en/authentication/connecting-to-github-with-ssh/adding-a-new-ssh-key-to-your-github-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/<your-username>/first-contributions.git/ ++
اوس که چېرې دې ریپوزیټوري ته په خپل کیټ هب اکونټ کې ورشئ تاسو به یو یوه تنۍ د Compare & pull request متن سره ووینۍ. دا تنۍ کیکاږئ
-اوس د pull غوښتنه وسپارئ
+- اوس د pull request غوښتنه وسپارئ.
-له دې ورسته به زه ستاسو راوستي بدلونه د اصلي یا main څانګې سره یوځای کړم او ستاسو نوم به د ګډون کوونکو لیست ته اضافه کړل شي.
+- له دې وروسته به ستاسو بدلونه د اصلي یا main څانګې سره یوځای شي او ستاسو نوم به د ګډون کوونکو لیست ته اضافه کړل شي. -###-بریا!! !! تاسو په بریالیتوب سره د فورک، کلون ، ایډټ او پول غوښتنې چارې ترسره کړې ، د دې چارو سره به مو د یو ګډون کوونکي په توګه همیش سر او کار وي. -
+## له دې وروسته څه وکړئ؟ --خپل لومړئ ګډون مو ولمانځئ او له خپلو ملګرو سره یې شریک کړئ +تاسو په بریالیتوب سره د فورک، کلون، ایډیټ، او pull request مرحلې بشپړې کړې. تاسې له دې نه وروسته کولی شئ چې په خلاص-سرچېنه پروژو کې په همدې طریقه برخه واخلئ. -
+- خپل لومړئ ګډون ولمانځئ او له خپلو ملګرو سره یې [شریک کړئ](https://firstcontributions.github.io/#social-share). +- که کومه ستونزه یا پوښتنه لرئ، کولای شئ زموږ د Slack ټیم سره یوځای شئ. +- اوس کولای شئ په نورو پروژو کې هم ګډون وکړئ. [دلته د پروژو لیست وګورئ](https://firstcontributions.github.io/#project-list). -که چېرې کومه ستونزه او پوښتنه لرئ کولائ شئ زموږ د سلک slack ټیم سره یوځائ شئ
+## اضافي مواد --اوس راځئ په نورو پروژو کې ګډون وکړئ موږ د هغو پروژو لیست جمتو کړئ دئ چې تاسو کولائ شئ په آسانی ګډون پکې وکړئ د پروژو لیست دلته وګورئ - -
- - - -### - - -###
](https://join.slack.com/t/firstcontributors/shared_invite/zt-vchl8cde-S0KstI_jyCcGEEj7rSTQiA)
-[](https://opensource.org/licenses/MIT)
-[](https://www.codetriage.com/roshanjossey/first-contributions)
-
-
-
-# لومړنۍ مرستې
-د دې پروژې موخه دا ده چې د پیل کونکو لپاره د دوی لومړنۍ مرسته کولو لاره ساده او لارښود کړي. که تاسو د خپلې لومړۍ مرستې په لټه کې یاست، لاندې مرحلې تعقیب کړئ.
-
-_که تاسو د کمانډ لاین (CLI) سره راحته نه یاست ، [دا لارښوونې وکاروئ ترڅو پوه شئ چې د GUI وسیلو کارولو څرنګوالی](#د-نورو-وسیلو-کارولو-لارښوونې)._
-
-
-
-#### که تاسو 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://github.com/technomancy/leiningen/issues?q=is%3Aopen+is%3Aissue+label%3ANewbie)(https://github.com/technomancy/leiningen/issues?q=is%3Aopen+is%3Aissue+label%3ANewbie) | [
](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..7996d2a0 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).
-## ఈ రిపోజిటరీని ఫోర్క్ చెయ్యండి
+## ఈ రిపోజిటరీని ఫోర్క్ చేయండి
-ఈ రిపోజిటరీని ఫోర్క్ చెయ్యండి ఈ పేజీ ఎగువ భాగంలో ఫోర్క్ బటన్ పై క్లిక్ చేయడం ద్వారా క్లిక్ చేయండి.
+ఈ రిపోజిటరీని ఫోర్క్ చేయండి ఈ పేజీ ఎగువ భాగంలో ఫోర్క్ బటన్పై క్లిక్ చేయడం ద్వారా.
ఇది మీ ఖాతాలో ఈ రిపోజిటరీ కాపీని సృష్టిస్తుంది.
-## ఈ రిపోజిటరీని క్లోన్ చెయ్యండి
+## రిపోజిటరీని క్లోన్ చేయండి
diff --git a/docs/translations/README.tr.md b/docs/translations/README.tr.md
index 815dd1fc..8258ef80 100644
--- a/docs/translations/README.tr.md
+++ b/docs/translations/README.tr.md
@@ -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
](https://join.slack.com/t/firstcontributors/shared_invite/zt-1hg51qkgm-Xc7HxhsiPYNN3ofX2_I8FA)
[](https://opensource.org/licenses/MIT)
[](https://www.codetriage.com/roshanjossey/first-contributions)
@@ -116,8 +115,6 @@ Chúc mừng! Bạn vừa hoàn thành quy trình tiêu chuẩn copy (fork) -> S
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ỗ 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).
### [Tài liệu bổ sung](../additional-material/git_workflow_scenarios/additional-material.md)
diff --git a/docs/translations/README.zh-tw.md b/docs/translations/README.zh-tw.md
index 5c5f5b14..cebdf526 100644
--- a/docs/translations/README.zh-tw.md
+++ b/docs/translations/README.zh-tw.md
@@ -86,7 +86,7 @@ git push origin remote: Support for password authentication was removed on August 13, 2021. Please use a personal access token instead.