Skip to content

Commit 9800861

Browse files
committed
docs: change casing of headers.
1 parent 8587a4a commit 9800861

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

docs/menu-items.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -27,21 +27,21 @@ This menu option is analogous to the [git add](https://git-scm.com/docs/git-add)
2727
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.
2828

2929

30-
## Push to remote branch
30+
## Push to Remote Branch
3131
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.
3232

3333

34-
## Push to remote branch (force)
34+
## Push to Remote Branch (force)
3535
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.
3636

3737

38-
## Fetch from remote
38+
## Fetch from Remote
3939
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.
4040

4141
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))
4242

4343

44-
## Pull changes from remote branch
44+
## Pull Changes from Remote Branch
4545
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.
4646

4747

@@ -55,29 +55,29 @@ This option will synchronize the current branch checked out a local repo with th
5555
The sync operation is only enabled in basic mode.
5656

5757

58-
## Create new branch
58+
## Create New Branch
5959
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.
6060

6161
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.
6262

6363

64-
## Check out an existing branch
64+
## Check Out an Existing Branch
6565
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.
6666

6767
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.
6868

6969

70-
## Export all
70+
## Export All
7171
This option exports class files to the local file tree at the configured location.
7272

7373

74-
## Export all (force)
74+
## Export All (Force)
7575
This option exports all class files regardless of whether they're already up to date in the local file tree or not.
7676

7777

78-
## Import all
78+
## Import All
7979
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.
8080

8181

82-
## Import all (force)
82+
## Import All (Force)
8383
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

Comments
 (0)