Skip to content

Commit

Permalink
Add cmake generated files/dirs in Linux to .gitignore
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
yongtang committed Sep 23, 2017
1 parent ea94bbe commit cca4ee0
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,5 @@ __pycache__
.vscode/
cmake_build/
.idea/**
/build/
/tensorflow/core/util/version_info.cc

0 comments on commit cca4ee0

Please sign in to comment.