What does β€œCL” mean in a commit message? What does this mean?

From Angular.js change the log:

... After this CL, ng-trim will no longer affect the input [type = password] and will never trim the password value.

This is one of the commit messages, so presumably this means a patch. What does this mean? Change log?

+5
source share
2 answers

This means a list of changes.

Create Change List (CL)

Creating a change in git really just creates a branch.

http://www.chromium.org/developers/contributing-code

The code review system uses: https://code.google.com/p/rietveld/

+3
source

Google seems to be saying. I don’t work at Google, so I can only guess, but I would suggest that it means "changelog", meaning "a small set of commits considered as a unit for merging", like Github PR (pull request). It is displayed here and here (search on the page for "CL created") with the same usage, and it detects all over the place in Angular problems.

If you are more familiar with Github-talk than Google-talk, mentally replace β€œPR” with β€œCL”, and I think you will have the right idea. :-)

+2
source

Source: https://habr.com/ru/post/1202037/


All Articles