Show More
@@ -2786,6 +2786,22 b' class localrepository(object):' | |||
|
2786 | 2786 | ): |
|
2787 | 2787 | """ |
|
2788 | 2788 | commit an individual file as part of a larger transaction |
|
2789 | ||
|
2790 | input: | |
|
2791 | ||
|
2792 | fctx: a file context with the content we are trying to commit | |
|
2793 | manifest1: manifest of changeset first parent | |
|
2794 | manifest2: manifest of changeset second parent | |
|
2795 | linkrev: revision number of the changeset being created | |
|
2796 | tr: current transation | |
|
2797 | changelist: list of file being changed (modified inplace) | |
|
2798 | individual: boolean, set to False to skip storing the copy data | |
|
2799 | (only used by the Google specific feature of using | |
|
2800 | changeset extra as copy source of truth). | |
|
2801 | ||
|
2802 | output: | |
|
2803 | ||
|
2804 | The resulting filenode | |
|
2789 | 2805 | """ |
|
2790 | 2806 | |
|
2791 | 2807 | fname = fctx.path() |
General Comments 0
You need to be logged in to leave comments.
Login now