Skip to content
This repository was archived by the owner on Jan 1, 2025. It is now read-only.

Commit ac45469

Browse files
committed
Update to main for default branch
1 parent 13a70d2 commit ac45469

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ outlined on that page and do not file a public issue.
5353
## Pull Requests
5454
Contributions will be managed through pull requests. This [article](https://gist.github.com/Chaser324/ce0505fbed06b947d962) is good resource for the pull request workflow.
5555

56-
1. Fork the repo and create your branch from `master`.
56+
1. Fork the repo and create your branch from `main`.
5757
2. If you've changed APIs, update the documentation.
5858
3. Follow the steps in the section below section on [Testing](#testing)
5959
4. Make sure your code lints.
@@ -81,4 +81,4 @@ The python code uses [Flake8](https://pypi.org/project/flake8/) style. [autopep8
8181

8282
## License
8383
By contributing to **PyRobot**, you agree that your contributions will be licensed
84-
under the LICENSE file in the root directory of this source tree.
84+
under the LICENSE file in the root directory of this source tree.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
```bash
2929
sudo apt update
3030
sudo apt-get install curl
31-
curl 'https://raw.githubusercontent.com/facebookresearch/pyrobot/master/robots/LoCoBot/install/locobot_install_all.sh' > locobot_install_all.sh
31+
curl 'https://raw.githubusercontent.com/facebookresearch/pyrobot/main/robots/LoCoBot/install/locobot_install_all.sh' > locobot_install_all.sh
3232
```
3333

3434
* Run the script to install everything (ROS, realsense driver, etc.).

docs/website/docs/ex_manip_sawyer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Here is an example of what one can accoplish through this tutorial
1515

1616
## Setup
1717

18-
To install the Sawyer software, please follow the instructions in this [README](https://github.com/facebookresearch/pyrobot/tree/master/robots/sawyer) to install and setup the appropriate sawyer software.
18+
To install the Sawyer software, please follow the instructions in this [README](https://github.com/facebookresearch/pyrobot/tree/main/robots/sawyer) to install and setup the appropriate sawyer software.
1919

2020
Go through the following steps to get the PyRobot code working on Sawyer.
2121

docs/website/docs/ex_navigation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ robot.base.track_trajectory(states, close_loop=True)
247247
```
248248
In this example, we tracked a very simple trajectory, but the implementation
249249
can track more complex trajectories as well. More a more advanced example see
250-
[here](https://github.com/facebookresearch/pyrobot/blob/master/examples/locobot/navigation/base_trajectory_tracking.py).
250+
[here](https://github.com/facebookresearch/pyrobot/blob/main/examples/locobot/navigation/base_trajectory_tracking.py).
251251

252252
## Position control with map (Real robot)
253253
Position control with map is an enhanced position control feature that allows

docs/website/docs/faq.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ This is probably because of friction and over use. Applying some lubricant will
7272

7373
**9. How do I contribute?**
7474

75-
Thanks in advance for your contributions. Please see [contribute.md](https://github.com/facebookresearch/pyrobot/blob/master/CONTRIBUTING.md)
75+
Thanks in advance for your contributions. Please see [contribute.md](https://github.com/facebookresearch/pyrobot/blob/main/CONTRIBUTING.md)
7676

7777
**10. PyRobot doesn't work well if Robot is launched with different settings?**
7878

docs/website/docs/gs_software.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ sidebar_label: Install software
1515
```bash
1616
sudo apt update
1717
sudo apt-get install curl
18-
curl 'https://raw.githubusercontent.com/facebookresearch/pyrobot/master/robots/LoCoBot/install/locobot_install_all.sh' > locobot_install_all.sh
18+
curl 'https://raw.githubusercontent.com/facebookresearch/pyrobot/main/robots/LoCoBot/install/locobot_install_all.sh' > locobot_install_all.sh
1919
```
2020

2121
* Run the script to install everything (ROS, realsense driver, etc.).

docs/website/website/pages/en/users.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class Users extends React.Component {
1818
return null;
1919
}
2020

21-
const editUrl = `${siteConfig.repoUrl}/edit/master/website/siteConfig.js`;
21+
const editUrl = `${siteConfig.repoUrl}/edit/main/website/siteConfig.js`;
2222
const showcase = siteConfig.users.map(user => (
2323
<a href={user.infoLink} key={user.infoLink}>
2424
<img src={user.image} alt={user.caption} title={user.caption} />

robots/LoCoBot/install/locobot_install_all.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ if [ ! -d "$LOCOBOT_FOLDER/src/pyrobot" ]; then
238238
cd $LOCOBOT_FOLDER/src
239239
git clone https://github.com/facebookresearch/pyrobot.git
240240
cd pyrobot
241-
git checkout master
241+
git checkout main
242242
git submodule update --init --recursive
243243
if [ $LOCOBOT_PLATFORM == "cmu" ]; then
244244
cd $LOCOBOT_FOLDER/src/pyrobot/robots/LoCoBot/locobot_description/urdf

0 commit comments

Comments
 (0)