Skip to content

jdu211171/apuri_kaihatsu

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

How to Contribute to apuri_kaihatsu

Setting up Your Local Development Environment

  1. Fork the Repository

    git fork https://github.com/jdu211171/apuri_kaihatsu.git
  2. Clone the Forked Repository

    git clone https://github.com/YOUR-USERNAME/apuri_kaihatsu.git
  3. Navigate to the Project Directory

    cd apuri_kaihatsu

Getting Latest Code Changes From original Repository to Your Repository

Fetching the latest changes from the original repository (upstream) into your forked repository is a common task in version control. Here are the steps to achieve that using Git:

  1. Add the original repository as a remote:

    • First, navigate to your local repository.
    • Add the upstream repository URL.
    git remote add upstream https://github.com/jdu211171/apuri_kaihatsu.git
  2. Fetch the latest changes from the upstream repository:

    • This command will fetch all the branches from the upstream repository but won't merge any changes.
    git fetch upstream
  3. Merge the changes into your local branch:

    • Checkout the branch you want to update (usually main or master).
    git checkout main
    • Merge the changes from the upstream branch into your local branch.
    git merge upstream/main
  4. Push the changes to your forked repository:

    • Finally, push the updated branch to your forked repository on GitHub.
    git push origin main

That's it! Your forked repository should now be up-to-date with the latest changes from the original repository.

Making Changes

  1. Create a New Branch

    git checkout -b feature-branch-name
  2. Make Your Changes and Commit

    git add .
    git commit -m "Describe your changes"

Submitting a Pull Request

  1. Push to Your Forked Repository

    git push origin feature-branch-name
  2. Create a Pull Request

    • Go to your repository on GitHub.
    • Click on the "Compare & pull request" button.
    • Provide a clear title and description for your pull request.

Checklist Before Submitting a Pull Request

  1. Run Tests and Lint the Code

    npm run test
    npm run lint
  2. Ensure Commit Messages are Meaningful

    • Use clear and descriptive commit messages.

By following these steps, you can contribute effectively to the jdu211171/apuri_kaihatsu repository.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •  

Languages