e5f4b49 Changes
e5f4b49 Add vin and plate fields
e5f4b49 feat(funnel): Add vin and plate fields
e5f4b49 feat(funnel): Add vin and plate fields
Issue INTCARMTCH-1810 | Pull Request #873
e5f4b49 feat(funnel): Add vin and plate fields
Send vin and plate field from the last funnel step
to accelerate the inspection process and car validation
Issue INTCARMTCH-1810 | Pull Request #873
fix, feat, docs, style, refactor, perf, test, chore
BREAKING CHANGE
fix (parser), feat(contact), refactor(admin footer)
docs(salesforce): Update Salesforce doc to version 1.1
$ npm install -g commitizen
$ npm install -g cz-conventional-changelog
$ echo '{ "path": "cz-conventional-changelog" }' > ~/.czrc
Community to the rescue
$ npm install -g conventional-changelog-cli
$ conventional-changelog -p angular -i CHANGELOG.md -s
Community to the rescue (again)
Commit each fix or task as a separate change
Only commit when a block of work is complete
Commit each layout change separately
Joint commit for layout file, code behind file, and additional resources
Easy to roll back without affecting other changes
Easy to make other changes on the fly
Easy to merge features to other
$ git checkout {developer-name-initials}/{issue-number}
$ git checkout dp/2076
$ git checkout dp/edit-username
$ git checkout fix/2098
$ git checkout dp/feat/2531
$ git checkout dp/add-email-support-for-seller/1973
$ git rebase -i HEAD~6
pick 0459699 Added cache layer for comments.
pick b7055f8 Fixed variable typo
pick 3767ea4 test online again!!
pick a6fad5f Refactoring
pick 5c0c280 test if works online?
pick 2f22010 changes
# Rebase 78d14b7..ea8fec9 onto 78d14b7 (6 commands)
#
# Commands:
# p, pick = use commit
# r, reword = use commit, but edit the commit message
# e, edit = use commit, but stop for amending
# s, squash = use commit, but meld into previous commit
# f, fixup = like "squash", but discard this commit's log message
# x, exec = run command (the rest of the line) using shell
# d, drop = remove commit
#
# ...
$ git rebase -i HEAD~6
r 0459699 Added cache layer for comments.
f b7055f8 Fixed variable typo
d 3767ea4 test online again!!
f a6fad5f Refactoring
d 5c0c280 test if works online?
f 2f22010 changes
# Rebase 78d14b7..ea8fec9 onto 78d14b7 (6 commands)
#
# Commands:
# p, pick = use commit
# r, reword = use commit, but edit the commit message
# e, edit = use commit, but stop for amending
# s, squash = use commit, but meld into previous commit
# f, fixup = like "squash", but discard this commit's log message
# x, exec = run command (the rest of the line) using shell
# d, drop = remove commit
#
# ...
$ git log -n 1 --oneline
0459699 (HEAD -> master) fix(articles): Move logic from runtime to cache for calculate comments number