aboutsummaryrefslogtreecommitdiffhomepage
path: root/.gitignore
diff options
context:
space:
mode:
authorGravatar Yong Tang <yong.tang.github@outlook.com>2017-10-16 12:37:40 -0700
committerGravatar Vijay Vasudevan <vrv@google.com>2017-10-16 12:37:40 -0700
commit2ed69577b08e5e8845619748249ecd41dc0f7c87 (patch)
treef9eecadfee7916d602c1a4e19515e1035e9578a2 /.gitignore
parent2f916fcf2f49f8a30d8460c1c8d7812d637ab0e4 (diff)
Add fast_tensor_util.cpp to .gitignore (#13749)
While working on building TensorFlow I noticed that a file `fast_tensor_util.cpp` is generated: ```sh ubuntu@ubuntu:~/tensorflow$ git status On branch master Your branch is up-to-date with 'origin/master'. Untracked files: (use "git add <file>..." to include in what will be committed) tensorflow/python/framework/fast_tensor_util.cpp nothing added to commit but untracked files present (use "git add" to track) ubuntu@ubuntu:~/tensorflow$ ``` This fix adds `fast_tensor_util.cpp` to .gitignore so that it will not be added inadvertently when adding commit with `git add -A`. Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
Diffstat (limited to '.gitignore')
-rw-r--r--.gitignore1
1 files changed, 1 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index 09734fe497..9572a3e97c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -17,3 +17,4 @@ cmake_build/
.idea/**
/build/
/tensorflow/core/util/version_info.cc
+/tensorflow/python/framework/fast_tensor_util.cpp