Skip to content
Open
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
2 changes: 1 addition & 1 deletion advanced/Exercise_5_git-workflow.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ cd <repository-directory>
Create a new branch for your changes and set the upstream correctly:
```bash
git switch -c <my-branch>
git branch --set-upstream-to=origin/<my-branch> <my-branch>
git push -u origin <my-branch>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Shouldn't we add a comment that this has to be done only once? Or instead we let them to try to run git push only and then they should follow the Git instructions?

```
- Make a small change, for example, add a new file or edit an existing file.

Expand Down