-
Notifications
You must be signed in to change notification settings - Fork 7
Workflow to code development
Daniel Gomes edited this page Jan 19, 2016
·
1 revision
The page outlines how to contribute in terms of code.
- Make your own copy of the code by pressing bottom named "Fork"
- git clone https://github.com/YOUR-USERNAME/pwa-technologies
- Now, you have a local copy of your fork of the pwa-technologies repository
- When a stable release is reached, press the pull request bottom named "New pull request"
-
Type git remote -v and press Enter. You'll see the current configured remote repository for your fork.
-
Manage or remote url with
git remote -v
origin git@github.com:FCCNhviana/pwa-technologies.git (fetch) origin git@github.com:FCCNhviana/pwa-technologies.git (push)
-
Type git remote add arquivo, and then paste the URL you copied in Step 2 and press
git remote add arquivo https://github.com/arquivo/pwa-technologies.git
-
Verify if remote arquivo was well configured
git remote -v
arquivo https://github.com/arquivo/pwa-technologies.git (fetch) arquivo https://github.com/arquivo/pwa-technologies.git (push) origin git@github.com:FCCNhviana/pwa-technologies.git (fetch) origin git@github.com:FCCNhviana/pwa-technologies.git (push)
-
Merge your code with master of arquivo
git pull arquivo master
-
Add a file to master repository
git add README.md
-
Local copy
`git commit -m "first commit"`
-
Push code to branch master
`git push origin master`