2012-02-21 92 views
0

我有一個小圖像在heroku上顯示爲死鏈接,但沒有在我的本地,圖像文件被git推入其他所有內容。還有什麼是我有其他圖像顯示出來很好。圖片沒有顯示在heroku上,但在當地工作

爲斷開的圖像

 <% if report.status == 4 or report.status == 5 %> 
      <img src="<%= image_path('greenlight.png') %>" id="status"> 
     <% elsif report.status == 2 or report.status == 3 %> 
      <img src="<%= image_path('yellowlight.png') %>" id="status"> 
     <% elsif report.status == 1 %> 
      <img src="<%= image_path('redlight.png') %>" id="status"> 
     <% end %> 

視圖文件視圖文件爲工作圖像

<div id="header"><header> 
     <img src="<%= image_path('whfd_logo.png') %>" id="whfd"> 
     <img src="<%= image_path('iaff.png') %>" id="iaff"> 
     <span>text removed<br /> 
     text removed</span> 
    </header></div> 

視圖源來回破碎圖像

 <img src="/images/yellowlight.png" id="status"> 

視圖源工作圖像

 <img src="/images/whfd_logo.png?1329844130" id="whfd"> 
     <img src="/images/iaff.png?1329844130" id="iaff"> 

在形象工程上我的本地查看源代碼看起來像這樣

<img src="/images/yellowlight.png?1329096113" id="status"> 

什麼怎麼回事?爲什麼圖像丟失後的數字字符串?

回答

3

在未來,您可以運行git add -A這將添加和刪除任何文件,你......好吧,添加或刪除。

+0

啊,好的謝謝。 – 2012-02-22 12:36:44

0

想通了。我需要更多地瞭解git。

運行git add .之前,我的git提交修復它。

相關問題