2015-02-07 96 views
0

如果在本地開發時經常發現自己在代碼中寫出有用的消息。看到這個代碼片段作爲一個簡單的例子:在提交Git之前檢查消息的代碼註釋

# Public API 
namespace :api do 
    namespace :v1 do 
    # REMOVE THE FIRST LINE WHEN DONE TESTING 
    get :delivery_report, to: 'delivery_report#index' 
    post :delivery_report, to: 'delivery_report#index' 
    end 
end 

這裏的關鍵是,當我做,我覺得我終於可以將我的工作,我要記住,我不得不刪除線get :delivery_report, to: 'delivery_report#index'

是否有可能告訴git在接受提交之前或者在進行提交之前,它應該警告我我的代碼中有一行有一些內容的行?在這種情況下,這將是我的評論或任何其他預定義的行。

回答