forked from endymuhardin/belajarGit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
git-workflow
64 lines (52 loc) · 1.31 KB
/
git-workflow
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
Git Workflows
1. Alumni Subversion
Ciri khas :
- semua commit dicampur di trunk
- commit per online, bukan per task
- branch cuma untuk maintenance rilis
Cara kerja
git clone
hack hack hack
git commit -am "log message"
git pull
resolve conflicts
git push
Outcome :
- commit gak jelas juntrungannya
- tiap commit tidak bisa diapply sebagai patch yang solid
- merge commit di mana2
2. Git Zealot
Ciri khas :
- commit per task
- bikin branch even untuk ngerjain 1 commit doang
- rebase melulu
Cara kerja :
Clone dulu project yang mau dikerjakan
git clone myrepo
git checkout -b topic-branch
hack hack hack
git add -i
pilih hunk yang mau distage
commit
git push origin topic-branch
Jangan gunakan master untuk kerja, master hanya untuk track upstream.
Prepare release
checkout master
remote add upstream
fetch upstream
merge master upstream/master
checkout topic-branch
pilih :
- rebase master (awas intermediate commit juga harus ditest)
- checkout master, merge topic-branch (jadi ada merge commit) -> preferred seperti katanya nvie.
http://nvie.com/posts/a-successful-git-branching-model/
resolve conflicts
- commit
Send pull request
git format-patch
send untuk review/pull request
Outcome :
- clean, linear history
- patch bisa diapply secara clean
- tiap commit jelas urusannya
- butuh waktu lama untuk pilih2 hunk