GithubHelp home page GithubHelp logo

kensho's Introduction

KENSHO

Preparing Your Pull Request

  1. Fork and Clone: First, fork the main repository and clone it locally.
    git clone https://github.com/your-username/repository-name.git
    cd repository-name
    
    
  2. Create a New Branch: Always create a branch from an up-to-date master branch for your changes.
git checkout master
git pull
git checkout -b your-feature-branch
  1. Make Changes: Make the necessary modifications or additions to the codebase and commit your changes locally. Use meaningful commit messages that clearly describe the changes.

Using Semantic Commit Messages

To automate the version management of our project, we use mathieudutour/github-tag-action which relies on semantic commit messages to determine the type of version bump (major, minor, or patch). Here's how to format your commit messages:

  • Patch update (fix:): Includes bug fixes, minor changes, or any non-breaking changes that fix incorrect behavior.
git commit -m "fix: resolve an issue where..."
  • Minor update (feat:): Adds new features or updates that do not break backward compatibility.
git commit -m "feat: add support for..."
  • Major update (BREAKING CHANGE): Introduces changes that break backward compatibility with the previous versions.
git commit -m "feat: change database schema"
-m "BREAKING CHANGE: database migration required for..."
  1. Push Your Changes: Once your changes are committed, push the branch to your fork.
git push origin your-feature-branch
  1. Create a Pull Request: Go to the repository on GitHub. You'll often find a button to create a pull request from your recently pushed branches.

  2. Describe Your Changes: Provide a clear, detailed description of your changes when opening your pull request.

kensho's People

Contributors

actions-user avatar mrlutik avatar peepofrog avatar

Watchers

 avatar

Forkers

peepofrog

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.