Skip to content

Commit

Permalink
ensure single trailing newline
Browse files Browse the repository at this point in the history
  • Loading branch information
izuzak committed Mar 27, 2014
1 parent 1fb5ad4 commit 5342e13
Show file tree
Hide file tree
Showing 13 changed files with 9 additions and 14 deletions.
2 changes: 1 addition & 1 deletion Ada.gitignore
Expand Up @@ -2,4 +2,4 @@
*.o *.o


# Ada Library Information # Ada Library Information

This comment has been minimized.

Copy link
@Polda18

Polda18 Apr 6, 2022

Contributor

.gitignore is a file that lists files and folders that should be ignored by git. You can even include multiple files by specifying them on a single line with a wildcard symbol. For example, you want to exclude all .exe files, you write *.exe in .gitignore. You want to exclude everything in debug folder, you write debug/. Wildcard symbols are exactly the same ones that you use on Unix shell or Bash, very similar to the ones used by Windows Command Line or Powershell.

*        - represents any count of any symbol (even no symbol at all)
?        - represents exactly one symbol out of any
[a-z]    - [a-z] represents a range or set of symbols, it is always between []

As for ADA library, that is probably some framework library.

*.ali *.ali
2 changes: 1 addition & 1 deletion DM.gitignore
Expand Up @@ -2,4 +2,4 @@
*.rsc *.rsc
*.int *.int
*.lk *.lk
*.zip *.zip
2 changes: 1 addition & 1 deletion EPiServer.gitignore
@@ -1,4 +1,4 @@
###################### ######################
## EPiServer Files ## EPiServer Files
###################### ######################
*License.config *License.config
2 changes: 1 addition & 1 deletion Fancy.gitignore
@@ -1,2 +1,2 @@
*.rbc *.rbc
*.fyc *.fyc
2 changes: 1 addition & 1 deletion Global/Ensime.gitignore
@@ -1,3 +1,3 @@
# Ensime specific # Ensime specific
.ensime .ensime
.ensime_lucene/ .ensime_lucene/
2 changes: 1 addition & 1 deletion Global/Lazarus.gitignore
Expand Up @@ -9,4 +9,4 @@ lib/
*.ppu *.ppu


#exclude executable output in windows #exclude executable output in windows
*.exe *.exe
2 changes: 1 addition & 1 deletion Global/NotepadPP.gitignore
@@ -1,2 +1,2 @@
# Notepad++ backups # # Notepad++ backups #
*.bak *.bak
1 change: 0 additions & 1 deletion Global/SlickEdit.gitignore
Expand Up @@ -9,4 +9,3 @@
*.vpwhistu *.vpwhistu
*.vpwhist *.vpwhist
*.vtg *.vtg

1 change: 0 additions & 1 deletion Global/Xcode.gitignore
Expand Up @@ -14,4 +14,3 @@ profile
DerivedData DerivedData
*.hmap *.hmap
*.ipa *.ipa

2 changes: 1 addition & 1 deletion Meteor.gitignore
@@ -1,2 +1,2 @@
.meteor/local .meteor/local
.meteor/meteorite .meteor/meteorite
2 changes: 1 addition & 1 deletion Prestashop.gitignore
Expand Up @@ -26,4 +26,4 @@ themes/default/cache/*.css


# Ignore files on root directory # Ignore files on root directory
robots.txt robots.txt
sitemap.xml sitemap.xml
2 changes: 0 additions & 2 deletions TeX.gitignore
Expand Up @@ -87,5 +87,3 @@ sympy-plots-for-*.tex/


# xindy # xindy
*.xdy *.xdy


1 change: 0 additions & 1 deletion VVVV.gitignore
Expand Up @@ -4,4 +4,3 @@


# Dynamic plugins .dll # Dynamic plugins .dll
bin/ bin/

1 comment on commit 5342e13

@supreethathreyas123
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

.gitignore has added

Please sign in to comment.