Hello World starter project
1.0.0
Hacktoberfest是10個賽季,以促進開源貢獻。在學習瞭如何使用此存儲庫做出貢獻之後,請轉到我們現實的項目Idea-arca。這也是hacktoberfest。
這些是您可以做出的更改。為該項目做出貢獻的步驟:
Database/目錄中以任何語言添加您的Hello World代碼./Database/中添加自己的文件,然後僅在該文件中寫下Hello World代碼。該文件可以命名為任何內容。其餘的是Hello_World代碼 # LANG: Python
# AUTHOR: Kumar Ashish Ranjan
# GITHUB: https://github.com/dev-AshishRanjan
print ( "Hello World!" )CONTRIBUTORS.md文件中 ### Name: Kumar Ashish Ranjan
- Place: Bihar, India
- Academic: CSE Undergraduate at college_name.
- GitHub: [ dev-AshishRanjan ] ( https://github.com/dev-AshishRanjan ) git clone https://github.com/dev-AshishRanjan/hacktoberfest2023.git
git checkout -b my-new-branch更改:創建一個新的分支,並在該分支上提交您的更改。關注如何貢獻
添加並提交
git add .git commit -m "Relevant message"git push origin my-new-branch如果您是Git和Github的新手,我建議您首先經歷:
- YT視頻(推薦):https://www.youtube.com/watch?v=rgoj5yh7evk&pp=yguoz2l0igfuzcbnaxrodwi%3D
- 文檔:https://hacktoberfest.com/participation/#beginner-resources
如果您是開源的新手,那麼您可以通過:https://www.youtube.com/watch?v=yzevmecydce
避免衝突的一種簡單方法是為您的git回購添加“上游”,因為在您在分支/叉上工作時可能會合併其他PR。
git remote add upstream https://github.com/dev-AshishRanjan/hacktoberfest2023
您可以通過鍵入添加了新遙控器
git remote -v
要從父母回購中提取任何新更改,只需運行
git merge upstream/dev