How to handle when another dev screwed up a project?
I was working in a project and I finished all my tasks.
Another dev started to work in the new tasks.
Now I have downloaded the project and its with some build errors on it.
How can I handle with this?
I should think that the version control is enough to the manager or another one sees who screwed up the project?
Or I should talk to him, asking about the changes he did?
I'm new in this company, and he is too. But he seems to be less skilled than me.
software-industry colleagues software-development developer team-building
New contributor
|
show 2 more comments
I was working in a project and I finished all my tasks.
Another dev started to work in the new tasks.
Now I have downloaded the project and its with some build errors on it.
How can I handle with this?
I should think that the version control is enough to the manager or another one sees who screwed up the project?
Or I should talk to him, asking about the changes he did?
I'm new in this company, and he is too. But he seems to be less skilled than me.
software-industry colleagues software-development developer team-building
New contributor
8
Relax. Talk to him first. Calm and constructive.
– kiltek
6 hours ago
Do you think its better to talk in skype, or in person to my manager and another people listen too?
– LMaker
6 hours ago
4
First you go in person to the other developer and talk to him. Leave out the manager.
– kiltek
6 hours ago
3
Shit happens. Next time it could be you checking in some errors. At this point you should think about integration testing and continous integration, which can be used as a counter measurement against build errors in general.
– kiltek
6 hours ago
2
@LMaker if everything is red, I would suggest that there are uncommitted changes or a missing reference or a missing DLL which you have to get elsewhere, not necessarily that there is fundamentally something wrong with the project.
– user1666620
5 hours ago
|
show 2 more comments
I was working in a project and I finished all my tasks.
Another dev started to work in the new tasks.
Now I have downloaded the project and its with some build errors on it.
How can I handle with this?
I should think that the version control is enough to the manager or another one sees who screwed up the project?
Or I should talk to him, asking about the changes he did?
I'm new in this company, and he is too. But he seems to be less skilled than me.
software-industry colleagues software-development developer team-building
New contributor
I was working in a project and I finished all my tasks.
Another dev started to work in the new tasks.
Now I have downloaded the project and its with some build errors on it.
How can I handle with this?
I should think that the version control is enough to the manager or another one sees who screwed up the project?
Or I should talk to him, asking about the changes he did?
I'm new in this company, and he is too. But he seems to be less skilled than me.
software-industry colleagues software-development developer team-building
software-industry colleagues software-development developer team-building
New contributor
New contributor
edited 6 hours ago
Jackspace
1,113118
1,113118
New contributor
asked 6 hours ago
LMakerLMaker
4431212
4431212
New contributor
New contributor
8
Relax. Talk to him first. Calm and constructive.
– kiltek
6 hours ago
Do you think its better to talk in skype, or in person to my manager and another people listen too?
– LMaker
6 hours ago
4
First you go in person to the other developer and talk to him. Leave out the manager.
– kiltek
6 hours ago
3
Shit happens. Next time it could be you checking in some errors. At this point you should think about integration testing and continous integration, which can be used as a counter measurement against build errors in general.
– kiltek
6 hours ago
2
@LMaker if everything is red, I would suggest that there are uncommitted changes or a missing reference or a missing DLL which you have to get elsewhere, not necessarily that there is fundamentally something wrong with the project.
– user1666620
5 hours ago
|
show 2 more comments
8
Relax. Talk to him first. Calm and constructive.
– kiltek
6 hours ago
Do you think its better to talk in skype, or in person to my manager and another people listen too?
– LMaker
6 hours ago
4
First you go in person to the other developer and talk to him. Leave out the manager.
– kiltek
6 hours ago
3
Shit happens. Next time it could be you checking in some errors. At this point you should think about integration testing and continous integration, which can be used as a counter measurement against build errors in general.
– kiltek
6 hours ago
2
@LMaker if everything is red, I would suggest that there are uncommitted changes or a missing reference or a missing DLL which you have to get elsewhere, not necessarily that there is fundamentally something wrong with the project.
– user1666620
5 hours ago
8
8
Relax. Talk to him first. Calm and constructive.
– kiltek
6 hours ago
Relax. Talk to him first. Calm and constructive.
– kiltek
6 hours ago
Do you think its better to talk in skype, or in person to my manager and another people listen too?
– LMaker
6 hours ago
Do you think its better to talk in skype, or in person to my manager and another people listen too?
– LMaker
6 hours ago
4
4
First you go in person to the other developer and talk to him. Leave out the manager.
– kiltek
6 hours ago
First you go in person to the other developer and talk to him. Leave out the manager.
– kiltek
6 hours ago
3
3
Shit happens. Next time it could be you checking in some errors. At this point you should think about integration testing and continous integration, which can be used as a counter measurement against build errors in general.
– kiltek
6 hours ago
Shit happens. Next time it could be you checking in some errors. At this point you should think about integration testing and continous integration, which can be used as a counter measurement against build errors in general.
– kiltek
6 hours ago
2
2
@LMaker if everything is red, I would suggest that there are uncommitted changes or a missing reference or a missing DLL which you have to get elsewhere, not necessarily that there is fundamentally something wrong with the project.
– user1666620
5 hours ago
@LMaker if everything is red, I would suggest that there are uncommitted changes or a missing reference or a missing DLL which you have to get elsewhere, not necessarily that there is fundamentally something wrong with the project.
– user1666620
5 hours ago
|
show 2 more comments
6 Answers
6
active
oldest
votes
You should definitely talk to him about it. Maybe he didn't fully commit all his code/changes, or maybe he committed on accident.
If he did commit everything & was fully aware of doing so, you should ask him about the errors & maybe even offer to help fixing them if he doesn't know how to do so himself.
You can always go straight to your manager if it turns out he just doesn't care about the quality of his code or if you feel like his incompetence hinders you from doing your job.
Calmly talking to him about it should be the first step, you're colleagues after all.
New contributor
2
One of the best developers I ever worked with had a habit, for a few years, of changing things in two places in the repository and committing one.
– David Thornley
5 hours ago
add a comment |
I should think that the version control is enough to the manager or another one sees who screwed up the project?
Perhaps, but that should not be your main concern. You do not want to play the blame game; that will not improve working relations, and certainly won't help to fix the problem.
Or I should talk to him, asking about the changes he did?
Talk to him. Don't blame him. Point out why it's broken, and then ask "how can we fix this?" Emphasize that all you care about is bringing the project to a good end.
I'm new in this company, and he is too. But he seems to be less skilled than me.
So what? It's not a competition. There will be others who are more skilled than you.
add a comment |
This is exactly what build servers are for. They check out the source after each commit and see if it builds and send a mail to whoever broke the build so they can fix the problem.
Some build servers can even serve out the artifacts built if needed.
If you don't have one, get one. A good place to start is Jenkins which is very easy to get started with.
In this particular case, the problem would probably have been fixed before he went home without any need for talking or finger pointing.
add a comment |
How can I handle with this?
Implement a Pull Request (or whatever you call it) workflow that will allow another dev to review changes before they are added
Developers, even seasoned ones break the build. It sounds like you are not the tech lead. Step up and show the tech lead you'll take point on implementing the (much needed) process.
Go talk to him 1 on 1 about the changes. See if this is a configuration issue on your part. If it is, problem solved.
If not, look at how you can use a workflow to stop this from happening again.
After reviewing how to turn on reviews and auto-builds in your current system, approach the tech lead. Say something like
I've noticed that sometimes people check in changes that break the system, and if we turn on PR reviews, that should go down significantly. We can also build the system every time someone checks in, which should cut down on that too.
Hopefully the tech lead will be overjoyed someone wants to step up and do this. If they vehemently hate the idea, run for your life.
Code reviews are not needed for build breaking changes. Automated builds with email notifications are the solution to that issue.
– 17 of 26
5 hours ago
add a comment |
Step 1: Talk to him. Mention that the build is broken, and the last commit on it was his commit, so ask him what happened (it's important to not say "you broke the build!" because a) that's accusatory and b) perhaps his change wasn't actually the change that broke the build, e.g. maybe it was a configuration change, or maybe you forgot about a change you yourself made, etc, in which case you come off looking very abrasive and accusatory).
Step 2: If he is receptive to your statement, work with him to fix it and if he doesn't understand what went wrong, explain it to him. Explaining it to him will teach him how not to make the same mistake again. That's called mentorship and is very important among colleagues, particularly more experienced ones (towards less experienced ones). You will be looked on highly by your superiors if you can productively engage in mentorship.
Step 2a: In the extremely unlikely case that he is not receptive to your statement, then it's time to fight: Double-check your work to make absolutely sure he broke the build, then go to your manager and show him that the build is broken and that the colleague did it. Then it's the manager's problem, not yours, and that's where your responsibility ends.
Step 3: Next time this particular colleague breaks the build, rinse and repeat. If it happens a number of times and you feel it is a pattern of irresponsibility, then you can go to your manager and say "Hey Bob, you know Joe has broken the build a number of times and I've tried talking to him about it, but it just seems he doesn't care, mind talking to him about it?" or something like that. Don't go in aggressive or accusatory; make the issue about breaking the build, not about the colleague. Your manager will decide what the best course of action is from there.
add a comment |
Talk to him. Don't run to the manager whenever something doesn't build.
Are you sure your environment is set up correctly? Is there any chance you could be missing something? Double check before approaching your colleague. When you do approach him, I suggest framing the question as a request for help getting the project building.
Something along the lines of "I pulled the repo down but it doesn't build. I'm not sure if I set something up wrong, could you help me?"
This will give him the opportunity to see that his change broke the code. You are both new so it is valid to ask for his help setting up regardless! Give him an opportunity to fix it himself first, before escalating something that happens in every software development environment.
If you have version control, which I hope you have, you should be able to see what changes he made. I suggest you talk to your supervisor about setting up some sort of a code review system in the future.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "423"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
noCode: true, onDemand: false,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
LMaker is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fworkplace.stackexchange.com%2fquestions%2f126083%2fhow-to-handle-when-another-dev-screwed-up-a-project%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
StackExchange.ready(function () {
$("#show-editor-button input, #show-editor-button button").click(function () {
var showEditor = function() {
$("#show-editor-button").hide();
$("#post-form").removeClass("dno");
StackExchange.editor.finallyInit();
};
var useFancy = $(this).data('confirm-use-fancy');
if(useFancy == 'True') {
var popupTitle = $(this).data('confirm-fancy-title');
var popupBody = $(this).data('confirm-fancy-body');
var popupAccept = $(this).data('confirm-fancy-accept-button');
$(this).loadPopup({
url: '/post/self-answer-popup',
loaded: function(popup) {
var pTitle = $(popup).find('h2');
var pBody = $(popup).find('.popup-body');
var pSubmit = $(popup).find('.popup-submit');
pTitle.text(popupTitle);
pBody.html(popupBody);
pSubmit.val(popupAccept).click(showEditor);
}
})
} else{
var confirmText = $(this).data('confirm-text');
if (confirmText ? confirm(confirmText) : true) {
showEditor();
}
}
});
});
6 Answers
6
active
oldest
votes
6 Answers
6
active
oldest
votes
active
oldest
votes
active
oldest
votes
You should definitely talk to him about it. Maybe he didn't fully commit all his code/changes, or maybe he committed on accident.
If he did commit everything & was fully aware of doing so, you should ask him about the errors & maybe even offer to help fixing them if he doesn't know how to do so himself.
You can always go straight to your manager if it turns out he just doesn't care about the quality of his code or if you feel like his incompetence hinders you from doing your job.
Calmly talking to him about it should be the first step, you're colleagues after all.
New contributor
2
One of the best developers I ever worked with had a habit, for a few years, of changing things in two places in the repository and committing one.
– David Thornley
5 hours ago
add a comment |
You should definitely talk to him about it. Maybe he didn't fully commit all his code/changes, or maybe he committed on accident.
If he did commit everything & was fully aware of doing so, you should ask him about the errors & maybe even offer to help fixing them if he doesn't know how to do so himself.
You can always go straight to your manager if it turns out he just doesn't care about the quality of his code or if you feel like his incompetence hinders you from doing your job.
Calmly talking to him about it should be the first step, you're colleagues after all.
New contributor
2
One of the best developers I ever worked with had a habit, for a few years, of changing things in two places in the repository and committing one.
– David Thornley
5 hours ago
add a comment |
You should definitely talk to him about it. Maybe he didn't fully commit all his code/changes, or maybe he committed on accident.
If he did commit everything & was fully aware of doing so, you should ask him about the errors & maybe even offer to help fixing them if he doesn't know how to do so himself.
You can always go straight to your manager if it turns out he just doesn't care about the quality of his code or if you feel like his incompetence hinders you from doing your job.
Calmly talking to him about it should be the first step, you're colleagues after all.
New contributor
You should definitely talk to him about it. Maybe he didn't fully commit all his code/changes, or maybe he committed on accident.
If he did commit everything & was fully aware of doing so, you should ask him about the errors & maybe even offer to help fixing them if he doesn't know how to do so himself.
You can always go straight to your manager if it turns out he just doesn't care about the quality of his code or if you feel like his incompetence hinders you from doing your job.
Calmly talking to him about it should be the first step, you're colleagues after all.
New contributor
edited 4 hours ago
New contributor
answered 5 hours ago
lucidlucid
793
793
New contributor
New contributor
2
One of the best developers I ever worked with had a habit, for a few years, of changing things in two places in the repository and committing one.
– David Thornley
5 hours ago
add a comment |
2
One of the best developers I ever worked with had a habit, for a few years, of changing things in two places in the repository and committing one.
– David Thornley
5 hours ago
2
2
One of the best developers I ever worked with had a habit, for a few years, of changing things in two places in the repository and committing one.
– David Thornley
5 hours ago
One of the best developers I ever worked with had a habit, for a few years, of changing things in two places in the repository and committing one.
– David Thornley
5 hours ago
add a comment |
I should think that the version control is enough to the manager or another one sees who screwed up the project?
Perhaps, but that should not be your main concern. You do not want to play the blame game; that will not improve working relations, and certainly won't help to fix the problem.
Or I should talk to him, asking about the changes he did?
Talk to him. Don't blame him. Point out why it's broken, and then ask "how can we fix this?" Emphasize that all you care about is bringing the project to a good end.
I'm new in this company, and he is too. But he seems to be less skilled than me.
So what? It's not a competition. There will be others who are more skilled than you.
add a comment |
I should think that the version control is enough to the manager or another one sees who screwed up the project?
Perhaps, but that should not be your main concern. You do not want to play the blame game; that will not improve working relations, and certainly won't help to fix the problem.
Or I should talk to him, asking about the changes he did?
Talk to him. Don't blame him. Point out why it's broken, and then ask "how can we fix this?" Emphasize that all you care about is bringing the project to a good end.
I'm new in this company, and he is too. But he seems to be less skilled than me.
So what? It's not a competition. There will be others who are more skilled than you.
add a comment |
I should think that the version control is enough to the manager or another one sees who screwed up the project?
Perhaps, but that should not be your main concern. You do not want to play the blame game; that will not improve working relations, and certainly won't help to fix the problem.
Or I should talk to him, asking about the changes he did?
Talk to him. Don't blame him. Point out why it's broken, and then ask "how can we fix this?" Emphasize that all you care about is bringing the project to a good end.
I'm new in this company, and he is too. But he seems to be less skilled than me.
So what? It's not a competition. There will be others who are more skilled than you.
I should think that the version control is enough to the manager or another one sees who screwed up the project?
Perhaps, but that should not be your main concern. You do not want to play the blame game; that will not improve working relations, and certainly won't help to fix the problem.
Or I should talk to him, asking about the changes he did?
Talk to him. Don't blame him. Point out why it's broken, and then ask "how can we fix this?" Emphasize that all you care about is bringing the project to a good end.
I'm new in this company, and he is too. But he seems to be less skilled than me.
So what? It's not a competition. There will be others who are more skilled than you.
answered 5 hours ago
AbigailAbigail
1,6481511
1,6481511
add a comment |
add a comment |
This is exactly what build servers are for. They check out the source after each commit and see if it builds and send a mail to whoever broke the build so they can fix the problem.
Some build servers can even serve out the artifacts built if needed.
If you don't have one, get one. A good place to start is Jenkins which is very easy to get started with.
In this particular case, the problem would probably have been fixed before he went home without any need for talking or finger pointing.
add a comment |
This is exactly what build servers are for. They check out the source after each commit and see if it builds and send a mail to whoever broke the build so they can fix the problem.
Some build servers can even serve out the artifacts built if needed.
If you don't have one, get one. A good place to start is Jenkins which is very easy to get started with.
In this particular case, the problem would probably have been fixed before he went home without any need for talking or finger pointing.
add a comment |
This is exactly what build servers are for. They check out the source after each commit and see if it builds and send a mail to whoever broke the build so they can fix the problem.
Some build servers can even serve out the artifacts built if needed.
If you don't have one, get one. A good place to start is Jenkins which is very easy to get started with.
In this particular case, the problem would probably have been fixed before he went home without any need for talking or finger pointing.
This is exactly what build servers are for. They check out the source after each commit and see if it builds and send a mail to whoever broke the build so they can fix the problem.
Some build servers can even serve out the artifacts built if needed.
If you don't have one, get one. A good place to start is Jenkins which is very easy to get started with.
In this particular case, the problem would probably have been fixed before he went home without any need for talking or finger pointing.
edited 2 hours ago
answered 3 hours ago
Thorbjørn Ravn AndersenThorbjørn Ravn Andersen
3,47011222
3,47011222
add a comment |
add a comment |
How can I handle with this?
Implement a Pull Request (or whatever you call it) workflow that will allow another dev to review changes before they are added
Developers, even seasoned ones break the build. It sounds like you are not the tech lead. Step up and show the tech lead you'll take point on implementing the (much needed) process.
Go talk to him 1 on 1 about the changes. See if this is a configuration issue on your part. If it is, problem solved.
If not, look at how you can use a workflow to stop this from happening again.
After reviewing how to turn on reviews and auto-builds in your current system, approach the tech lead. Say something like
I've noticed that sometimes people check in changes that break the system, and if we turn on PR reviews, that should go down significantly. We can also build the system every time someone checks in, which should cut down on that too.
Hopefully the tech lead will be overjoyed someone wants to step up and do this. If they vehemently hate the idea, run for your life.
Code reviews are not needed for build breaking changes. Automated builds with email notifications are the solution to that issue.
– 17 of 26
5 hours ago
add a comment |
How can I handle with this?
Implement a Pull Request (or whatever you call it) workflow that will allow another dev to review changes before they are added
Developers, even seasoned ones break the build. It sounds like you are not the tech lead. Step up and show the tech lead you'll take point on implementing the (much needed) process.
Go talk to him 1 on 1 about the changes. See if this is a configuration issue on your part. If it is, problem solved.
If not, look at how you can use a workflow to stop this from happening again.
After reviewing how to turn on reviews and auto-builds in your current system, approach the tech lead. Say something like
I've noticed that sometimes people check in changes that break the system, and if we turn on PR reviews, that should go down significantly. We can also build the system every time someone checks in, which should cut down on that too.
Hopefully the tech lead will be overjoyed someone wants to step up and do this. If they vehemently hate the idea, run for your life.
Code reviews are not needed for build breaking changes. Automated builds with email notifications are the solution to that issue.
– 17 of 26
5 hours ago
add a comment |
How can I handle with this?
Implement a Pull Request (or whatever you call it) workflow that will allow another dev to review changes before they are added
Developers, even seasoned ones break the build. It sounds like you are not the tech lead. Step up and show the tech lead you'll take point on implementing the (much needed) process.
Go talk to him 1 on 1 about the changes. See if this is a configuration issue on your part. If it is, problem solved.
If not, look at how you can use a workflow to stop this from happening again.
After reviewing how to turn on reviews and auto-builds in your current system, approach the tech lead. Say something like
I've noticed that sometimes people check in changes that break the system, and if we turn on PR reviews, that should go down significantly. We can also build the system every time someone checks in, which should cut down on that too.
Hopefully the tech lead will be overjoyed someone wants to step up and do this. If they vehemently hate the idea, run for your life.
How can I handle with this?
Implement a Pull Request (or whatever you call it) workflow that will allow another dev to review changes before they are added
Developers, even seasoned ones break the build. It sounds like you are not the tech lead. Step up and show the tech lead you'll take point on implementing the (much needed) process.
Go talk to him 1 on 1 about the changes. See if this is a configuration issue on your part. If it is, problem solved.
If not, look at how you can use a workflow to stop this from happening again.
After reviewing how to turn on reviews and auto-builds in your current system, approach the tech lead. Say something like
I've noticed that sometimes people check in changes that break the system, and if we turn on PR reviews, that should go down significantly. We can also build the system every time someone checks in, which should cut down on that too.
Hopefully the tech lead will be overjoyed someone wants to step up and do this. If they vehemently hate the idea, run for your life.
edited 5 hours ago
answered 5 hours ago
sevensevenssevensevens
10.1k32338
10.1k32338
Code reviews are not needed for build breaking changes. Automated builds with email notifications are the solution to that issue.
– 17 of 26
5 hours ago
add a comment |
Code reviews are not needed for build breaking changes. Automated builds with email notifications are the solution to that issue.
– 17 of 26
5 hours ago
Code reviews are not needed for build breaking changes. Automated builds with email notifications are the solution to that issue.
– 17 of 26
5 hours ago
Code reviews are not needed for build breaking changes. Automated builds with email notifications are the solution to that issue.
– 17 of 26
5 hours ago
add a comment |
Step 1: Talk to him. Mention that the build is broken, and the last commit on it was his commit, so ask him what happened (it's important to not say "you broke the build!" because a) that's accusatory and b) perhaps his change wasn't actually the change that broke the build, e.g. maybe it was a configuration change, or maybe you forgot about a change you yourself made, etc, in which case you come off looking very abrasive and accusatory).
Step 2: If he is receptive to your statement, work with him to fix it and if he doesn't understand what went wrong, explain it to him. Explaining it to him will teach him how not to make the same mistake again. That's called mentorship and is very important among colleagues, particularly more experienced ones (towards less experienced ones). You will be looked on highly by your superiors if you can productively engage in mentorship.
Step 2a: In the extremely unlikely case that he is not receptive to your statement, then it's time to fight: Double-check your work to make absolutely sure he broke the build, then go to your manager and show him that the build is broken and that the colleague did it. Then it's the manager's problem, not yours, and that's where your responsibility ends.
Step 3: Next time this particular colleague breaks the build, rinse and repeat. If it happens a number of times and you feel it is a pattern of irresponsibility, then you can go to your manager and say "Hey Bob, you know Joe has broken the build a number of times and I've tried talking to him about it, but it just seems he doesn't care, mind talking to him about it?" or something like that. Don't go in aggressive or accusatory; make the issue about breaking the build, not about the colleague. Your manager will decide what the best course of action is from there.
add a comment |
Step 1: Talk to him. Mention that the build is broken, and the last commit on it was his commit, so ask him what happened (it's important to not say "you broke the build!" because a) that's accusatory and b) perhaps his change wasn't actually the change that broke the build, e.g. maybe it was a configuration change, or maybe you forgot about a change you yourself made, etc, in which case you come off looking very abrasive and accusatory).
Step 2: If he is receptive to your statement, work with him to fix it and if he doesn't understand what went wrong, explain it to him. Explaining it to him will teach him how not to make the same mistake again. That's called mentorship and is very important among colleagues, particularly more experienced ones (towards less experienced ones). You will be looked on highly by your superiors if you can productively engage in mentorship.
Step 2a: In the extremely unlikely case that he is not receptive to your statement, then it's time to fight: Double-check your work to make absolutely sure he broke the build, then go to your manager and show him that the build is broken and that the colleague did it. Then it's the manager's problem, not yours, and that's where your responsibility ends.
Step 3: Next time this particular colleague breaks the build, rinse and repeat. If it happens a number of times and you feel it is a pattern of irresponsibility, then you can go to your manager and say "Hey Bob, you know Joe has broken the build a number of times and I've tried talking to him about it, but it just seems he doesn't care, mind talking to him about it?" or something like that. Don't go in aggressive or accusatory; make the issue about breaking the build, not about the colleague. Your manager will decide what the best course of action is from there.
add a comment |
Step 1: Talk to him. Mention that the build is broken, and the last commit on it was his commit, so ask him what happened (it's important to not say "you broke the build!" because a) that's accusatory and b) perhaps his change wasn't actually the change that broke the build, e.g. maybe it was a configuration change, or maybe you forgot about a change you yourself made, etc, in which case you come off looking very abrasive and accusatory).
Step 2: If he is receptive to your statement, work with him to fix it and if he doesn't understand what went wrong, explain it to him. Explaining it to him will teach him how not to make the same mistake again. That's called mentorship and is very important among colleagues, particularly more experienced ones (towards less experienced ones). You will be looked on highly by your superiors if you can productively engage in mentorship.
Step 2a: In the extremely unlikely case that he is not receptive to your statement, then it's time to fight: Double-check your work to make absolutely sure he broke the build, then go to your manager and show him that the build is broken and that the colleague did it. Then it's the manager's problem, not yours, and that's where your responsibility ends.
Step 3: Next time this particular colleague breaks the build, rinse and repeat. If it happens a number of times and you feel it is a pattern of irresponsibility, then you can go to your manager and say "Hey Bob, you know Joe has broken the build a number of times and I've tried talking to him about it, but it just seems he doesn't care, mind talking to him about it?" or something like that. Don't go in aggressive or accusatory; make the issue about breaking the build, not about the colleague. Your manager will decide what the best course of action is from there.
Step 1: Talk to him. Mention that the build is broken, and the last commit on it was his commit, so ask him what happened (it's important to not say "you broke the build!" because a) that's accusatory and b) perhaps his change wasn't actually the change that broke the build, e.g. maybe it was a configuration change, or maybe you forgot about a change you yourself made, etc, in which case you come off looking very abrasive and accusatory).
Step 2: If he is receptive to your statement, work with him to fix it and if he doesn't understand what went wrong, explain it to him. Explaining it to him will teach him how not to make the same mistake again. That's called mentorship and is very important among colleagues, particularly more experienced ones (towards less experienced ones). You will be looked on highly by your superiors if you can productively engage in mentorship.
Step 2a: In the extremely unlikely case that he is not receptive to your statement, then it's time to fight: Double-check your work to make absolutely sure he broke the build, then go to your manager and show him that the build is broken and that the colleague did it. Then it's the manager's problem, not yours, and that's where your responsibility ends.
Step 3: Next time this particular colleague breaks the build, rinse and repeat. If it happens a number of times and you feel it is a pattern of irresponsibility, then you can go to your manager and say "Hey Bob, you know Joe has broken the build a number of times and I've tried talking to him about it, but it just seems he doesn't care, mind talking to him about it?" or something like that. Don't go in aggressive or accusatory; make the issue about breaking the build, not about the colleague. Your manager will decide what the best course of action is from there.
answered 5 hours ago
Ertai87Ertai87
6,9261720
6,9261720
add a comment |
add a comment |
Talk to him. Don't run to the manager whenever something doesn't build.
Are you sure your environment is set up correctly? Is there any chance you could be missing something? Double check before approaching your colleague. When you do approach him, I suggest framing the question as a request for help getting the project building.
Something along the lines of "I pulled the repo down but it doesn't build. I'm not sure if I set something up wrong, could you help me?"
This will give him the opportunity to see that his change broke the code. You are both new so it is valid to ask for his help setting up regardless! Give him an opportunity to fix it himself first, before escalating something that happens in every software development environment.
If you have version control, which I hope you have, you should be able to see what changes he made. I suggest you talk to your supervisor about setting up some sort of a code review system in the future.
add a comment |
Talk to him. Don't run to the manager whenever something doesn't build.
Are you sure your environment is set up correctly? Is there any chance you could be missing something? Double check before approaching your colleague. When you do approach him, I suggest framing the question as a request for help getting the project building.
Something along the lines of "I pulled the repo down but it doesn't build. I'm not sure if I set something up wrong, could you help me?"
This will give him the opportunity to see that his change broke the code. You are both new so it is valid to ask for his help setting up regardless! Give him an opportunity to fix it himself first, before escalating something that happens in every software development environment.
If you have version control, which I hope you have, you should be able to see what changes he made. I suggest you talk to your supervisor about setting up some sort of a code review system in the future.
add a comment |
Talk to him. Don't run to the manager whenever something doesn't build.
Are you sure your environment is set up correctly? Is there any chance you could be missing something? Double check before approaching your colleague. When you do approach him, I suggest framing the question as a request for help getting the project building.
Something along the lines of "I pulled the repo down but it doesn't build. I'm not sure if I set something up wrong, could you help me?"
This will give him the opportunity to see that his change broke the code. You are both new so it is valid to ask for his help setting up regardless! Give him an opportunity to fix it himself first, before escalating something that happens in every software development environment.
If you have version control, which I hope you have, you should be able to see what changes he made. I suggest you talk to your supervisor about setting up some sort of a code review system in the future.
Talk to him. Don't run to the manager whenever something doesn't build.
Are you sure your environment is set up correctly? Is there any chance you could be missing something? Double check before approaching your colleague. When you do approach him, I suggest framing the question as a request for help getting the project building.
Something along the lines of "I pulled the repo down but it doesn't build. I'm not sure if I set something up wrong, could you help me?"
This will give him the opportunity to see that his change broke the code. You are both new so it is valid to ask for his help setting up regardless! Give him an opportunity to fix it himself first, before escalating something that happens in every software development environment.
If you have version control, which I hope you have, you should be able to see what changes he made. I suggest you talk to your supervisor about setting up some sort of a code review system in the future.
answered 3 hours ago
CatsunamiCatsunami
1677
1677
add a comment |
add a comment |
LMaker is a new contributor. Be nice, and check out our Code of Conduct.
LMaker is a new contributor. Be nice, and check out our Code of Conduct.
LMaker is a new contributor. Be nice, and check out our Code of Conduct.
LMaker is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to The Workplace Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fworkplace.stackexchange.com%2fquestions%2f126083%2fhow-to-handle-when-another-dev-screwed-up-a-project%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
8
Relax. Talk to him first. Calm and constructive.
– kiltek
6 hours ago
Do you think its better to talk in skype, or in person to my manager and another people listen too?
– LMaker
6 hours ago
4
First you go in person to the other developer and talk to him. Leave out the manager.
– kiltek
6 hours ago
3
Shit happens. Next time it could be you checking in some errors. At this point you should think about integration testing and continous integration, which can be used as a counter measurement against build errors in general.
– kiltek
6 hours ago
2
@LMaker if everything is red, I would suggest that there are uncommitted changes or a missing reference or a missing DLL which you have to get elsewhere, not necessarily that there is fundamentally something wrong with the project.
– user1666620
5 hours ago