From 2ed69577b08e5e8845619748249ecd41dc0f7c87 Mon Sep 17 00:00:00 2001 From: Yong Tang Date: Mon, 16 Oct 2017 12:37:40 -0700 Subject: 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 ..." 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 --- .gitignore | 1 + 1 file changed, 1 insertion(+) (limited to '.gitignore') 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 -- cgit v1.2.3