Skip to content
Snippets Groups Projects
Commit d7f49e5d authored by Daniel Duarte's avatar Daniel Duarte
Browse files

adjust example

parent 46b9fc9d
No related branches found
No related tags found
No related merge requests found
......@@ -6,11 +6,11 @@
```bash
$ echo "Name of one attendee" > attendeeName.md
git add attendeeName.md
git commit -m "Add name to the list of attendees"
git commit -m "Add first name to the list of attendees"
git push origin yourBranch
$ echo "Name of a second attendee" > attendeeName2.md
git add attendeeName2.md
git commit -m "Add name to the list of attendees"
git commit -m "Add second name to the list of attendees"
git push origin yourBranch
```
\ No newline at end of file
## Interactive Rebase Workshop
* Perform an interactive rebase onto the develop branch
* Perform an interactive rebase with the two last commits:
```bash
git rebase -i develop
git rebase -i HEAD~2
```
* reword the first commit's message to:
......
## Interactive Rebase Workshop
* Use `git log` to see if the rebase was successful
```bash
reword xxxxxxx add first name to attendee list
fixup yyyyyyy add second name to attendee list
```
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment