Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does "CL" mean in a commit message? What does it stand for?

From Angular.js change log:

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

This is from one of the commit messages, so presumably it means the patch. What does it stand for? Change log?

like image 919
XrXr Avatar asked Sep 08 '14 03:09

XrXr


People also ask

What is a CL in computer science?

Computational linguistics (CL) is the application of computer science to the analysis and comprehension of written and spoken language.

What does CL mean on roster?

CL stands for Compensatory Leave.


1 Answers

It means Change List.

Create a change list (CL)

Creating a change in git is really just creating a branch.

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

And the code review system there are using: https://code.google.com/p/rietveld/

like image 125
RandyQ Avatar answered Sep 21 '22 15:09

RandyQ