# # Download and place this file into your git repository. # Rename it to '.gitignore' (without quotes) # # wget http://www.phys.uconn.edu/~rozman/Courses/P2200_16F/downloads/gitignore.sample # mv gitignore.sample .gitignore # # or # # wget http://www.phys.uconn.edu/~rozman/Courses/P2200_16F/downloads/gitignore.sample -O .gitignore # # Ignore all * # Unignore files with extensions .c and .h !*.c !*.h # Unignore all dirs !*/ # Unignore makefiles !Makefile !makefile # Unignore .gitignore !.gitignore # Unignore markdown files !*.md # Unignore gnuplot scripts !*.gp