Skip to content

Find fishing spots, get weather forecasts, and track fish behaviors!

License

Notifications You must be signed in to change notification settings

devseasense/seasense

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

61 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SeaSense

Note

Our capstone project is still in progress in development. This is still not working well and we are addressing some challenges.

GitHub Forking and Pull Requests

Forking a Repository

  1. Go to the repository you want to contribute to on GitHub.
  2. Click on the "Fork" button at the top right corner of the page.

Cloning the Forked Repository

  1. Clone the forked repository to your local machine using:
    git clone https://github.com/devseasense/seasense.git
    
  2. Navigate into the repository's directory:
    cd seasense
    

Creating a New Branch

  1. Create a new branch to make your changes
    git checkout -b branch_name
    

Making Changes

  1. Make the necessary changes in your code.
  2. Test your changes to ensure they work as expected.

Committing and Pushing Changes

  1. Add your changes:
    git add .
    
  2. Commit your changes:
    git commit -m "feat: Description of changes"
    
  3. Push your changes to the forked repository:
    git push origin branch-name
    

Creating a Pull Request

  1. Go to your forked repository on GitHub.
  2. Click on the "Compare & pull request" button.
  3. Provide a clear title and description for your pull request.
  4. Submit the pull request.