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 ),准备参加任何开源项目
如果愿意,可以查看这些来源以帮助您