You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 15, 2023. It is now read-only.
Feat: The plugin now performs a fetch and check for updates when pulling before stashing, this way local changes are not stashed if the local branch is up-to-date
Copy file name to clipboardExpand all lines: gui/src/main/resources/de/adito/git/gui/actions/Bundle.properties
+14-1Lines changed: 14 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,9 @@ mergeSavedStateMsg=Saved the current merge state, use "resolve conflicts" to res
6
6
mergeBranchesUpToDateTitle=Already up-to-date
7
7
mergeBranchesUpToDateMsg=Branches are already up-to-date/merged
8
8
# Pull Action
9
+
pullActionName=Pull
10
+
pullHandleTitleMsg=Updating Project...
11
+
pullTooltipMsg=Pull all changes from the remote Branch
9
12
pullSuccessTitle=Pull successful
10
13
pullSuccessMsg=The pull --rebase was successful, files are now up-to-date
11
14
pullAlreadyUpToDate=Files are already up-to-date
@@ -21,6 +24,13 @@ pullExistingConflictingFilesMsg=There are files that have the conflicting state,
21
24
pullFailedUpstreamBranchMsg=Pull failed, could not determine upstream branch
22
25
pullFailedExceptionMsg=Pull failed due to an exception
23
26
rebaseMergeCommitsWarning=<html>Local unpushed commits contain a merge-commit, rebasing a merge-commit can lead to lost data.<br>Do you want to merge the remote branch into the current branch instead?</html>
27
+
pullBrancheUpToDateTitle=Already up-to-date
28
+
pullBrancheUpToDateMsg=The local branch already has all upstream changes
29
+
pullFetchHandleMsg=Checking remote for updates
30
+
pullRebaseHandleMsg=Rebasing
31
+
pullResolveConflictsHandleMsg=Resolving Conflicts
32
+
pullGetRepoHandleMsg=Retrieving Repository
33
+
pullFailedRepoStateMsg=Failed to read repository state for the remote tracked branch
24
34
#Commit Action
25
35
noFilesToCommitMsg=No changed files detected, so there is nothing to commit
26
36
noFilesToCommitTitle=No files to commit
@@ -73,7 +83,7 @@ tbnfeDetailsMsg=<html>The plugin is not able to determine the target branch or c
73
83
resolveConflictsTitle=Resolve Conflicts
74
84
resolveConflictsFailureMsg=Could determine neither the target nor the state before the operation that led to the conflict, please reset the current branch to the commit you based from manually
75
85
#StashChangesAction
76
-
stashProgressMsg=Stashing changes
86
+
stashProgressMsg=Stashing existing changes
77
87
stashFailureMsg=An error occurred during the stash process
78
88
#UnStashChangesAction
79
89
unstashFailureMsg=An error occurred while trying to unstash
@@ -87,3 +97,6 @@ unknownHostMsg=Could not resolve the repository url {0}, make sure it is a valid
87
97
renormalizeNewlinesTitle=Renormalize newlines
88
98
renormalizeNewlinesFailureNoRepo=Could not find suitable git repo, renormalize newlines was not attempted
89
99
renormalizeNewlinesFailureException=Renormalizing the newlines failed
100
+
stashDoneMsg=Stashed current changes with commit id {0}
101
+
stashDiscardMsg=Git: Discarded current changes by resetting to HEAD commit with id {0}
102
+
stashDiscardErrorMsg=Cannot determine HEAD, so the current changes can't be discarded
0 commit comments