Skip to content

Commit

Permalink
Make instructions more clear
Browse files Browse the repository at this point in the history
  • Loading branch information
romildo committed Oct 17, 2016
1 parent 64c0798 commit 78fcc90
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,18 @@ $ git pull upstream master
$ git checkout -b <activity>
```
- Develop the activity.
- See the status of your cloned repository:
```
git status
```
- Add any new or modified file to the revision history:
```
git add <files>
```
- Commit the changes:
```
git commit -m <message>
```
- Push your changes to your forked project.
```
git push origin <activity>
Expand Down

0 comments on commit 78fcc90

Please sign in to comment.