All Questions
3 questions
1
vote
1
answer
179
views
How do I review code changes that are the result of syncing?
At my current job we develop code on a release branch and then do a code review. After all rework is done the final changes are also synced/merged to the 'main branch'. We want to be sure that all ...
3
votes
3
answers
572
views
What can I do to let our team have code reviews of branch merges having hundreds of screens worth of Github diffs?
"Code review" (aka "peer review") seems like a really great idea, so my team started practicing it.
For a little while it worked well, but then a co-worker merged a branch in, and asked for a review ...
4
votes
3
answers
921
views
Can we reduce confusion in line-based diff tools by annotating the code with some unique tokens?
Let's say I have
procedure1() {
--body of first procedure--
}
Then I rename it into procedure2 and create a procedure1 above it:
procedure1() {
--body of second procedure--
}
procedure2() {
...