6 lines
186 B
Plaintext
6 lines
186 B
Plaintext
# Stage all modified and new files
|
|
git add .
|
|
|
|
# Commit with a meaningful message
|
|
git commit -m "Fix: aggregate employee task details by employeeId and calculate total estimate & actual"
|