Git-appraise: Distributed code review system for Git repos
21–30 of 30 posts
Re: Git-appraise: Distributed code review system for Git repos
#22How does this handle identity? For example, what's preventing me from just changing my name and reviewing myself?
Re: Git-appraise: Distributed code review system for Git repos
#23Earlier quoted context omitted.
To me it looks like something that could be used to implement Gerrit, but it doesn't come close to what Gerrit offers, having used it for a few years now. Gerrit is excellent at what it does.
I like Gerrit features, but it always seemed too complicated to integrate into usual coding workflow, especially with people always even complaining about git being "hard to use". This tools seems simpler compared to Gerrit, and more flexible compared to GitHub pull requests. I would appreciate advices on introducing Gerrit to my team and make it somehow transparent in development workflow.
http://alblue.bandlem.com/2011/02/someday.html
I recorded a video showing how it worked together:
http://alblue.bandlem.com/2011/02/gerrit-git-review-with-jen...
Once you understand the workflow it's actually easy to adopt. The biggest challenge is getting people to think in terms of push requests instead of pull requests. If you configure the remote as "git config push HEAD:refs/for/master" then it becomes as simple as doing "git push" to upload changes.
Re: Git-appraise: Distributed code review system for Git repos
#24How does this compare w.r.t Gerrit? I see that an advantage is that it doesn't require server-side setup. But wouldn't one require some sort of central repo to coordinate code reviews and CI tests?
https://groups.google.com/forum/m/#!topic/repo-discuss/Uab1n...
Re: Git-appraise: Distributed code review system for Git repos
#25When building a tool that uses git I'm wondering if it is better practice to use git2go (https://github.com/libgit2/git2go) or to do what this author did which is wrap the git command line tool: https://github.com/google/git-appraise/blob/master/repositor...
Re: Git-appraise: Distributed code review system for Git repos
#26I can’t find any mention of GUI frontends for git-appraise. While I prefer to write code in my terminal, I like to switch settings for reviewing code — with GitHub’s Pull Requests, I can just do it in the browser. Can I use git-appraise in my browser? Is there a stand-alone tool?
Re: Git-appraise: Distributed code review system for Git repos
#27How does this handle identity? For example, what's preventing me from just changing my name and reviewing myself?
Re: Git-appraise: Distributed code review system for Git repos
#28This seems like an awesome tool. Sadly my comment has more to do with Go, as I'm new to the language and trying to learn. When building a tool that uses git I'm wondering if it is better practice to use git2go ( https://github.com/libgit2/git2go ) or to do what this author did which is wrap the git command line tool: https://github.com/google/git-appraise/blob/master/repositor...
Re: Git-appraise: Distributed code review system for Git repos
#29Re: Git-appraise: Distributed code review system for Git repos
#30Looks seriously cool and I am sad!