Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix a typo, add a section about blooming #299

Merged
merged 2 commits into from
Jan 21, 2025
Merged
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
16 changes: 14 additions & 2 deletions docs/ros/tutorials/cheat_sheet.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ brackets are _optional_, and may be omitted.

Since ROS 2 launched, all ROS 2 terminal commands are of the format `ros2 command [verb] [args...]`

### Seting the `ROS_DOMAIN_ID`
### Setting the `ROS_DOMAIN_ID`

Because of its distributed nature, ROS 2 uses numbered **domains** to manage communication
between nodes. Before running any `ros2` commands, make sure your domain is set correctly.
Expand Down Expand Up @@ -187,7 +187,7 @@ git clone https://github.com/org/repo_name.git -b repo_branch

### Resolve dependencies within a workspace

::: note
:::note

Make sure you've already run `sudo rosdep init` once on your system to initialize
`rosdep` the first time!
Expand Down Expand Up @@ -245,6 +245,18 @@ Supported licenses include:
| `src/` | C++ source files |
| `action/`, 'msg/`, 'srv/` | ROS action, message, and service definitions |

### Releasing packages

```bash
cd /path/to/colcon_ws/src/repository_name
catkin_generate_changelog
# review & edit changelogs as necessary
git add .
git commit -m "Changes"
catkin_prepare_release [--bump major|minor|patch]
bloom-release -t $ROS_DISTRO -r $ROS_DISTRO repository_name
```

## `package.xml`

### Skeleton
Expand Down
Loading