KDevelop5/Manual/Working with version control systems/da: Difference between revisions

From KDE UserBase Wiki
(Importing a new version from external source)
(Importing a new version from external source)
Line 15: Line 15:
* Hvis du har redigeret en eller flere filer, så udvid projektvisningen til mappen, hvor disse filer findes og højreklik på den. Menupunktet <menuchoice>Subversion</menuchoice> giver dig forskellige muligheder. Vælg <menuchoice>Sammenlign med Base...</menuchoice> for at se forskellene imellem den version, som du har redigeret og den version, som er i det arkiv, som du tidligere tjekkede projektet ud fra ("revisionsbasen"). Det resulterer i en visning af forskellene for alle filerne i denne mappe.
* Hvis du har redigeret en eller flere filer, så udvid projektvisningen til mappen, hvor disse filer findes og højreklik på den. Menupunktet <menuchoice>Subversion</menuchoice> giver dig forskellige muligheder. Vælg <menuchoice>Sammenlign med Base...</menuchoice> for at se forskellene imellem den version, som du har redigeret og den version, som er i det arkiv, som du tidligere tjekkede projektet ud fra ("revisionsbasen"). Det resulterer i en visning af forskellene for alle filerne i denne mappe.


* If you only edited a single file, you can also get the <menuchoice>Subversion</menuchoice> menu for this file by simply right clicking on the corresponding file name in the project view. Even simpler, just right clicking into the '''Editor''' view in which you have opened this file will also give you this menu option.
* Hvis du kun har redigeret en enkelt fil, så kan du også få menuen <menuchoice>Subversion</menuchoice> for denne fil ved simpelthen at højreklikke på det tilsvarende filnavn i projektvisningen. Du kan også bare højreklikke i den editorvisning, som filen blev redigeret i for at få denne menu frem.


* If you want to check in one or more edited files, right click either on an individual file, subdirectory, or whole project and select <menuchoice>Subversion -> Commit</menuchoice>. This will get you into <menuchoice>Review</menuchoice> mode, the third mode besides <menuchoice>Code</menuchoice> and <menuchoice>Debug</menuchoice> as you can see in the top right corner of the '''KDevelop''' main window. The picture on the right shows you how this looks. In <menuchoice>Review</menuchoice> mode, the top part shows you diffs for the entire subdirectory/project and each individual changed file with changes highlighted (see the various tabs on this part of the window). By default, all changed files are in the changeset you are about to commit, but you can unselect some of the files if their modifications are unrelated to what you want to commit. For example, in the example on the right I have unselected <code>step-32.cc</code> and <code>step-32.prm</code> because the changes in these files have nothing to do with the other ones I made to this project and I don't yet want to check them in yet (I may later want to do so in a separate commit). After reviewing the changes you can enter a commit message into the text box and hit <menuchoice>Commit</menuchoice> on the right to send things off.
* If you want to check in one or more edited files, right click either on an individual file, subdirectory, or whole project and select <menuchoice>Subversion -> Commit</menuchoice>. This will get you into <menuchoice>Review</menuchoice> mode, the third mode besides <menuchoice>Code</menuchoice> and <menuchoice>Debug</menuchoice> as you can see in the top right corner of the '''KDevelop''' main window. The picture on the right shows you how this looks. In <menuchoice>Review</menuchoice> mode, the top part shows you diffs for the entire subdirectory/project and each individual changed file with changes highlighted (see the various tabs on this part of the window). By default, all changed files are in the changeset you are about to commit, but you can unselect some of the files if their modifications are unrelated to what you want to commit. For example, in the example on the right I have unselected <code>step-32.cc</code> and <code>step-32.prm</code> because the changes in these files have nothing to do with the other ones I made to this project and I don't yet want to check them in yet (I may later want to do so in a separate commit). After reviewing the changes you can enter a commit message into the text box and hit <menuchoice>Commit</menuchoice> on the right to send things off.

Revision as of 08:21, 1 October 2017

Other languages:

Arbejdet med versionskontrolsystemer

Hvis du arbejder med store projekter, så bliver kildekoden sandsynligvis håndteret af et versionskontrolsystem så som subversion eller git. Det følgende er skrevet med subversion i tankerne, men vil være lige så sandt, hvis du bruger git eller et andet understøttet versionskontrolsystem.

Bemærk først, at hvis mappen, som projektet er placeret i er under versionskontrol, så vil KDevelop automatisk bemærke det. Med andre ord behøver du ikke at bede KDevelop om at tjekke en kopi ud, når du opsætter dit projekt. Det er i orden at dirigere KDevelop til en mappe, til hvilken du tidligere har tjekket en kopi fra et arkiv ud. Hvis du har en mappe under versionskontrol, så åbn værktøjsvisningen Projekter. Der er flere ting du kan gøre:

  • Hvis din mappe er blevet forældet, så kan du opdatere den fra arkivet: Højre-klik på projektets navn og vælg Subversion og vælg Opdatér. Dette vil synkronisere alle filerne i dette projekt med arkivet.
  • Hvis du ønsker at begrænse denne handling til individuelle undermapper eller filer, så udvid projektets trævisning til det niveau, du ønsker, højreklik på undermappen eller filen og gør det samme som ovenfor.
  • Hvis du har redigeret en eller flere filer, så udvid projektvisningen til mappen, hvor disse filer findes og højreklik på den. Menupunktet Subversion giver dig forskellige muligheder. Vælg Sammenlign med Base... for at se forskellene imellem den version, som du har redigeret og den version, som er i det arkiv, som du tidligere tjekkede projektet ud fra ("revisionsbasen"). Det resulterer i en visning af forskellene for alle filerne i denne mappe.
  • Hvis du kun har redigeret en enkelt fil, så kan du også få menuen Subversion for denne fil ved simpelthen at højreklikke på det tilsvarende filnavn i projektvisningen. Du kan også bare højreklikke i den editorvisning, som filen blev redigeret i for at få denne menu frem.
  • If you want to check in one or more edited files, right click either on an individual file, subdirectory, or whole project and select Subversion -> Commit. This will get you into Review mode, the third mode besides Code and Debug as you can see in the top right corner of the KDevelop main window. The picture on the right shows you how this looks. In Review mode, the top part shows you diffs for the entire subdirectory/project and each individual changed file with changes highlighted (see the various tabs on this part of the window). By default, all changed files are in the changeset you are about to commit, but you can unselect some of the files if their modifications are unrelated to what you want to commit. For example, in the example on the right I have unselected step-32.cc and step-32.prm because the changes in these files have nothing to do with the other ones I made to this project and I don't yet want to check them in yet (I may later want to do so in a separate commit). After reviewing the changes you can enter a commit message into the text box and hit Commit on the right to send things off.
  • As with seeing differences, if you want to check in a single file you can also just right click into the editor window to get the Subversion -> Commit menu item.