Skip to content

Commit

Permalink
Update ignore for repo
Browse files Browse the repository at this point in the history
  • Loading branch information
yeungegs committed Aug 17, 2017
1 parent a9d4580 commit 19d77fe
Showing 1 changed file with 26 additions and 1 deletion.
27 changes: 26 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,27 @@
# never push ~ files
*~
*~

# Ignore all
*

# Unignore all with extensions
!*.*

# Unignore all dirs
!*/

# Ignore emacs autosave~ and #modified# files
*~
**/*~
**/\#*

# Ignore main files
**/*main.c

# Ignore object files and libraries
*.o
*.ko

# ignore _putchar.c and a.out
**/_putchar.c
**/a.out

0 comments on commit 19d77fe

Please sign in to comment.