Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,18 @@
"github": "https://github.com/All-Hands-AI/OpenHands"
}
},
"banner": {
"content": "📢 **GitHub Org Rename:** All-Hands-AI to OpenHands on Monday Oct 20th at 18:00 UTC. [Migration details →](https://github.com/All-Hands-AI/OpenHands/issues/11376)",
"dismissible": true
},
"head": [
{
"tag": "link",
"attributes": {
"rel": "stylesheet"
}
}
],
"contextual": {
"options": [
"copy",
Expand Down
26 changes: 26 additions & 0 deletions openhands/usage/troubleshooting/troubleshooting.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -104,3 +104,29 @@ To fix this:
[sandbox]
vscode_port = 41234
```

### GitHub Organization Rename Issues

**Description**

After the GitHub organization rename from `All-Hands-AI` to `OpenHands`, you may encounter issues with git remotes, Docker images, or broken links.

**Resolution**

* Update your git remote URL:
```bash
# Check current remote
git remote get-url origin

# Update SSH remote
git remote set-url origin git@github.com:OpenHands/OpenHands.git

# Or update HTTPS remote
git remote set-url origin https://github.com/OpenHands/OpenHands.git
```
* Update Docker image references from `ghcr.io/all-hands-ai/` to `ghcr.io/openhands/`
* Find and update any hardcoded references:
```bash
git grep -i "all-hands-ai"
git grep -i "ghcr.io/all-hands-ai"
```
4 changes: 4 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#banner * {
/* Default banner showed white text on yellow in our theme */
color: rgb(67, 66, 64);
}