I am working in a project in which at many point I need to change the code and fix the bug of the system but how can I inform other team members about this change? Usually I add single line comment to that particular point or create task in eclipse and write bug fix as follows,
//Fixed PRJ110-345 called checkAndClear to clear myObject
myObject = myObject.checkAndClear();
But this does not look good when I change something in properties or sql file of the project.
Moreover I need to search for this PRJ110-345 to find the bug fixed or use regular expression to find all issue number but those might have solved by other team member.
What is the best way to keep track of issues in the code among the team member ?
Sometimes I can not differentiate between my solved bugs and other team member's bug fix. Currently we don't have different accounts for issue tracking system (JIRA) and team leader just distributes the Bugs among team member and it's difficult for me to track my fixes every time.