From 3a83e72a8139d66e5facb8c8e1e7595d26c4b7c0 Mon Sep 17 00:00:00 2001 From: Alexander Krotov Date: Sun, 15 May 2016 01:58:21 +0300 Subject: [PATCH] .gitignore While main NS-3 repository [1] uses Mercurial, NS-3 also has official [2] git mirror [3]. Added .gitignore replicates current .hgignore, also taking advantage of the ability to split it into multiple files. [1] http://code.nsnam.org/ns-3-dev/ [2] https://www.nsnam.org/wiki/HOWTO_use_Git_instead_of_Mercurial [3] https://github.com/nsnam/ns-3-dev-git --- .gitignore | 37 +++++++++++++++++++++++++++++++++++++ doc/.gitignore | 12 ++++++++++++ src/.gitignore | 4 ++++ 3 files changed, 53 insertions(+) create mode 100644 .gitignore create mode 100644 doc/.gitignore create mode 100644 src/.gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000..5165012ca --- /dev/null +++ b/.gitignore @@ -0,0 +1,37 @@ +*.diff +*.orig +*.patch +*.rej + +*.o +*.pyc +*.pyo + +*.cwnd +*.dat +*.log +*.mob +*.pcap +*.plt +*.routes +*.tr +[D|U]l[A-Z][a-z]*Stats.txt +seventh-packet-byte-count.png + +\#*# +~* + +testpy-output + +bindings/python/pybindgen/ + +ms_print.* +massif.* +coverity +TAGS + +.lock-waf_*_build +.waf* + +build-dir/ +build/ diff --git a/doc/.gitignore b/doc/.gitignore new file mode 100644 index 000000000..6d61d70ab --- /dev/null +++ b/doc/.gitignore @@ -0,0 +1,12 @@ +html/ +latex/ +ns3-object.txt +introspected-doxygen.h +doxygen.log +doxygen.warnings.log +*/build/ +*/figures/*.eps +*/figures/*.pdf +*/figures/*.png +*/source-temp/ +ns3_html_theme/static/ns3_version.js diff --git a/src/.gitignore b/src/.gitignore new file mode 100644 index 000000000..70a73e61c --- /dev/null +++ b/src/.gitignore @@ -0,0 +1,4 @@ +*/doc/build/ +*/doc/source/figures/*.eps +*/doc/source/figures/*.pdf +*/doc/*.png