You can change the default remote using one of these git commands:
**If you want to change the existing "origin" remote:**
```bash
git remote set-url origin https://github.com/dannyob/ribs
```
**If you want to add a new remote named "origin" (if none exists):**
```bash
git remote add origin https://github.com/dannyob/ribs
```
**To verify the change worked:**
```bash
git remote -v
```
The first command is most commonly used when you need to update where your repository points to. The "origin" remote is typically considered the default remote in Git.