ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
Bloom expects/assumes/requires a non-empty repository.
"Non-empty" meaning: a repository with at least one branch in it.
ros2-gbp/wall_follower_ros2-release does not contain any branch, hence the error message.
2 | No.2 Revision |
Bloom expects/assumes/requires a non-empty release repository.
"Non-empty" meaning: a repository with at least one branch in it.
ros2-gbp/wall_follower_ros2-release does not contain any branch, hence the error message.
I'd suggest doing something like:
git clone https://github.com/ros2-gbp/wall_follower_ros2-release.git /tmp/ros2-gbp/wall_follower_ros2-release
cd /tmp/ros2-gbp/wall_follower_ros2-release
# if needed:
# git config --local user.name ... && git config --local user.email ...
git commit --allow-empty -m "Initial commit"
git push origin master # or whatever you have as default branch
It should start working after this.
3 | No.3 Revision |
Bloom likely expects/assumes/requires a non-empty release repository.
"Non-empty" meaning: a repository with at least one branch in it.
ros2-gbp/wall_follower_ros2-release does not contain any branch, hence the error message.
I'd suggest doing something like:
git clone https://github.com/ros2-gbp/wall_follower_ros2-release.git /tmp/ros2-gbp/wall_follower_ros2-release
cd /tmp/ros2-gbp/wall_follower_ros2-release
# if needed:
# git config --local user.name ... && git config --local user.email ...
git commit --allow-empty -m "Initial commit"
git push origin master # or whatever you have as default branch
It should start working after this.