KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
Wordle-clone
★ 11
Open GitHub ↗
Hackoberfest repo
Download README (.md)
Explore Similar Repositories
xk6-webcrypto
:
WIP implementation of the WebCrypto specification for k6
davi.sh
:
my personal website
Celia
:
A PICO-8 TAS framework based on picolove
collectionCompositionalLayoutExample
:
No description available.
stanza
:
An abstract table model written in Rust, with customisable text formatting and renderers.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
Wordle-clone
?
Download (.md)
# Wordle clone Hackoberfest repo Hacktoberfest-2022🔥 <br> <p align="center"> <https://www.google.com/url?sa=i&url=https%3A%2F%2Fdev.to%2Fgithub%2Fhow-to-get-ready-for-hacktoberfest-2022-2ck2&psig=AOvVaw3ezI7pi39kHIEfe-GkedLX&ust=1664646042501000&source=images&cd=vfe&ved=0CAwQjRxqFwoTCPCIsPOHvfoCFQAAAAAdAAAAABAD> </p> ## This repository aims to help code beginners with their first successful pull request and open source contribution. :partying_face: :star: Feel free to use this project to make your first contribution to an open-source project on GitHub. Practice making your first pull request to a public repository before doing the real thing! :star: Make sure to grab some cool swags during Hacktoberfest by getting involved in the open-source community. ### This repository is open to all members of the GitHub community. Any member can contribute to this project! # Guidelines # Steps For Contribution 0. Star 1. Fork 2. Clone the forked repository. ```css git clone https://github.com/<your-github-username>/Wordle-clone ``` 3. Navigate to the project directory. ```py cd Wordle-clone ``` 4. Create a new branch. ```css git checkout -b <your_branch_name> ``` 5. Make changes. 6. Stage your changes and commit ```css git add -A git commit -m "<your_commit_message>" ``` 7. Push your local commits to the remote repo. ```css git push -u origin "<your_branch_name>" ``` 8. Create a Pull Request. 9. Congratulations! 🎉 you've made your contribution. ---