我有很多行# TODO
供將來參考。這些都是個人的,當我進行更改時,我不想將它們與我的文件的其餘部分一起提交。我該如何告訴.gitignore(或git本身)忽略包含#TODO的行
有沒有辦法告訴的.gitignore(或自身的git)不包括含任何線# TODO
或者作爲獎勵,它不只是行了,但也許從# TODO
到行的末尾櫃面我對在同一線路TODO
有代碼
例:
def destroy
# TODO Alter route (Tell git to ignore this)
@comment.destroy
end
OR:
def destroy
@comment.destroy # TODO Alter this line. (Tell git to ignore from '# TODO' onwards.
end
你想刪除行或禁用推?難道你不想記錄你的TODO,以便以後,你知道wtf這是搗毀(答案:因爲你從來沒有實施待辦事項) – court3nay