forked from mlhubber/mlmodels
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgit.mk
More file actions
83 lines (68 loc) · 2.3 KB
/
git.mk
File metadata and controls
83 lines (68 loc) · 2.3 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
########################################################################
#
# Makefile template for Version Control - git
#
# Copyright 2018 (c) Graham.Williams@togaware.com
#
# License: Creative Commons Attribution-ShareAlike 4.0 International.
#
########################################################################
define GIT_HELP
GIT Version Control:
info Identify the git repository;
status Status listing untracked files;
qstatus A quieter status ignoring untracked files;
push
pull
master Checkout the master branch;
dev Checkout the dev branch;
log
flog Show the full log;
diff
vdiff Show a visual diff using meld.
endef
export GIT_HELP
help::
@echo "$$GIT_HELP"
info:
@echo "-------------------------------------------------------"
git config --get remote.origin.url
@echo "-------------------------------------------------------"
status:
@echo "-------------------------------------------------------"
git status
@echo "-------------------------------------------------------"
qstatus:
@echo "-------------------------------------------------------"
git status --untracked-files=no
@echo "-------------------------------------------------------"
push:
@echo "-------------------------------------------------------"
git push
@echo "-------------------------------------------------------"
pull:
@echo "-------------------------------------------------------"
git pull
@echo "-------------------------------------------------------"
master:
@echo "-------------------------------------------------------"
git checkout master
@echo "-------------------------------------------------------"
dev:
@echo "-------------------------------------------------------"
git checkout dev
@echo "-------------------------------------------------------"
log:
@echo "-------------------------------------------------------"
git --no-pager log --stat --max-count=10
@echo "-------------------------------------------------------"
flog:
@echo "-------------------------------------------------------"
git --no-pager log
@echo "-------------------------------------------------------"
diff:
@echo "-------------------------------------------------------"
git --no-pager diff --color
@echo "-------------------------------------------------------"
vdiff:
git difftool --tool=meld