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

extrended instructions on rebasePres

parent a3133f6e
No related branches found
No related tags found
No related merge requests found
......@@ -2,11 +2,13 @@
* Create a file in your branch
```bash
$ git checkout myBranch
$ echo "# message" > yourName.md
```
* Then create a file in the develop branch
```bash
$ git checkout develop
$ touch startRebase.txt
```
......
......@@ -2,8 +2,11 @@
* rebase the develop branch onto your branch
```bash
$ git checkout myBranchName
$ git checkout myBranch
$ git rebase develop
```
* check the history of your branch again
\ No newline at end of file
* check the history of your branch again
```bash
$ git log
```
\ No newline at end of file
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