diff options
author | 2018-04-12 15:31:45 -0400 | |
---|---|---|
committer | 2018-04-13 11:43:08 -0400 | |
commit | f796373d7de201c0a46f06b3155b1734b9872bb3 (patch) | |
tree | ebe0f754f59f775e01d5e121411c770e72bdba31 /.gitignore | |
parent | 48f6bc8f4089730dbd6ff42f02a923e642887e93 (diff) |
Fix graphwalk capabilities
Fixes the issue where graphwalk was not working properly in the
chameleon code within ONAP.
Change-Id: Iae1dd036f10ab6443a40cac66ae69fad77036cb2
Issue-ID: AAI-797
Signed-off-by: Adrian Batos-Parac <adrian.batos-parac@amdocs.com>
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 95 |
1 files changed, 95 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1d39b07 --- /dev/null +++ b/.gitignore @@ -0,0 +1,95 @@ +# Created by https://www.gitignore.io/api/clojure,emacs,osx,java + +### Clojure ### +pom.xml +pom.xml.asc +*jar +lib/ +classes/ +target/ +out/ +checkouts/ +.lein-deps-sum +.lein-repl-history +.lein-plugins/ +.lein-failures +.nrepl-port +logs/ +debug-logs/ + +### Emacs ### +# -*- mode: gitignore; -*- +*~ +\#*\# +/.emacs.desktop +/.emacs.desktop.lock +*.elc +auto-save-list +tramp +.\#* + +# Org-mode +.org-id-locations +*_archive + +# flymake-mode +*_flymake.* + +# eshell files +/eshell/history +/eshell/lastdir + +# elpa packages +/elpa/ + +# reftex files +*.rel + +# AUCTeX auto folder +/auto/ + +# cask packages +.cask/ + + +### OSX ### +.DS_Store +.AppleDouble +.LSOverride + +# Icon must end with two \r +Icon + + +# Thumbnails +._* + +# Files that might appear in the root of a volume +.DocumentRevisions-V100 +.fseventsd +.Spotlight-V100 +.TemporaryItems +.Trashes +.VolumeIcon.icns + +# Directories potentially created on remote AFP share +.AppleDB +.AppleDesktop +Network Trash Folder +Temporary Items +.apdisk + + +### Java ### +*.class + +# Mobile Tools for Java (J2ME) +.mtj.tmp/ + +# Package Files # +*.jar +*.war +*.ear + +# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml +hs_err_pid* |