Skip to content

Commit

Permalink
feat: major update
Browse files Browse the repository at this point in the history
  • Loading branch information
powerman committed Sep 3, 2020
1 parent 1943ca3 commit 5e45f44
Show file tree
Hide file tree
Showing 92 changed files with 4,539 additions and 1,930 deletions.
6 changes: 6 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# name - exclude file/dir "name" in project root
# **/name - exclude file/dir "name" in project root or any subdir
# !name - include previously excluded "name"
# a*b?c/d[0-9]e[^a-z\]]f\[g - pattern
*
!bin
11 changes: 11 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1 +1,12 @@
# /name - apply (* doesn't match /) to file "name" beginning in project root
# na/me - apply (* doesn't match /) to file "na/me" anywhere
# name - apply (* do match /) to file "name" anywhere
# name/** - apply … to dir …
# **/name - apply (* doesn't match /) to file "name" in any dir including project root
# na/**/me - apply (* doesn't match /) to file "na/me", "na/*/me", "na/*/*/me", …
go.sum binary
*.*.go binary
/api/**/model/** binary
/api/**/restapi/** binary
/api/**/restapi/configure_*.go -binary
/api/**/client/** binary
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,5 @@
# na/**/me - exclude path (* doesn't match /) to file/dir "na/me", "na/*/me", "na/*/*/me", …
# !name - include previously excluded path …
/bin/
/env.sh
/cover.out
Loading

0 comments on commit 5e45f44

Please sign in to comment.