Skip to content
This repository was archived by the owner on Jun 10, 2022. It is now read-only.

Commit 9f64d84

Browse files
committed
docs(docs): Add command string
1 parent f227a8e commit 9f64d84

File tree

1 file changed

+68
-10
lines changed

1 file changed

+68
-10
lines changed

docs/docs.md

+68-10
Original file line numberDiff line numberDiff line change
@@ -22,18 +22,20 @@
2222
- [Push All](#push-all)
2323
- [Sync](#sync)
2424
- [Sync All](#sync-all)
25-
- [Merge Branch](#merge-branch)
26-
- [Switch Branch](#switch-branch)
27-
- [Create Branch](#create-branch)
28-
- [Delete Branch](#delete-branch)
25+
- [Merge Branch...](#merge-branch)
26+
- [Switch Branch...](#switch-branch)
27+
- [Create Branch...](#create-branch)
28+
- [Delete Branch...](#delete-branch)
2929
- [Initialize](#initialize)
3030
- [Log](#log)
3131
- [Diff](#diff)
32-
- [Run Command](#run-command)
32+
- [Run Command...](#run-command)
3333
- [Refresh](#refresh)
3434

3535
## Commit...
3636

37+
`git-menu:commit`
38+
3739
You can commit a single file or multiple files or folders selected in the tree-view.
3840
This command will bring up a dialog window where you can unselect any files you do not want to commit.
3941

@@ -47,114 +49,170 @@ You then have the following options to commit the message/files:
4749

4850
## Commit All...
4951

52+
`git-menu:commit-all`
53+
5054
Same as [Commit...](#commit) but will list all changed files in the dialog.
5155

5256
## Commit Staged...
5357

58+
`git-menu:commit-staged`
59+
5460
Same as [Commit...](#commit) but will list only staged changes in the dialog.
5561

5662
## Stage Changes
5763

64+
`git-menu:stage-changes`
65+
5866
Stage changes for committing later.
5967

6068
## Add To Last Commit
6169

70+
`git-menu:add-to-last-commit`
71+
6272
This will add the selected files to the last commit.
6373

6474
If you want to change the message of the last commit you will have to choose [Commit...](#commit) or [Commit All...](#commit-all).
6575

6676
## Undo Last Commit
6777

78+
`git-menu:undo-last-commit`
79+
6880
This will undo the last commit but save the changes. Like `git reset --mixed HEAD~1`.
6981

7082
## Discard Changes
7183

84+
`git-menu:discard-changes`
85+
7286
This will discard changes to the selected files.
7387

7488
## Discard All Changes
7589

90+
`git-menu:discard-all-changes`
91+
7692
This will discard changes to the all files in the repo.
7793

7894
## Ignore Changes
7995

96+
`git-menu:ignore-changes`
97+
8098
Update the index with the changed version but don't commit the changes. Like `git update-index --assume-unchanged`.
8199

82100
## Unignore Changes
83101

102+
`git-menu:unignore-changes`
103+
84104
Opposite of [Ignore Changes](#ignore-changes). Like `git update-index --no-assume-unchanged`.
85105

86106
## Stash Changes
87107

108+
`git-menu:stash-changes`
109+
88110
Save changes and checkout last commit.
89111

90112
## Unstash Changes
91113

114+
`git-menu:unstash-changes`
115+
92116
Restore changes from last stash.
93117

94118
## Fetch
95119

120+
`git-menu:fetch`
121+
96122
Fetch from all tracked repos.
97123

98124
## Fetch All
99125

126+
`git-menu:fetch-all`
127+
100128
Fetch all project repos.
101129

102130
## Pull
103131

132+
`git-menu:pull`
133+
104134
Pull from tracked upstream.
105135

106136
## Pull All
107137

138+
`git-menu:pull-all`
139+
108140
Pull all project repos.
109141

110142
## Push
111143

144+
`git-menu:push`
145+
112146
Push to tracked upstream.
113147

114148
## Push All
115149

150+
`git-menu:push-all`
151+
116152
Push all project repos.
117153

118154
## Sync
119155

156+
`git-menu:sync`
157+
120158
Pull then Push.
121159

122160
## Sync All
123161

162+
`git-menu:sync-all`
163+
124164
Pull then Push all project repos.
125165

126-
## Merge Branch
166+
## Merge Branch...
167+
168+
`git-menu:merge-branch`
127169

128170
Merge or rebase a branch.
129171

130-
## Switch Branch
172+
## Switch Branch...
173+
174+
`git-menu:switch-branch`
131175

132176
Checkout a different branch in this repo.
133177

134-
## Create Branch
178+
## Create Branch...
179+
180+
`git-menu:create-branch`
135181

136182
Create a branch and optionally track/create a remote branch.
137183

138-
## Delete Branch
184+
## Delete Branch...
185+
186+
`git-menu:delete-branch`
139187

140188
Delete a local and/or remote branch.
141189

142190
## Initialize
143191

192+
`git-menu:init`
193+
144194
Initialize a git repo for the current project.
145195

146196
## Log
147197

198+
`git-menu:log`
199+
148200
Show the git log.
149201

150202
## Diff
151203

204+
`git-menu:diff`
205+
152206
Open the diff patch in a new editor.
153207

154-
## Run Command
208+
## Run Command...
209+
210+
`git-menu:run-command`
155211

156212
Run any `git` command with selected `%files%` as an argument.
157213

158214
## Refresh
159215

216+
`git-menu:refresh`
217+
160218
Refresh the git status in Atom.

0 commit comments

Comments
 (0)