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
Copy file name to clipboardExpand all lines: docs/menu-items.md
+10-10Lines changed: 10 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,21 +27,21 @@ This menu option is analogous to the [git add](https://git-scm.com/docs/git-add)
27
27
This menu option will only appear if the currently open file has been already added using the 'Add' menu option. It undoes the effect of adding the file, similar to running [git reset](https://git-scm.com/docs/git-reset) on a specific file.
28
28
29
29
30
-
## Push to remote branch
30
+
## Push to Remote Branch
31
31
This option pushes the commits in the branch to the remote repository. This exhibits the same behavior as the [git push](https://git-scm.com/docs/git-push) command.
32
32
33
33
34
-
## Push to remote branch (force)
34
+
## Push to Remote Branch (force)
35
35
This option forcibly pushes the commits in the branch to the remote repository. This is potentially destructive and may overwrite the commit history of the remote branch. This exhibits the same behavior as the [git push --force](https://git-scm.com/docs/git-push) command.
36
36
37
37
38
-
## Fetch from remote
38
+
## Fetch from Remote
39
39
This option first [fetches](https://git-scm.com/docs/git-fetch) the most recent version of the branch without merging that version into the local copy of the branch. It will then list all files modified between the current version and the remote version.
40
40
41
41
This also has the effect of refreshing the list of all remote branches and pruning any references that no longer exist in the remote. (see: [git fetch --prune](https://git-scm.com/docs/git-fetch#Documentation/git-fetch.txt---prune))
42
42
43
43
44
-
## Pull changes from remote branch
44
+
## Pull Changes from Remote Branch
45
45
Much like the [git pull](https://git-scm.com/docs/git-pull) command, this menu option pulls the most recent version of the current branch from a remote source, merging the changes into the local copy.
46
46
47
47
@@ -55,29 +55,29 @@ This option will synchronize the current branch checked out a local repo with th
55
55
The sync operation is only enabled in basic mode.
56
56
57
57
58
-
## Create new branch
58
+
## Create New Branch
59
59
This menu option creates a new branch in the repository for changes to be committed to. It also changes the current branch to be the created branch. This mimics the behavior of the [git checkout -b](https://git-scm.com/docs/git-checkout) command.
60
60
61
61
In basic mode, this option first checks out the Default Merge Branch (if defined) and pulls that branch from the remote before creating the new branch.
62
62
63
63
64
-
## Check out an existing branch
64
+
## Check Out an Existing Branch
65
65
This option refreshes the local list of branches available in the upstream repository, and then changes the currently checked out branch to the provided branch. This mimics the behavior of the [git fetch --prune](https://git-scm.com/docs/git-fetch#Documentation/git-fetch.txt---prune) and [git checkout](https://git-scm.com/docs/git-checkout) commands.
66
66
67
67
If the desired branch does not exist in your local or in the remote, then you will receive the "Selected branch does not exist" error message.
68
68
69
69
70
-
## Export all
70
+
## Export All
71
71
This option exports class files to the local file tree at the configured location.
72
72
73
73
74
-
## Export all (force)
74
+
## Export All (Force)
75
75
This option exports all class files regardless of whether they're already up to date in the local file tree or not.
76
76
77
77
78
-
## Import all
78
+
## Import All
79
79
This option imports the versions of the files that are found in the configured directory into the project. Files that are out of date or the same as the files in the project won't be imported.
80
80
81
81
82
-
## Import all (force)
82
+
## Import All (Force)
83
83
This menu option behaves similarly to the regular import but forces the files to be imported regardless of whether the on-disk version is the same or older.
0 commit comments