Ignore target files

The resulting deb files inside the "target" directory are not ignored by Git,
therefore the output of "git status" is not clean since there are untracked
changes.

Everything under the "target" directory should be ignored, hence adding a
".gitignore" file for it. Also, the ".gitkeep" file is no longer necessary since
the "target" directory will not be empty thanks to the ".gitignore" file we have
added.
This commit is contained in:
Vicente Olivert Riera 2022-07-04 11:49:14 +09:00
parent afa8b77953
commit f0935b323f
No known key found for this signature in database
GPG key ID: 5DE0950419F6E531
2 changed files with 3 additions and 0 deletions

3
target/.gitignore vendored Normal file
View file

@ -0,0 +1,3 @@
*
*/
!.gitignore

View file