Skip to content

Commit

Permalink
Revert the change of git checkout
Browse files Browse the repository at this point in the history
  • Loading branch information
zhiqwang committed Oct 24, 2021
1 parent d494d92 commit 9fe90c9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/greetings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
```bash
git remote add upstream https://github.com/ultralytics/yolov5.git
git fetch upstream
git checkout -b feature # <----- replace 'feature' with local branch name
git checkout feature # <----- replace 'feature' with local branch name
git merge upstream/master
git push -u origin -f
```
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ To allow your work to be integrated as seamlessly as possible, we advise you to:
```bash
git remote add upstream https://github.com/ultralytics/yolov5.git
git fetch upstream
git checkout -b feature # <----- replace 'feature' with local branch name
git checkout feature # <----- replace 'feature' with local branch name
git merge upstream/master
git push -u origin -f
```
Expand Down

0 comments on commit 9fe90c9

Please sign in to comment.