Steps to raise a PR - cyber-fraud-detection-chatbot/chatbot GitHub Wiki

I'll help you with the steps to fork, clone and set upstream for your GitHub repository. Since I can't access the URL directly, I'll provide the general steps using your repository name.

First, fork the repository:

Go to https://github.com/cyber-fraud-detection-chatbot/chatbot in your browser

Click the "Fork" button in the top-right corner

This will create a copy in your GitHub account: https://github.com/YOUR_USERNAME/chatbot

Clone your forked repository locally:

git clone https://github.com/YOUR_USERNAME/chatbot cd chatbot

Add the original repository as upstream

git remote add upstream https://github.com/cyber-fraud-detection-chatbot/chatbot

Verify your remotes

bashCopygit remote -v You should see something like: bashCopyorigin https://github.com/YOUR_USERNAME/chatbot (fetch) origin https://github.com/YOUR_USERNAME/chatbot (push) upstream https://github.com/cyber-fraud-detection-chatbot/chatbot (fetch) upstream https://github.com/cyber-fraud-detection-chatbot/chatbot (push)

Now you can:

Pull changes from upstream: git fetch upstream Merge upstream changes: git merge upstream/main Push to your fork: git push origin main

Check the following document for the steps https://app.eraser.io/workspace/FyDrue7sTatAyPAij9gg?origin=share