-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/Things a non Programmer can do.id.md b/docs/additional-material/Things a non Programmer can do.id.md
index 8942c180..1d91d6b5 100644
--- a/docs/additional-material/Things a non Programmer can do.id.md
+++ b/docs/additional-material/Things a non Programmer can do.id.md
@@ -101,7 +101,7 @@ Menjawab pertanyaan, terutama dari seseorang yang baru saja memulai, sangat pent
Waktu yang Anda luangkan untuk membantu seorang pemula, bahkan jika mereka mengajukan pertanyaan di mana Anda dapat dengan mudah menjawab “RTFM” dengan cepat, akan terbayar di kemudian hari dengan mendapatkan anggota aktif lainnya di dalam komunitas.
Semua orang memulai dari suatu tempat, dan proyek membutuhkan arus masuk orang yang konstan jika ingin tetap hidup.
-13. **Tulislah sebuah postingan blog:
+13. **Tulislah sebuah postingan blog**:
Jika Anda memiliki sebuah blog, tulislah tentang pengalaman Anda dengan proyek yang Anda gunakan.
Ceritakan tentang masalah yang Anda hadapi dengan menggunakan perangkat lunak dan apa yang Anda lakukan untuk menyelesaikannya.
Anda akan membantu dengan dua cara, yaitu dengan membantu menjaga proyek tetap berada di benak orang lain di sekitar Anda,
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/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/github-cli-tutorial-malayalam.md b/docs/cli-tool-tutorials/github-cli-tutorial-malayalam.md
new file mode 100644
index 00000000..54769be5
--- /dev/null
+++ b/docs/cli-tool-tutorials/github-cli-tutorial-malayalam.md
@@ -0,0 +1,96 @@
+
+
+
+
+[](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 ചെയ്യുക
+
+ഈ പേജിന്റെ മുകളിലെ വലത് വശത്ത് കാണുന്ന **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)
+
+# 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/how-to-contribute-to-open-source-projects-telugu.md b/docs/how-to-contribute-to-open-source-projects-telugu.md
new file mode 100644
index 00000000..58680725
--- /dev/null
+++ b/docs/how-to-contribute-to-open-source-projects-telugu.md
@@ -0,0 +1,73 @@
+# ఓపెన్ సోర్స్కు ఎలా సహకరించాలి: ప్రారంభకులకు సమగ్ర మార్గదర్శి
+
+TL;DR మీరు ఓపెన్ సోర్స్ ప్రాజెక్ట్కి మీ మొదటి పుల్ అభ్యర్థనను చేయాలనుకుంటున్నట్లయితే, [Readme](https://github.com/firstcontributions/first-contributions)లోని సూచనలను అనుసరించండి.
+
+డెవలపర్గా ఎదగడానికి, మీ పోర్ట్ఫోలియోను రూపొందించడానికి మరియు కమ్యూనిటీకి తిరిగి ఇవ్వడానికి ఓపెన్ సోర్స్కు సహకారం అందించడం అనేది అత్యంత బహుమతినిచ్చే మార్గాలలో ఒకటి. మీరు అనుభవజ్ఞుడైన ప్రోగ్రామర్ అయినా లేదా ఇప్పుడే ప్రారంభించినా, ఓపెన్ సోర్స్ తెలుసుకోవడానికి, సహకరించడానికి మరియు ప్రభావం చూపడానికి అంతులేని అవకాశాలను అందిస్తుంది. ఈ గైడ్లో, సరైన ప్రాజెక్ట్ను కనుగొనడం నుండి మీ మొదటి సహకారం అందించడం వరకు ఓపెన్ సోర్స్కు సహకరించడం గురించి మీరు తెలుసుకోవలసిన ప్రతిదానిని మేము మీకు తెలియజేస్తాము.
+
+## ఓపెన్ సోర్స్కి ఎందుకు సహకరించాలి?
+
+"ఎలా"లోకి ప్రవేశించే ముందు, "ఎందుకు" అనేదాన్ని అన్వేషిద్దాం. ఓపెన్ సోర్స్కు సహకారం అందించడం వలన అనేక ప్రయోజనాలను అందిస్తుంది:
+
+* నైపుణ్యాభివృద్ధి: ఓపెన్ సోర్స్ ప్రాజెక్ట్లు మిమ్మల్ని వాస్తవ ప్రపంచ కోడ్బేస్లకు బహిర్గతం చేస్తాయి, మీ కోడింగ్, డీబగ్గింగ్ మరియు సహకార నైపుణ్యాలను మెరుగుపరచడంలో మీకు సహాయపడతాయి.
+* పోర్ట్ఫోలియో బిల్డింగ్: ప్రసిద్ధ ప్రాజెక్ట్లకు విరాళాలు మీ రెజ్యూమ్ మరియు GitHub ప్రొఫైల్ను మెరుగుపరుస్తాయి, తద్వారా మీరు సంభావ్య యజమానులకు ప్రత్యేకంగా నిలుస్తారు.
+* నెట్వర్కింగ్: మీరు ప్రపంచవ్యాప్తంగా ఉన్న డెవలపర్లతో కనెక్ట్ అవుతారు, నిపుణుల నుండి నేర్చుకుంటారు మరియు గ్లోబల్ కమ్యూనిటీలో భాగం అవుతారు.
+* గివింగ్ బ్యాక్: ఓపెన్ సోర్స్ మనం రోజూ ఉపయోగించే చాలా సాఫ్ట్వేర్లకు శక్తినిస్తుంది. మీరు ఆధారపడే సాధనాలు మరియు సాంకేతికతలకు మద్దతు ఇవ్వడానికి సహకారం అందించడం ఒక మార్గం.
+* కెరీర్ అవకాశాలు: చాలా కంపెనీలు ఓపెన్ సోర్స్ అనుభవంతో డెవలపర్లను చురుకుగా కోరుకుంటాయి, ఎందుకంటే ఇది చొరవ మరియు జట్టుకృషిని ప్రదర్శిస్తుంది.
+
+## ఓపెన్ సోర్స్ కంట్రిబ్యూషన్లతో ఎలా ప్రారంభించాలి
+
+### 1. సరైన ప్రాజెక్ట్ను ఎంచుకోండి
+
+సరైన ప్రాజెక్ట్ను కనుగొనడం చాలా ముఖ్యం. మీ ఆసక్తులు, నైపుణ్యం స్థాయి మరియు లక్ష్యాలకు అనుగుణంగా ఉండే ప్రాజెక్ట్ల కోసం చూడండి. వాటిని ఎలా కనుగొనాలో ఇక్కడ ఉంది:
+
+* GitHubని అన్వేషించండి: GitHub యొక్క అన్వేషణ పేజీని ఉపయోగించండి లేదా "గుడ్-ఫస్ట్-ఇష్యూ" లేదా "హెల్ప్-వాంటెడ్" వంటి అంశాల కోసం శోధించండి.
+* ఓపెన్ సోర్స్ ప్రోగ్రామ్లను తనిఖీ చేయండి: గూగుల్ సమ్మర్ ఆఫ్ కోడ్ లేదా హ్యాక్టోబర్ఫెస్ట్ వంటి ప్రోగ్రామ్లు ప్రారంభకులకు గొప్పవి.
+* మీ సాధనాలను అనుసరించండి: మీరు ఇప్పటికే ఉపయోగిస్తున్న లైబ్రరీలు, ఫ్రేమ్వర్క్లు లేదా సాధనాలకు సహకరించండి.
+
+### 2. ప్రాజెక్ట్ను అర్థం చేసుకోండి
+
+సహకరించే ముందు, ప్రాజెక్ట్ను అర్థం చేసుకోవడానికి సమయాన్ని వెచ్చించండి:
+
+* డాక్యుమెంటేషన్ను చదవండి: README ఫైల్, సహకార మార్గదర్శకాలు మరియు ప్రవర్తనా నియమావళితో ప్రారంభించండి.
+* కోడ్బేస్ను అన్వేషించండి: ప్రాజెక్ట్ నిర్మాణం మరియు కోడింగ్ శైలితో మిమ్మల్ని మీరు పరిచయం చేసుకోండి.
+* సంఘంలో చేరండి: కమ్యూనిటీ కోసం ఒక అనుభూతిని పొందడానికి ఫోరమ్లు, స్లాక్ లేదా డిస్కార్డ్పై చర్చల్లో పాల్గొనండి.
+
+### 3. చిన్నగా ప్రారంభించండి
+
+విశ్వాసాన్ని పెంపొందించడానికి చిన్న, నిర్వహించదగిన పనులతో ప్రారంభించండి:
+
+* బగ్లను పరిష్కరించండి: "మంచి-మొదటి సమస్య" లేదా "బిగినర్స్-ఫ్రెండ్లీ" అని లేబుల్ చేయబడిన సమస్యల కోసం చూడండి.
+* డాక్యుమెంటేషన్ను మెరుగుపరచండి: డాక్యుమెంటేషన్ అప్డేట్లు తరచుగా విస్మరించబడతాయి కానీ చాలా విలువైనవి.
+* పరీక్షలు రాయండి: పరీక్షలను జోడించడం అనేది కోడ్బేస్ గురించి తెలుసుకోవడానికి మరియు సహకరించడానికి ఒక గొప్ప మార్గం.
+
+### 4. ఉత్తమ పద్ధతులను అనుసరించండి
+
+సహకరించేటప్పుడు, ప్రాజెక్ట్ మార్గదర్శకాలకు కట్టుబడి ఉండండి:
+
+* ఫోర్క్ మరియు క్లోన్: రిపోజిటరీని ఫోర్క్ చేసి మీ స్థానిక మెషీన్కు క్లోన్ చేయండి.
+* ఒక శాఖను సృష్టించండి: మీ మార్పుల కోసం ప్రత్యేక శాఖలో పని చేయండి.
+* క్లీన్ కోడ్ వ్రాయండి: ప్రాజెక్ట్ యొక్క కోడింగ్ ప్రమాణాలను అనుసరించండి మరియు స్పష్టమైన, సంక్షిప్త కోడ్ను వ్రాయండి.
+* మీ మార్పులను పరీక్షించండి: మీ మార్పులు ఇప్పటికే ఉన్న కార్యాచరణను విచ్ఛిన్నం చేయలేదని నిర్ధారించుకోండి.
+* ఒక పుల్ అభ్యర్థన (PR) సమర్పించండి: స్పష్టమైన PR వివరణ, సూచన సంబంధిత సమస్యలను వ్రాయండి మరియు అభిప్రాయానికి సిద్ధంగా ఉండండి.
+
+## ఓపెన్ సోర్స్లో విజయం కోసం చిట్కాలు
+
+ప్రభావవంతంగా కమ్యూనికేట్ చేయండి: అన్ని పరస్పర చర్యలలో గౌరవప్రదంగా మరియు వృత్తిపరంగా ఉండండి. అవసరాల గురించి అస్పష్టంగా ఉన్నప్పుడు ప్రశ్నలు అడగండి. సమీక్షకులకు వారి సమయం మరియు అభిప్రాయానికి ధన్యవాదాలు. సమీక్ష ప్రక్రియలో ఓపికగా ఉండండి
+
+స్థిరంగా ఉండండి: రెగ్యులర్ కంట్రిబ్యూషన్లు, చిన్నవి కూడా, కాలక్రమేణా పెద్ద ప్రభావాన్ని చూపుతాయి.
+
+అభిప్రాయం నుండి నేర్చుకోండి: కోడ్ సమీక్షలు నేర్చుకునే అవకాశం. అభిప్రాయాన్ని స్వీకరించండి మరియు మీ నైపుణ్యాలను మెరుగుపరచండి.
+
+తిరిగి ఇవ్వండి: మీరు సౌకర్యవంతంగా ఉన్న తర్వాత, PRలను సమీక్షించడం, ప్రశ్నలకు సమాధానం ఇవ్వడం లేదా కొత్తవారికి మార్గదర్శకత్వం చేయడం ద్వారా ఇతరులకు సహాయం చేయండి.
+
+## సాధారణ సవాళ్లు మరియు వాటిని ఎలా అధిగమించాలి
+
+* ఇంపోస్టర్ సిండ్రోమ్: చాలా మంది ప్రారంభకులు తమకు సహకరించడానికి తగినంత నైపుణ్యం లేదని భావిస్తారు. గుర్తుంచుకోండి, ప్రతి ఒక్కరూ ఎక్కడో ఒకచోట ప్రారంభించబడతారు మరియు చిన్న విరాళాలు కూడా ముఖ్యమైనవి.
+* సమయాన్ని కనుగొనడం: చిన్న, నిర్వహించదగిన పనులతో ప్రారంభించండి. వారానికి 30 నిమిషాలు కూడా తేడా రావచ్చు.
+* పెద్ద కోడ్బేస్లను నావిగేట్ చేయడం: అభ్యాస ప్రక్రియను విచ్ఛిన్నం చేయండి: - డాక్యుమెంటేషన్ను పూర్తిగా చదవడం ద్వారా ప్రారంభించండి - ఒక సమయంలో ఒక భాగాన్ని అర్థం చేసుకోవడంపై దృష్టి పెట్టండి - కోడ్ అమలును ట్రేస్ చేయడానికి డీబగ్గింగ్ సాధనాలను ఉపయోగించండి - స్పష్టత కోసం అడగడానికి వెనుకాడకండి
+
+## తీర్మానం
+
+ఓపెన్ సోర్స్కు సహకరించడం అనేది అపారమైన వ్యక్తిగత మరియు వృత్తిపరమైన వృద్ధిని అందించే ప్రయాణం. చిన్నగా ప్రారంభించడం ద్వారా, స్థిరంగా ఉండటం మరియు సంఘంతో సన్నిహితంగా ఉండటం ద్వారా, మీరు మీ నైపుణ్యాలను మెరుగుపరుచుకుంటూ అర్ధవంతమైన సహకారాన్ని అందించవచ్చు. గుర్తుంచుకోండి, ఓపెన్ సోర్స్ సహకారంతో అభివృద్ధి చెందుతుంది మరియు ప్రతి సహకారం-ఎంత చిన్నదైనా-మెరుగైన డిజిటల్ ప్రపంచాన్ని నిర్మించడంలో సహాయపడుతుంది. మునిగిపోవడానికి సిద్ధంగా ఉన్నారా? మిమ్మల్ని ఉత్తేజపరిచే ప్రాజెక్ట్ను కనుగొనండి, మీ మొదటి సహకారాన్ని అందించండి మరియు ఈరోజే గ్లోబల్ ఓపెన్ సోర్స్ ఉద్యమంలో చేరండి!
+
+## చివరి సమాధా
\ No newline at end of file
diff --git a/docs/how-to-contribute-to-open-source-projects.md b/docs/how-to-contribute-to-open-source-projects.md
index 436471c2..dea80067 100644
--- a/docs/how-to-contribute-to-open-source-projects.md
+++ b/docs/how-to-contribute-to-open-source-projects.md
@@ -70,3 +70,4 @@ Give Back: Once you’re comfortable, help others by reviewing PRs, answering qu
Contributing to open source is a journey that offers immense personal and professional growth. By starting small, staying consistent, and engaging with the community, you can make meaningful contributions while honing your skills. Remember, open source thrives on collaboration, and every contribution—no matter how small—helps build a better digital world. Ready to take the plunge? Find a project that excites you, make your first contribution, and join the global open source movement today!
+Open source is more than just code — it’s about people, collaboration, and continuous learning. By taking small, consistent steps and engaging with the community, you’ll not only grow as a developer but also make meaningful contributions to projects used by millions.
\ No newline at end of file
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
+# 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..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 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.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/)
-[ Энэ төслийг дэмжсэн:
+
+
-د دې پاڼې په سر کې د فورک تڼئ پر کلیک سره تاسو کولای شئ دا 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-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-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..13fdf24a
--- /dev/null
+++ b/docs/translations/README.mn.md
@@ -0,0 +1,162 @@
+[](https://github.com/firstcontributions/open-source-badges)
+[](https://opensource.org/licenses/MIT)
+[](https://www.codetriage.com/roshanjossey/first-contributions)
+
+# First Contributions
+
+Нээлттэй эх код баазад өөрийн хувь нэмрээ оруулах хүсэл програмч болгонд байдаг байх. Харин яг хаанаас эхлэхээ мэдэхгүй үе тохиолдох нь элбэг. Иймд, бид хэд шиг будилсан хөгжүүлэгч нарт ядаж хийх үйлдлийн зохих дарааллыг нь таниулчих зорилгоор энэхүү төсөл нь эхэлжээ. Та ч бас нээлттэй эх код баазад өөрийн нэмрээ оруулмаар байгаа бол доорх алхмуудыг дагаад хийгээрэй.
+
+
+_Терминалтай ажиллах дургүй бол [GUI ашигласан хичээл рүү ороорой.](#tutorials-using-other-tools)_
+
+
+
+#### Компьютер дээрээ git суулгаагүй бол [энд дарж суулгана уу.](https://docs.github.com/en/get-started/quickstart/set-up-git).
+
+## Энэ рэпог форклох
+
+Та энэ хуудасны дээд хэсэгт орших fork товчийг дарснаар энэ рэпоны хуулбар таны хаягт үүсэх юм.
+
+## Энэ рэпог хувилах
+
+
+
+Форк хийчихсэн рэпогоо компьютер дээрээ суулгахын тулд хлээд Гитхаб хаяг дээрээ очоод, форклосон рэпогоо олоод, code гэсэн товчин даар дараад, SSH хэсэг дээр дарж, _хуулах_ товчлуур дээр дарах хэрэгтэй.
+
+Дараа нь, терминалаа нээгээд доорх үйлдлийг хийнэ:
+
+```bash
+git clone "саяны хуулсан линк"
+```
+
+"саяны хуулсан линк" хэсгийн оронд эхний алхам дээр хуулсан линкээ наана.
+
+
+
+Жишээ нь:
+
+```bash
+git clone git@github.com:таны-гитхаб-хаяг/first-contributions.git
+```
+
+`таны-гитхаб-хаяг` гэсний оронд Гитхабын хэрэглэгчийн нэрээ бичнэ. Ингэснээр та өөрийн хаяг дээрээ үүсгэсэн энэхүү рэпоны хуулбарыг өөрийн компьютер дээрээ хувилан авч чадлаа.
+
+## Шинэ бранч үүсгэх
+
+Дараа нь, хувилсан рэпоныхоо фолдер луу шилжинэ:
+
+```bash
+cd first-contributions
+```
+
+`git switch` үйлдлийг ашиглан шинэ бранч үүсгэнэ:
+
+```bash
+git switch -c шинэ-бранчийн-нэр
+```
+
+Жишээ нь:
+
+```bash
+git switch -c add-alonzo-church
+```
+
+ git switch үйлдлийг хийхэд ямар нэгэн алдаа гарсан бол энд дар:
+
+Дараах алдаа гарсан бол Гит програмын чинь хувилбар нийцэхгүй байна гэсэн үг: "Git: `switch` is not a git command. See `git –help`"
+
+Дээрх тохиолдолд `git checkout` үйлдлийг хэрэглээд үзээрэй:
+
+```bash
+git checkout -b шинэ-бранчийн-нэр
+```
+
+
+
+Дараа нь, үндсэн фолдер луу шилжээд `git status` үйдлийг хийвэл танд таны өөрчилсөн файлууд харагдана.
+
+Харагдаж буй өөрчлөлтүүдээ эхлээд бранчдаа `git add` үйлдлийг ашиглан нэмнэ:
+
+```bash
+git add Contributors.md
+```
+
+Дараа нь `git commit` үйлдлийг ашиглан коммит хийнэ (`your-name` гэснийг нэмсэн нэрээрээ солихоо мартуузай):
+
+```bash
+git commit -m "Add your-name to Contributors list"
+```
+
+## Гитхаб руу пушлэх
+
+Дараа нь, `git push` үйлдлийг ашиглан саяны коммитоо пушлэнэ (`your-branch-name` гэснийг үүсгэсэн бранчийнхаа нэрээр солихоо мартуузай):
+
+```bash
+git push -u origin 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/
+ Хэрэв дээрх янзаар алдаа зааж байвал шинэ SSH түлхүүр үүсгэн хаягтайгаа холбох хэрэгтэй гэсэн үг бөгөөд хэрхэн холбохыг [энд дарж харна уу](https://docs.github.com/en/authentication/connecting-to-github-with-ssh/adding-a-new-ssh-key-to-your-github-account).
+
+ Мөн, аль рэпотой холбогдсон байгаагаа 'git remote -v' үйлдлээр шалгачихад гэмгүй.
+
+ Хэрэв дээрх үйлдлийн хариу доорх маягаар байвал:
+ origin https://github.com/таны-хэрэглэгчийн-нэр/таны-рэпо-нэр.git (fetch)
+ origin https://github.com/таны-хэрэглэгчийн-нэр/таны-рэпо-нэр.git (push)
+
+ дараах үйлдлээр өөрчлөх хэрэгтэй:
+ ```bash
+ git remote set-url origin git@github.com:таны-хэрэглэгчийн-нэр/таны-рэпо-нэр.git
+ ```
+ Ингэснээр та нууц үгээр биш хаягтай чинь холбогдсон SSH түлхүүрээр нэвтэрч эхэлнэ.
+
+
+Дараа нь нэгтгэх хүсэлтээ илгээнэ.
+
+
+
+Таны хүсэлтийг бид хүлээн аваад автоматаар код бааздаа нэгтгэсэн байх болно. Энэ талаар бүртгэлтэй и-мейл хаяг дээр чинь мэдэгдэл ирнэ.
+
+## Одоо яг яах билээ?
+
+Нээлттэй эх код баазад өөрийн нэмрээ оруулахын тулд ерөнхийд нь мөрдөх ёстой _fork -> clone -> edit -> pull request_ гэсэн дарааллыг та одоо мэддэг боллоо.
+
+Нээлттэй эхэд нэмэр оруулж эхлэх анхны алхамаа хийсэн талаараа [энд дарж](https://firstcontributions.github.io/#social-share) нөхөдтэйгөө хуваалцана уу.
+
+Өшөө дасгал ажиллахын тулд [энд дар](https://github.com/roshanjossey/code-contributions).
+
+Нээлттэй эх код баазтай янз бүрийн төслүүдийн жагсаалтыг [энд дарж харна уу](https://firstcontributions.github.io/#project-list).
+
+### [Нэмэлт материал](docs/additional-material/git_workflow_scenarios/additional-material.md)
+
+## Өөр програмууд ашигласан хичээлүүд
+
+| |
|
|
| |
|
+| ----------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| [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) |
+
+
+
+
](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) کلون کړئ
-###
-
-```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-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)
@@ -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.tm.md b/docs/translations/README.tm.md
index 66af2dbd..1014cc88 100644
--- a/docs/translations/README.tm.md
+++ b/docs/translations/README.tm.md
@@ -1,18 +1,15 @@
[](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)
-#### _[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..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 如果在 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î |