-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile
57 lines (45 loc) · 1.3 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#
# Makefile for lorca-examples
#
all: usage
usage:
@echo "make [edit|test||git]"
#------------------------------------------------------------------------------
edit e:
@echo "make (edit) [make|readme]"
edit-make em:
vi Makefile
edit-readme er:
vi README.md
#------------------------------------------------------------------------------
test t:
@echo "make (test) [object]"
test-object to:
#------------------------------------------------------------------------------
git g:
@echo "make (git) [update|login|tag|status]"
git-update gu:
git add .gitignore Makefile* *.md hello/ call/ counter/ gcal/ gui/ search/
#git commit -m "initial commit"
#git commit -m "add Makefile.dart-web"
git commit -m "update commentaries"
#git commit -m "rename /reference into /code"
git push -u origin master
git-remove gr:
git rm -r VIM.md
git commit -m "Rename VIM.md into TOOLS.md"
git push origin master
git-login gl:
git config --global user.email "sikang99@gmail.com"
git config --global user.name "Stoney Kang"
git config --global push.default matching
#git config --global push.default simple
git config credential.helper store
git-tag gt:
git tag v0.0.3
git push --tags
git-status gs:
git diff
git status
git log --oneline -5
# ---------------------------------------------------------------------------