Hi, My company has an individual account, which contains our private repositories. We normally work directly with the repositories on that account, cloning them and working with topic branches locally prior to pushing back to the shared repository on github.
e.g. git clone [email protected]:my-company/our-project.git cd our-project git checkout -b some-feature develop git add .. git commit git co develop git merge --no-ff some-feature git push origin develop We wanted to introduce a more formal, pre-commit review step into our workflow. I suggested using ForkQueues. So our revised workflow is for an individual to fork a github project (their fork remains private, so our company's code is not made public), clone their fork and work with that, then commit and push when they're happy. git clone [email protected]:a-developer/our-project.git cd our-project git remote add upstream git://github.com/my-company/our-project.git # or just change the remotes of an existing local repository git co -b some-feature develop git add ... git commit git co develop git merge --no-ff some-feature git push origin develop After that, I was expecting to see entries in the ForkQueue for the my- company/our-project project on github, but I don't? Can anyone point out what I'm missing? Cheers, James -- You received this message because you are subscribed to the Google Groups "GitHub" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/github?hl=en.
