Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/s-bhalode/hacktoberfest-2023
π Welcome to the Hacktoberfest 2023 Celebration Repository! π Join us in contributing to open source and celebrating the spirit of Hacktoberfest! This repository is open to all skill levels, from first-time contributors to seasoned developers. Share your expertise, collaborate with others, and earn cool swag along the way!
https://github.com/s-bhalode/hacktoberfest-2023
appwrite contributions-welcome digitalocean first-issue first-pull-request-and-commit firstcontributions git github hacktoberfest hacktoberfest2023 open-source pull-requests
Last synced: 26 days ago
JSON representation
π Welcome to the Hacktoberfest 2023 Celebration Repository! π Join us in contributing to open source and celebrating the spirit of Hacktoberfest! This repository is open to all skill levels, from first-time contributors to seasoned developers. Share your expertise, collaborate with others, and earn cool swag along the way!
- Host: GitHub
- URL: https://github.com/s-bhalode/hacktoberfest-2023
- Owner: s-bhalode
- Created: 2023-09-27T18:37:40.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-11-18T17:43:58.000Z (about 1 year ago)
- Last Synced: 2024-12-27T08:08:19.464Z (26 days ago)
- Topics: appwrite, contributions-welcome, digitalocean, first-issue, first-pull-request-and-commit, firstcontributions, git, github, hacktoberfest, hacktoberfest2023, open-source, pull-requests
- Language: HTML
- Homepage:
- Size: 8.36 MB
- Stars: 53
- Watchers: 1
- Forks: 95
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- Contributing: contributing.md
Awesome Lists containing this project
README
# πHacktoberfest_starter_2k23 β‘ First Pull Request πππ
## Contribution Rules ππ
π You are allowed to make pull requests that break the rules. We just merge it.
π Do NOT add any build steps e.g npm install (keep this as a simple static site).
π Do NOT remove other content.
π Add your name to the contributorsList file.
π Try to keep pull requests small to minimize merge conflicts## Geting Startedππ:
β Star mark this repo.
β Fork this repo.
β Clone on your local machine
```terminal
git clone https://github.com/s-bhalode/Hacktoberfest-2023.git
```
β Navigate to project directory.
```terminal
cd Hacktoberfest-2023
```
β Create a new branch
```markdown
git checkout -b your-name-branch
```
β Create new readme.md file with your name at the following path
```markdown
constributors/participants/yourName.md
```
β Add your details in the newly created file `contributors/participants/yourName.md`
```markdown
Name : Your name
Email : your email
Institution Name : your institution name
Github url : your username
Skills : your skills (optional)About (short introduction)
```β Add your changes
```markdown
git add .
```
β Commit your changes.
```markdown
git commit -m "message"
```
β Then push
```markdown
git push origin your-name-branch
```β Create a new pull request from your forked repository
## Avoid Conflicts {Syncing your fork}
β‘ An easy way to avoid conflicts is to add an 'upstream' for your git repo, as other PR's may be merged while you're working on your branch/fork.
```terminal
git remote add upstream https://github.com/s-bhalode/Hacktoberfest-2023.git
```β‘ You can verify that the new remote has been added by typing
```terminal
git remote -v
```
β‘ To pull any new changes from your parent repo simply run
```terminal
git merge upstream/master
```β Do follow this account