Funny that the library is not open source, but still they do host it on a public github repo. Doesn't make much sense to me, and there should be some clarifications on what is authorized and what is not. Github is "Free for open source projects", I have always wondered what definition they would use for "open source". Looked for it a few years ago, and didn't find it. Any clue on what's acceptable policy for them? Ma…
Creating a custom Git flow visualization
11–20 of 20 posts
Re: Creating a custom Git flow visualization
#12Summary: Author created a Stash-based visualization tool that takes the output of git log --graph --oneline --decorate --all and renders a pretty diagram. Quite nice, actually. Not open source, as it is a private side project of the company, but examples are available on GitHub (cf TFA).
Main difference is that the develop and master branch always run all the way to the top. Take any public Github repo and compare the output of beta.gitflowchart.com/ with the git-log output. It is not the same thing.
Re: Creating a custom Git flow visualization
#13[shameless plug] git-cola/git-dag[1] can do this kind of visualization[2], and you can interact with the nodes too (checkout files, diff, etc). [1] https://github.com/git-cola/git-cola [2] https://git-cola.github.io/screenshots.html
Re: Creating a custom Git flow visualization
#14Re: Creating a custom Git flow visualization
#15This looks really slick. I've seen some good and not-so-good visualizations of git log --graph --decorate --all (I always end up mapping this to 'git map'), and this looks nicely clean. My biggest question though, is on the Github permissions. It requires read/write access on all user data (and public repositories), but I'd expect read access being all that's required.
Re: Creating a custom Git flow visualization
#16This looks really slick. I've seen some good and not-so-good visualizations of git log --graph --decorate --all (I always end up mapping this to 'git map'), and this looks nicely clean. My biggest question though, is on the Github permissions. It requires read/write access on all user data (and public repositories), but I'd expect read access being all that's required.
Re: Creating a custom Git flow visualization
#17This looks really slick. I've seen some good and not-so-good visualizations of git log --graph --decorate --all (I always end up mapping this to 'git map'), and this looks nicely clean. My biggest question though, is on the Github permissions. It requires read/write access on all user data (and public repositories), but I'd expect read access being all that's required.
Re: Creating a custom Git flow visualization
#18Summary: Author created a Stash-based visualization tool that takes the output of git log --graph --oneline --decorate --all and renders a pretty diagram. Quite nice, actually. Not open source, as it is a private side project of the company, but examples are available on GitHub (cf TFA).
It actually doesn't take the output of 'git log' at all. That output is visualized by many other libraries already (nicer, frankly). What I have done is create a completely different graph, inspired by the chart presented with git-flow by Vincent Driessen ( http://nvie.com/posts/a-successful-git-branching-model/ ). Main difference is that the develop and master branch always run all the way to the top. Take any publi…
Re: Creating a custom Git flow visualization
#19Funny that the library is not open source, but still they do host it on a public github repo. Doesn't make much sense to me, and there should be some clarifications on what is authorized and what is not. Github is "Free for open source projects", I have always wondered what definition they would use for "open source". Looked for it a few years ago, and didn't find it. Any clue on what's acceptable policy for them? Ma…
Hi, I am the author of the library on Github. First of all, Github is not free for Open Source, it is free for public projects ( https://github.com/pricing ). Not just for OSS, if the repo is public, it is free. Is Git Flow Chart Open Source? No, it is not. Choosing an OSS license would make it hard to make money on the plugin. On Atlassians marketplace, this means that if your project is OSS, you get it for free, bu…
Re: Creating a custom Git flow visualization
#20Funny that the library is not open source, but still they do host it on a public github repo. Doesn't make much sense to me, and there should be some clarifications on what is authorized and what is not. Github is "Free for open source projects", I have always wondered what definition they would use for "open source". Looked for it a few years ago, and didn't find it. Any clue on what's acceptable policy for them? Ma…
Hi, I am the author of the library on Github. First of all, Github is not free for Open Source, it is free for public projects ( https://github.com/pricing ). Not just for OSS, if the repo is public, it is free. Is Git Flow Chart Open Source? No, it is not. Choosing an OSS license would make it hard to make money on the plugin. On Atlassians marketplace, this means that if your project is OSS, you get it for free, bu…
I'm glad to learn gitHub rephrased their offer from "free for open source" to "free for public projects", it's more straightforward.
You might want to create a LICENSE.md, or to make the following sentence stand out in your README, right now it's buried in the middle of a paragraph: "I will keep use of the plug-in free for non-commercial and personal use."