undeleted an image

with ---
$git checkout 9e924279c9f7354322209f8b2818aaed67a3a1b1~1 submission_thesis/CH2_FMEA/mvamp.png

found it with
$git log --diff-filter=D --summary

which showed me all commits with deletes in!

superb!
This commit is contained in:
Robin P. Clark 2015-03-24 09:47:49 +00:00
parent 9e924279c9
commit c3416b7fde
6 changed files with 21 additions and 28 deletions

View File

@ -8,7 +8,7 @@ PNG = fmmdh.png ct1.png hd.png ftcontext.png
all: ${PNG} all: ${PNG}
pdflatex sw_hw_fmea pdflatex sw_hw_fmea
pdflatex sw_hw_fmea pdflatex sw_hw_fmea
acroread sw_hw_fmea.pdf || okular sw_hw_fmea.pdf acroread sw_hw_fmea.pdf || okular sw_hw_fmea.pdf || xpdf sw_hw_fmea.pdf
bib: bib:
bibtex sw_hw_fmea bibtex sw_hw_fmea
@ -21,4 +21,4 @@ abs: # bib
cat abs_end.tex >> abstract.tex cat abs_end.tex >> abstract.tex
# bib abs.tex # bib abs.tex
pdflatex abstract pdflatex abstract
acroread abstract.pdf || okular abstratc.pdf acroread abstract.pdf || okular abstract.pdf || xpdf abstract.pdf

View File

@ -6,19 +6,11 @@
DIA = ftcontext.png component_fm_rel.png component_fm_rel_ana.png component_fm_rel_ana_subj_obj.png DIA = ftcontext.png component_fm_rel.png component_fm_rel_ana.png component_fm_rel_ana_subj_obj.png
doc: $(DIA)
#
#bib:
#
# bibtex HR230003_combined_o2_co_sensor
#
%.png:%.dia %.png:%.dia
dia -t png $< dia -t png $<
doc: $(DIA)
echo $@
copy:
copy: doc
echo $@ echo $@

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

View File

@ -21,5 +21,5 @@ doc: $(DIA)
copy: copy: doc
echo $@ echo $@

View File

@ -23,5 +23,5 @@ xfmea_fmmd_comp.png:
copy: copy: doc
echo $@ echo $@

View File

@ -1,4 +1,4 @@
MAKE=make
all: copy bib thesis all: copy bib thesis
@ -7,12 +7,12 @@ dropbox:
pdflatex thesis pdflatex thesis
makeindex thesis.glo -s thesis.ist -t thesis.glg -o thesis.gls makeindex thesis.glo -s thesis.ist -t thesis.glg -o thesis.gls
cp thesis.pdf /home/robin/Dropbox/Robin_PhD_folder/thesis cp thesis.pdf /home/robin/Dropbox/Robin_PhD_folder/thesis
evince thesis.pdf || acroread thesis.pdf || evince thesis.pdf evince thesis.pdf || acroread thesis.pdf || xpdf thesis.pdf
thesis: thesis:
pdflatex thesis pdflatex thesis
makeindex thesis.glo -s thesis.ist -t thesis.glg -o thesis.gls makeindex thesis.glo -s thesis.ist -t thesis.glg -o thesis.gls
evince thesis.pdf || acroread thesis.pdf || evince thesis.pdf evince thesis.pdf || acroread thesis.pdf || xpdf thesis.pdf
clean: clean:
rm thesis.pdf rm thesis.pdf
@ -23,15 +23,16 @@ clean:
bib: bib:
pdflatex thesis # do this first otherwise bibtex gets its knickers in a twist pdflatex thesis # do this first otherwise bibtex gets its knickers in a twist
bibtex thesis bibtex thesis
copy: copy:
echo "chapters submake"; sleep 2 echo "chapters submake"; sleep 2
cd CH1_introduction; make copy cd CH1_introduction && $(MAKE) copy
cd CH2_FMEA; make copy cd CH2_FMEA && $(MAKE) copy
cd CH3_FMEA_criticism; make copy cd CH3_FMEA_criticism && $(MAKE) copy
cd CH4_FMMD; make copy cd CH4_FMMD && $(MAKE) copy
cd CH5_Examples; make copy cd CH5_Examples && $(MAKE) copy
cd CH6_Software_Examples; make copy cd CH6_Software_Examples && $(MAKE) copy
cd CH7_Evaluation; make copy cd CH7_Evaluation && $(MAKE) copy
cd CH8_Conclusion; make copy cd CH8_Conclusion && $(MAKE) copy
#cd CH8_finsh_appendixes; make copy #cd CH8_finsh_appendixes; $(MAKE) copy