forked from egeloen/ivory-google-map
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
99 changed files
with
299 additions
and
376 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,8 +27,8 @@ If you're here, you are going to fix a bug and you're the best! To do it, first | |
create a new branch with the following commands: | ||
|
||
``` bash | ||
$ git clone [email protected]:your-name/ivory-google-map.git | ||
$ git checkout -b bug-fix-description | ||
git clone [email protected]:your-name/ivory-google-map.git | ||
git checkout -b bug-fix-description | ||
``` | ||
|
||
Then, we recommend to use [Docker](https://www.docker.com) and follow this [instructions](/doc/development_environment.md) in order to | ||
|
@@ -41,21 +41,21 @@ it immediately. Before, you will need to add tests and update the doc. For the t | |
When you have fixed the bug, tested it and documented it, you can commit and push it with the following commands: | ||
|
||
``` bash | ||
$ git commit -m "Bug fix description" | ||
$ git push origin bug-fix-description | ||
git commit -m "Bug fix description" | ||
git push origin bug-fix-description | ||
``` | ||
|
||
If you have reworked you patch, please squash all your commits in a single one with the following commands (here, we | ||
will assume you would like to squash 3 commits in a single one): | ||
|
||
``` bash | ||
$ git rebase -i HEAD~3 | ||
git rebase -i HEAD~3 | ||
``` | ||
|
||
If your branch conflicts with the master branch, you will need to rebase and repush it with the following commands: | ||
|
||
``` bash | ||
$ git remote add upstream [email protected]:bresam/ivory-google-map.git | ||
$ git pull --rebase upstream master | ||
$ git push origin bug-fix-description -f | ||
git remote add upstream [email protected]:bresam/ivory-google-map.git | ||
git pull --rebase upstream master | ||
git push origin bug-fix-description -f | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.