Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
C0D4681385y
-
Its more a question of why do you want your name on it? You dont want people coming to you with dumb questions
-
@Codex404 good point of view :). They will find me by commit records though. I would have gotten away if not for meddling git.
-
@aviophile if they are smart enough to not stop looking past the author tag they are smart enough to not ask dumb questions
-
Hazarth95015yWe stopped using the Author fields in our projects long time ago, git will blame you, the Author field only confuses things 70% of the time, the 30% its just useless compared to git
-
arcioneo7715yIf you mean the tag @author withing the code, DUDE!!!! that is disgusting, any comment within the code means the code is not self explanatory.
Hughhh!!! who the hell keeps comments in his code anymore? -
@arcioneo he should have used “<name>_” tag in filename, function name and variables, I agree.
-
Hazarth95015y@aviophile ye ye, thats what I mean. There's no use in using the in-code tags, much less so to update them. All the names are already in the repo. Which is why, in our company, we stopped using the @Author tag.. and our IDEs are configured to not generate those at all.
People that update the @Author tag are annoying! :) -
We are moving code from svn to git. So, I dont want those good developers’ name vanish in history. A small token of respect for better people, they have really written good code.
-
@aviophile it is possible to keep history and authors when switching. Dont ask me how but one project I worked on did that.
-
I know svn to git methods. But original codebase is huge executable project while new one is static library derived of old’s portions.
So, there is not really meaningful continuity plus I want to preserve names in .c files.
When refactoring and reusing code, is it even ethical to change author?
I am on a project of creating reusable library from another project. Original code is perfectly written, easy to understand. I will just prune the code and fix minor bugs.
I have seen colleagues replacing the original author field in the same scenario with their names, feels wrong. Can I add non-standard maintainer field in doxygen format?
question