-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
original doc reverted as it is not necessary anyways
- Loading branch information
Showing
1 changed file
with
11 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,11 +47,19 @@ catkin config --cmake-args -DCMAKE_CXX_STANDARD=14 -DCMAKE_BUILD_TYPE=Release | |
wstool init src | ||
``` | ||
|
||
Clone the `tsdf-plusplus` repository (first tries over SSH and falls back to HTTPS): | ||
Clone the `tsdf-plusplus` repository over HTTPS (no Github account required) and automatically fetch dependencies: | ||
```bash | ||
cd $CATKIN_WS/src | ||
git clone [email protected]:ethz-asl/tsdf-plusplus.git | git clone https://github.com/ethz-asl/tsdf-plusplus.git | ||
wstool merge -t . tsdf-plusplus/tsdf_plusplus_ssh.rosinstall | wstool merge -t . tsdf-plusplus/tsdf_plusplus_https.rosinstall | ||
git clone https://github.com/ethz-asl/tsdf-plusplus.git | ||
wstool merge -t . tsdf-plusplus/tsdf_plusplus_https.rosinstall | ||
wstool update | ||
``` | ||
|
||
Alternatively, clone over SSH (Github account required): | ||
```bash | ||
cd $CATKIN_WS/src | ||
git clone [email protected]:ethz-asl/tsdf-plusplus.git | ||
wstool merge -t . tsdf-plusplus/tsdf_plusplus_ssh.rosinstall | ||
wstool update | ||
``` | ||
|
||
|