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