DEV Community

Discussion on: Code management with Git and Github

Collapse
 
codevault profile image
Sergiu Mureşan

Great tutorial! It covers most features from GitHub that are often unused. I would like to see a coverage of automated deployment on GitHub since you already started talking about that :D

Collapse
 
joshichinmay profile image
Chinmay Joshi • Edited

Thank you CodeVault!

I am not so sure what do you mean by "coverage of automated deployment".

Do you want to see code coverage generated by your test suite?
Or the progress of current deployment?

You can check out code-climate. It produces test suite coverage for your code.

Collapse
 
codevault profile image
Sergiu Mureşan • Edited

I see a lot of projects that have a build status for the current version. And there is also a system that builds the project and spits out library/installers/executable files after each push.

Using that coupled with git tags in your commits you can release a new version of your code by just pushing to upstream.

A small tutorial on that would merge perfectly with the end paragraphs of this one, I think.

Thread Thread
 
joshichinmay profile image
Chinmay Joshi

Got your point. Maybe I will write a new blog soon about that.

Meantime you can check out travis-ci. Their documentation is pretty amazing. And it's simple to integrate with Github.

Thank you for your inputs.

Thread Thread
 
codevault profile image
Sergiu Mureşan

No problem mate.

Thank you as well, I will definitely check it out.