Skip to content

Repository dell'hackathon: Unicam Hacktoberfest v5.0 (code name: Cadmium Capibara)

Notifications You must be signed in to change notification settings

hacktoberfest-unicam/awesome-hacktoberfest-cobalt-capybara

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Link docs challenges

Awesome Hacktoberfest Cobalt Capybara

Hackathon Repository: Unicam Hacktoberfest v5.0 2024 (code name: Cobalt Capybara), a computer science event aimed at bringing people together and fostering collaboration and creativity through the discovery of Open Source at the University of Camerino campus.
UnicamEventoLicenza


Gyms

Secret Routes

How to fork

  • Once you're on the repository page, you will 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 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-cadmium-capibara
    
  • Create a new branch for each challenge you want to work on with this command (just make sure it's a different name for each gym)
    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 to add new feature"
    # or based on the various labels
    git commit -m "[edit] Edited file1.py to 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 create a 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 Pull Request because during the review process, we may comment on it to request changes or fixes.