diff options
author | Yong Tang <yong.tang.github@outlook.com> | 2017-09-23 00:14:07 +0000 |
---|---|---|
committer | Yong Tang <yong.tang.github@outlook.com> | 2017-09-23 00:14:07 +0000 |
commit | cca4ee0110ce3a214bd442f8daeb0ef56893e0ed (patch) | |
tree | df07fb8e1b6f25a8642481c55683e2c5ff24e1bd /.gitignore | |
parent | ea94bbe9fa9f9b3d01fb057c02ef7873d76bf09c (diff) |
Add cmake generated files/dirs in Linux to .gitignore
This fix adds cmake generated files in Linux to .gitignore
Before this fix, after:
```
$ tensorflow/tools/ci_build/ci_build.sh CMAKE tensorflow/tools/ci_build/builds/cmake.sh
```
The following files/dirs are left out:
```
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)
build/
tensorflow/core/util/version_info.cc
nothing added to commit but untracked files present (use "git add" to track)
ubuntu@ubuntu:~/tensorflow$
```
This fix addresses the above issue.
Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index c227f50d55..09734fe497 100644 --- a/.gitignore +++ b/.gitignore @@ -15,3 +15,5 @@ __pycache__ .vscode/ cmake_build/ .idea/** +/build/ +/tensorflow/core/util/version_info.cc |