NikLucoz / awesome-hacktoberfest-beryllium-bear

Repository dell'hackathon: Unicam Hacktoberfest v4.0 (code name: Beryllium Bear)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Awesome Hacktoberfest Beryllium Bear


Repository dell'hackathon: Unicam Hacktoberfest v4.0 (code name: Beryllium Bear) 2023, evento di natura informatica che ha lo scopo di unire e far divertire le persone mediante la conoscenza dell'Open Source nella sede universitaria di Camerino.
UnicamEventoLicenza


Levels

How to fork

  • Once you're on the repository's page, you'll see a button in the upper right-hand corner that says "Fork." Click it.
  • After clicking the "Fork" button, GitHub will prompt you to choose where to fork the repository. You can choose to fork it to your personal account or to an organization that you are a member of. Select your account.
  • You will be redirected to your forked repository's page on GitHub. It's a copy of the original repository, and you have full control over it. Enjoy!

How to contribute

  • Clone your fork locally (replace <USERNAME with your GitHub username)
    git clone https://github.com/<USERNAME>/awesome-hacktoberfest-beryllium-bear
    
  • Create a new branch for each problem you're working on with this command (just make sure it's a different name for each problem)
    git checkout main
    git checkout -b my_problem_01
    
  • Make the necessary code changes in your local repository.
  • To stage your changes for commit, use the git add command. You can specify individual files or use a wildcard to stage all changes:
    git add file1.js file2.js
    # or to stage all changes
    git add .
    

How to write commit messages

  • Commit your staged changes with a descriptive commit message:
    git commit -m "[add] Added new file1.py for add new feature"
    # or based on the various labels
    git commit -m "[edit] Edited file1.py for fix these bugs"
    git commit -m "[remove] Removed file1.py because it is no longer used"
    

How to update your changes into your repo on github

  • Push your branch with the new commit(s) to your fork on GitHub:
    git push origin [branch_name]
    

How to PR

  • Go to your fork on GitHub and switch to the branch you just pushed.
  • Click on the "New Pull Request" button. GitHub will guide you through creating a pull request. Make sure your pull request is pointing to the hackathon branch. Provide a clear title and description for your changes.

NOTE: check your pr, we may leave messages or ask changes

About

Repository dell'hackathon: Unicam Hacktoberfest v4.0 (code name: Beryllium Bear)

License:MIT License