[gnome-documents/christopherdavis/add-build-to-gitignore] Create .gitignore



commit e7c1402b86ad5fe66387218ad024fa05f12b8d96
Author: Christopher Davis <brainblasted disroot org>
Date:   Sat Dec 8 23:42:32 2018 -0500

    Create .gitignore
    
    A .gitignore is useful for telling Git what it shouldn't look
    for changes in. In this case, we need to add meson's default
    build directory, `_build`, to the .gitignore file. Prevents
    the user from accidentally committing files from the build directory.

 .gitignore | 1 +
 1 file changed, 1 insertion(+)
---
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 00000000..c6a151b3
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+_build/
\ No newline at end of file


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]