Skip to content

Commit d01bb71

Browse files
committed
add submodule lab/frontend-angular/
1 parent 1346366 commit d01bb71

File tree

4 files changed

+232
-0
lines changed

4 files changed

+232
-0
lines changed

.gitattributes

+218
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,218 @@
1+
## GITATTRIBUTES FOR WEB PROJECTS
2+
#
3+
# These settings are for any web project.
4+
# Ref: https://git.io/fxxEi
5+
#
6+
# Details per file setting:
7+
# text These files should be normalized (i.e. convert CRLF => LF).
8+
# binary These files are binary and should be left untouched.
9+
#
10+
# Note that binary is a macro for -text -diff.
11+
######################################################################
12+
13+
## AUTO-DETECT
14+
## Handle line endings automatically for files detected as
15+
## text and leave all files detected as binary untouched.
16+
## This will handle all files NOT defined below.
17+
* text=auto eol=lf
18+
19+
## SOURCE CODE
20+
*.bat text eol=crlf
21+
*.coffee text
22+
*.css text
23+
*.htm text diff=html
24+
*.html text diff=html
25+
*.inc text
26+
*.ini text
27+
*.js text
28+
*.json text
29+
*.jsx text
30+
*.less text
31+
*.od text
32+
*.onlydata text
33+
*.php text diff=php
34+
*.pl text
35+
*.py text diff=python
36+
*.rb text diff=ruby
37+
*.sass text
38+
*.scm text
39+
*.scss text
40+
*.sh text eol=lf
41+
*.sql text
42+
*.styl text
43+
*.tag text
44+
*.ts text
45+
*.tsx text
46+
*.vue text
47+
*.xml text
48+
*.xhtml text diff=html
49+
50+
## DOCKER
51+
*.dockerignore text
52+
Dockerfile text
53+
54+
## DOCUMENTATION
55+
*.ipynb text
56+
*.markdown text
57+
*.md text
58+
*.mdwn text
59+
*.mdown text
60+
*.mkd text
61+
*.mkdn text
62+
*.mdtxt text
63+
*.mdtext text
64+
*.txt text
65+
AUTHORS text
66+
CHANGELOG text
67+
CHANGES text
68+
CONTRIBUTING text
69+
COPYING text
70+
copyright text
71+
*COPYRIGHT* text
72+
INSTALL text
73+
license text
74+
LICENSE text
75+
NEWS text
76+
readme text
77+
*README* text
78+
TODO text
79+
80+
## TEMPLATES
81+
*.dot text
82+
*.ejs text
83+
*.haml text
84+
*.handlebars text
85+
*.hbs text
86+
*.hbt text
87+
*.jade text
88+
*.latte text
89+
*.mustache text
90+
*.njk text
91+
*.phtml text
92+
*.tmpl text
93+
*.tpl text
94+
*.twig text
95+
96+
## LINTERS
97+
.csslintrc text
98+
.eslintrc text
99+
.htmlhintrc text
100+
.jscsrc text
101+
.jshintrc text
102+
.jshintignore text
103+
.stylelintrc text
104+
105+
## CONFIGS
106+
*.bowerrc text
107+
*.cnf text
108+
*.conf text
109+
*.config text
110+
.babelrc text
111+
.browserslistrc text
112+
.editorconfig text
113+
.env text
114+
.gitattributes text
115+
.gitconfig text
116+
.gitignore text
117+
.htaccess text
118+
*.lock text
119+
*.npmignore text
120+
*.yaml text
121+
*.yml text
122+
browserslist text
123+
Makefile text
124+
makefile text
125+
126+
## HEROKU
127+
Procfile text
128+
.slugignore text
129+
130+
## GRAPHICS
131+
*.ai binary
132+
*.bmp binary
133+
*.eps binary
134+
*.gif binary
135+
*.ico binary
136+
*.jng binary
137+
*.jp2 binary
138+
*.jpg binary
139+
*.jpeg binary
140+
*.jpx binary
141+
*.jxr binary
142+
*.pdf binary
143+
*.png binary
144+
*.psb binary
145+
*.psd binary
146+
*.svg text
147+
*.svgz binary
148+
*.tif binary
149+
*.tiff binary
150+
*.wbmp binary
151+
*.webp binary
152+
153+
## AUDIO
154+
*.kar binary
155+
*.m4a binary
156+
*.mid binary
157+
*.midi binary
158+
*.mp3 binary
159+
*.ogg binary
160+
*.ra binary
161+
162+
## VIDEO
163+
*.3gpp binary
164+
*.3gp binary
165+
*.as binary
166+
*.asf binary
167+
*.asx binary
168+
*.fla binary
169+
*.flv binary
170+
*.m4v binary
171+
*.mng binary
172+
*.mov binary
173+
*.mp4 binary
174+
*.mpeg binary
175+
*.mpg binary
176+
*.ogv binary
177+
*.swc binary
178+
*.swf binary
179+
*.webm binary
180+
181+
## ARCHIVES
182+
*.7z binary
183+
*.gz binary
184+
*.jar binary
185+
*.rar binary
186+
*.tar binary
187+
*.zip binary
188+
189+
## FONTS
190+
*.ttf binary
191+
*.eot binary
192+
*.otf binary
193+
*.woff binary
194+
*.woff2 binary
195+
196+
## EXECUTABLES
197+
*.exe binary
198+
*.pyc binary
199+
200+
# EHR.QLHIS Project
201+
.gitignore text
202+
*.gitattributes text
203+
*.md text
204+
205+
206+
# Project binary
207+
*.sln binary
208+
*.dll binary
209+
*.doc binary
210+
*.docx binary
211+
*.xls binary
212+
*.xlsx binary
213+
*.resx binary
214+
*.tt binary
215+
216+
# No text automatically
217+
/dist/* -text
218+
/docs/* -text

.gitmodules

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "lab/frontend-angular"]
2+
path = lab/frontend-angular
3+
url = [email protected]:vunb/frontend-angular.git

lab/README.md

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
Link git submodules
2+
===================
3+
4+
Project: `frontend-angular`
5+
6+
> git submodule add [email protected]:vunb/frontend-angular.git lab/frontend-angular/
7+
8+
Project: `backend-nodejs`
9+
10+
> git submodule add [email protected]:vunb/backend-nodejs.git lab/backend-nodejs/

lab/frontend-angular

Submodule frontend-angular added at 185d12b

0 commit comments

Comments
 (0)