Firefox OS/Performance/Bisecting Regressions: Difference between revisions

Line 38: Line 38:


<pre>
<pre>
  $ git whatchanged --since="[branch@]day month year" --until="[branch@]day month year"
  $ git log --since="[branch@]DD-MM-YYYY" --until="[branch@]DD-MM-YYYY"
</pre>
</pre>
   
   
For example, if I want the revisions for the v1.1 branch between 10 January 2014 and 15 January 2014, I would run the following command:
For example, if I want the revisions for the v1.2 branch between 10 January, 2014 and 15 January, 2014, I would run the following command:


<pre>
<pre>
  $ git whatchanged --since="v1.1@10 January 2014" --until="v1.1@15 January 2014"
  $ git log --since="v1.2@10-01-2014" --until="v1.2@15-01-2014"
</pre>
</pre>


canmove, Confirmed users
225

edits