First Time Contributors Arabs Edition
1.0.0

git clone "url you just copied"
git clone https://github.com/this-is-you/first-contributions.git
cd first-contributions
git checkout -b "add-your-name"
git checkout -b "add-alonzo-church"
git status ),向您展示項目中所做的更改。要添加我所做的更改,請寫下此( git add )
git add Contributors.md
您將通過此( git commit )編寫它們來解釋並解釋您所做的更改,該更改將以您的名字替換( <your-name> )
git commit -m "Add <your-name> to Contributors list"
我們將提出我使用此( git push )進行的更改,然後用創建它的分支的名稱替換( add-your-name )
git push origin "add-your-name"
在您自己的頁面內,特別是在GitHub上的項目頁面上,單擊Compare & pull request按鈕
審核後,您為項目中的主要分支所做的更改將結合在一起,您將通過電子郵件提醒您
我們的祝賀!我已經完成了通常的程序( fork -> clone -> edit -> pull request ),準備參加任何開源項目
如果願意,可以查看這些來源以幫助您