-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (33 loc) · 1.28 KB
/
index.html
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
<!DOCTYPE html>
<html>
<body>
<h3>Git process headlines</h3>
<section>
<ol>
<li>No direct commits in "main" branch.</li>
<li>Whenever you start work on any issue. Check out a new branch per issue from "main".</li>
<li>Make sure every commit should contain the issue number at the start of the description or in detail section if there are multiple issues in single commit.</li>
<li>Put proper comments in commits. See examples below.</li>
<li>Pushed your changes in related branches. Do not leave the code in your machine when you end your day regardless your task is incomplete.</li>
<ol>
</section>
<h4>Example commit description when done.</h4>
<section>
MT-102<br>
Completed: Implement bulk import feature.
</section>
<h4>Example commit description when in progress.</h4>
<section>
MT-1002
Completed: Implemented front-end UI, library to validate the file and data
Pending: Parse records to import into the database.
</section>
<h4>Example commit description when in progress and facing problem</h4>
<section>
MT-1002
Completed: Implemented front-end UI, library to validate the file and data
Pending: Parse records to import into the database.
Problem: Discussion required on how to perform bulk operations in one go.
</section>
</body>
</html>