Module implementing the VCS project helper for Git.
None |
GitProjectHelper | Class implementing the VCS project helper for Git. |
None |
Class implementing the VCS project helper for Git.
None |
None |
GitProjectHelper | Constructor |
__gitAddRemote | Private slot to add a remote repository. |
__gitApplyPatches | Private slot to apply a list of patch files. |
__gitBisectBad | Private slot used to execute the bisect bad command. |
__gitBisectCreateReplay | Private slot used to create a replay file for the current bisect session. |
__gitBisectEditReplay | Private slot used to edit a bisect replay file. |
__gitBisectGood | Private slot used to execute the bisect good command. |
__gitBisectLogBrowser | Private slot used to show the bisect log browser window. |
__gitBisectReplay | Private slot used to replay a bisect session. |
__gitBisectReset | Private slot used to execute the bisect reset command. |
__gitBisectSkip | Private slot used to execute the bisect skip command. |
__gitBisectStart | Private slot used to execute the bisect start command. |
__gitBisectStartExtended | Private slot used to execute the bisect start command with options. |
__gitBranch | Private slot used to perform branch operations for the project. |
__gitBranchList | Private slot used to list the branches of the project. |
__gitBundle | Private slot used to create a bundle file. |
__gitBundleFetch | Private slot to apply a head of a bundle file using the fetch method. |
__gitBundleListHeads | Private slot used to list the heads contained in a bundle file. |
__gitBundlePull | Private slot to apply a head of a bundle file using the pull method. |
__gitCancelMerge | Private slot used to cancel an uncommitted or failed merge. |
__gitChangeRemoteUrl | Private slot to change the URL of a remote repository. |
__gitCheckPatches | Private slot to check a list of patch files, if they would apply cleanly. |
__gitCherryPick | Private slot used to copy commits into the current branch. |
__gitCherryPickAbort | Private slot used to cancel the last copying session and return to the previous state. |
__gitCherryPickContinue | Private slot used to continue the last copying session after conflicts were resolved. |
__gitCherryPickQuit | Private slot used to quit the current copying operation. |
__gitCommitMerge | Private slot used to commit the ongoing merge. |
__gitConfigure | Private method to open the configuration dialog. |
__gitCreateArchive | Private slot used to create an archive from the local repository. |
__gitCreateIgnore | Private slot used to create a .gitignore file for the project. |
__gitDeleteBranch | Private slot used to delete a branch from a remote repository. |
__gitDescribeTag | Private slot to show the most recent tag. |
__gitEditRepoConfig | Private slot used to edit the repository configuration file. |
__gitEditUserConfig | Private slot used to edit the user configuration file. |
__gitExtendedDiff | Private slot used to perform a git diff with the selection of revisions. |
__gitFetch | Private slot used to fetch changes from a remote repository. |
__gitHouseKeeping | Private slot used to cleanup and optimize the local repository. |
__gitMergedBranchList | Private slot used to list the merged branches of the project. |
__gitNotMergedBranchList | Private slot used to list the not merged branches of the project. |
__gitPruneRemote | Private slot to prune stale tracking branches of a remote repository. |
__gitPull | Private slot used to pull changes from a remote repository. |
__gitPush | Private slot used to push changes to a remote repository. |
__gitReflogBrowser | Private slot to show the reflog of the current project. |
__gitRemoteCredentials | Private slot to change or set the user credentials for a remote repository. |
__gitRemoveRemote | Private slot to remove a remote repository. |
__gitRenameRemote | Private slot to rename a remote repository. |
__gitRevert | Private slot used to revert changes made to the local project. |
__gitShowBranch | Private slot used to show the current branch for the project. |
__gitShowConfig | Private slot used to show the combined configuration. |
__gitShowPatchStatistics | Private slot to show some patch statistics. |
__gitShowRemote | Private slot used to show information about a remote repository. |
__gitShowRemotes | Private slot used to show the available remote repositories. |
__gitStashApply | Private slot to restore a stash and keep it. |
__gitStashBranch | Private slot to create a new branch and restore a stash into it. |
__gitStashBrowser | Private slot used to show the stash browser dialog. |
__gitStashClear | Private slot to clear all stashes. |
__gitStashDrop | Private slot to drop a stash. |
__gitStashPop | Private slot to restore a stash and delete it. |
__gitStashSave | Private slot to stash all current changes. |
__gitStashShow | Private slot to show the contents of the selected stash. |
__gitStatistics | Private slot used to show some statistics of the local repository. |
__gitSubmoduleAdd | Private slot to add a submodule to the current project. |
__gitSubmodulesDeinit | Private slot to unregister submodules of the project. |
__gitSubmodulesInit | Private slot to initialize submodules of the project. |
__gitSubmodulesList | Private slot to list the submodules defined for the current project. |
__gitSubmodulesStatus | Private slot to show the status of submodules of the project. |
__gitSubmodulesSummary | Private slot to show summary information for submodules of the project. |
__gitSubmodulesSync | Private slot to synchronize URLs of submodules of the project. |
__gitSubmodulesUpdate | Private slot to update submodules of the project. |
__gitSubmodulesUpdateInit | Private slot to initialize and update submodules of the project. |
__gitSubmodulesUpdateOptions | Private slot to update submodules of the project with options. |
__gitSubmodulesUpdateRemote | Private slot to fetch and update submodules of the project. |
__gitTagList | Private slot used to list the tags of the project. |
__gitUnstage | Private slot used to unstage changes made to the local project. |
__gitVerify | Private slot used to verify the connectivity and validity of objects of the database. |
__gitVerifyBundle | Private slot used to verify a bundle file. |
getActions | Public method to get a list of all actions. |
getProject | Public method to get a reference to the project object. |
initActions | Public method to generate the action objects. |
initMenu | Public method to generate the VCS menu. |
initToolbar | Public slot to initialize the VCS toolbar. |
removeToolbar | Public method to remove a toolbar created by initToolbar(). |
setObjects | Public method to set references to the vcs and project objects. |
shutdown | Public method to perform shutdown actions. |
None |
Constructor
Private slot to add a remote repository.
Private slot to apply a list of patch files.
Private slot used to execute the bisect bad command.
Private slot used to create a replay file for the current bisect session.
Private slot used to edit a bisect replay file.
Private slot used to execute the bisect good command.
Private slot used to show the bisect log browser window.
Private slot used to replay a bisect session.
Private slot used to execute the bisect reset command.
Private slot used to execute the bisect skip command.
Private slot used to execute the bisect start command.
Private slot used to execute the bisect start command with options.
Private slot used to perform branch operations for the project.
Private slot used to list the branches of the project.
Private slot used to create a bundle file.
Private slot to apply a head of a bundle file using the fetch method.
Private slot used to list the heads contained in a bundle file.
Private slot to apply a head of a bundle file using the pull method.
Private slot used to cancel an uncommitted or failed merge.
Private slot to change the URL of a remote repository.
Private slot to check a list of patch files, if they would apply cleanly.
Private slot used to copy commits into the current branch.
Private slot used to cancel the last copying session and return to the previous state.
Private slot used to continue the last copying session after conflicts were resolved.
Private slot used to quit the current copying operation.
Private slot used to commit the ongoing merge.
Private method to open the configuration dialog.
Private slot used to create an archive from the local repository.
Private slot used to create a .gitignore file for the project.
Private slot used to delete a branch from a remote repository.
Private slot to show the most recent tag.
Private slot used to edit the repository configuration file.
Private slot used to edit the user configuration file.
Private slot used to perform a git diff with the selection of revisions.
Private slot used to fetch changes from a remote repository.
Private slot used to cleanup and optimize the local repository.
Private slot used to list the merged branches of the project.
Private slot used to list the not merged branches of the project.
Private slot to prune stale tracking branches of a remote repository.
Private slot used to pull changes from a remote repository.
Private slot used to push changes to a remote repository.
Private slot to show the reflog of the current project.
Private slot to change or set the user credentials for a remote repository.
Private slot to remove a remote repository.
Private slot to rename a remote repository.
Private slot used to revert changes made to the local project.
Private slot used to show the current branch for the project.
Private slot used to show the combined configuration.
Private slot to show some patch statistics.
Private slot used to show information about a remote repository.
Private slot used to show the available remote repositories.
Private slot to restore a stash and keep it.
Private slot to create a new branch and restore a stash into it.
Private slot used to show the stash browser dialog.
Private slot to clear all stashes.
Private slot to drop a stash.
Private slot to restore a stash and delete it.
Private slot to stash all current changes.
Private slot to show the contents of the selected stash.
Private slot used to show some statistics of the local repository.
Private slot to add a submodule to the current project.
Private slot to unregister submodules of the project.
Private slot to initialize submodules of the project.
Private slot to list the submodules defined for the current project.
Private slot to show the status of submodules of the project.
Private slot to show summary information for submodules of the project.
Private slot to synchronize URLs of submodules of the project.
Private slot to update submodules of the project.
Private slot to initialize and update submodules of the project.
Private slot to update submodules of the project with options.
Private slot to fetch and update submodules of the project.
Private slot used to list the tags of the project.
Private slot used to unstage changes made to the local project.
Private slot used to verify the connectivity and validity of objects of the database.
Private slot used to verify a bundle file.
Public method to get a list of all actions.
Public method to get a reference to the project object.
Public method to generate the action objects.
Public method to generate the VCS menu.
Public slot to initialize the VCS toolbar.
Public method to remove a toolbar created by initToolbar().
Public method to set references to the vcs and project objects.
Public method to perform shutdown actions.