Last active
October 23, 2015 13:43
Revisions
-
Javier Iniesta revised this gist
Sep 22, 2015 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -8,7 +8,7 @@ git clone https://github.com/OCA/web.git ``` git remote add antiun https://github.com/Antiun/web.git ``` * Create a working branch. ``` git fetch origin git checkout -b pr-example origin/8.0 -
Javier Iniesta revised this gist
Sep 22, 2015 . 1 changed file with 3 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -8,12 +8,12 @@ git clone https://github.com/OCA/web.git ``` git remote add antiun https://github.com/Antiun/web.git ``` * Create to your working branch. ``` git fetch origin git checkout -b pr-example origin/8.0 git push antiun pr-examble git branch -u antiun/pr-example ``` * Commit changes and push them. ``` -
Javier Iniesta revised this gist
Sep 22, 2015 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,5 @@ # How to create a PR to OCA * Create a fork using this [guide](https://help.github.com/articles/fork-a-repo/). * Clone the project. ``` git clone https://github.com/OCA/web.git -
Javier Iniesta revised this gist
Sep 22, 2015 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -22,4 +22,4 @@ git push antiun pr-example ``` * Create the pull request using [this guide](https://help.github.com/articles/using-pull-requests/). Your next commits will automatically update the pull request. -
Javier Iniesta revised this gist
Sep 22, 2015 . 1 changed file with 3 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -20,4 +20,6 @@ git add <modified_file_name> git commit -m 'Commit message' git push antiun pr-example ``` * Create the pull request using [this guide](https://help.github.com/articles/using-pull-requests/). Your next commits, will automatically update the pull request. -
Javier Iniesta created this gist
Sep 22, 2015 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,23 @@ # How to create a PR to OCA * Clone the project. ``` git clone https://github.com/OCA/web.git ``` * Add the remote to your fork. ``` git remote add antiun https://github.com/Antiun/web.git ``` * Checkout to your working branch. ``` git fetch origin git checkout origin/8.0 git checkout -b pr-example git push antiun pr-examble ``` * Commit changes and push them. ``` git add <modified_file_name> git commit -m 'Commit message' git push antiun pr-example ``` * Create the pull request using [this guide](https://help.github.com/articles/using-pull-requests/).