Tagged Questions
20
votes
11answers
3k views
Should your best programmers have to check everyone else's code into source control?
One of the differences between svn and git is the ability to control access to the repository. It's hard to compare the two because there is a difference of perspective about who should be allowed to ...
0
votes
2answers
176 views
Revamp application [closed]
I am a software developer having an experience of 3 yrs. I want to play with latest technologies always. But this is not practical. Because say, I developed a web application in .Net 3.5, now its 30% ...
3
votes
4answers
964 views
source code check in / validation best practices
I am looking for best practices that big organizations follow for code check-in and validations.
Currently we follow these steps,
- Developer writes code
- Developer do some initial tests
- Code is ...
11
votes
5answers
3k views
What's the best way to review a code before it's committed to the trunk? (SVN)
What's the best way to review a code before it's committed to the SVN trunk? One idea that I am thinking of is to having the developer to commit his code to a branch and then reviewing his code while ...
2
votes
2answers
1k views
Any Code Review tool with direct connection to CVS? [closed]
I've found many Code Review tools:
Phabricator (by Facebook) - http://phabricator.org/
Rietveld (by Google) - http://code.google.com/appengine/articles/rietveld.html
GitHub - https://github.com/
...
5
votes
3answers
250 views
What quality level in the commit history can/should I expect/enforce?
I worked as a lone developer for a long time. During this time, I developed a way of formulating and ordering commit messages: Refactor first, describe exactly the reason for the commit in the ...
-2
votes
2answers
135 views
Better control on code updates
I will briefly explain my situation.
I have a website in PHP, this website is powered by a custom framework + some "plug-in" made ad hoc for it.
I am the only developer of this. Until now I just ...
7
votes
1answer
1k views
Combining Code Review with Trust Metrics
I don't get the chance to partake of it at work. But I love the idea of code review.
Especially of online open source code review like Gerrit Code Review.
I love what Trust Metrics have done for ...
12
votes
7answers
1k views
What will be the best practice for having 'reviewed' source code in a source control repository?
What will be the best way to manage reviewed source code in a source control repository?
Should the source code go through a review process before getting checked in, or should the code review happen ...