6
6
- [ Commit All...] ( #commit-all )
7
7
- [ Commit Staged...] ( #commit-staged )
8
8
- [ Stage Changes] ( #stage-changes )
9
+ - [ Add To Last Commit] ( #add-to-last-commit )
10
+ - [ Undo Last Commit] ( #undo-last-commit )
9
11
- [ Discard Changes] ( #discard-changes )
10
12
- [ Discard All Changes] ( #discard-all-changes )
11
13
- [ Ignore Changes] ( #ignore-changes )
12
14
- [ Unignore Changes] ( #unignore-changes )
13
15
- [ Stash Changes] ( #stash-changes )
14
16
- [ Unstash Changes] ( #unstash-changes )
15
- - [ Add To Last Commit] ( #add-to-last-commit )
16
- - [ Undo Last Commit] ( #undo-last-commit )
17
- - [ Switch Branch] ( #switch-branch )
18
- - [ Create Branch] ( #create-branch )
19
- - [ Merge Branch] ( #merge-branch )
17
+ - [ Fetch] ( #fetch )
18
+ - [ Fetch All] ( #fetch-all )
20
19
- [ Pull] ( #pull )
20
+ - [ Pull All] ( #pull-all )
21
21
- [ Push] ( #push )
22
+ - [ Push All] ( #push-all )
22
23
- [ Sync] ( #sync )
24
+ - [ Sync All] ( #sync-all )
25
+ - [ Merge Branch] ( #merge-branch )
26
+ - [ Switch Branch] ( #switch-branch )
27
+ - [ Create Branch] ( #create-branch )
28
+ - [ Delete Branch] ( #delete-branch )
23
29
- [ Initialize] ( #initialize )
24
- - [ Refresh] ( #refresh )
25
- - [ Fetch] ( #fetch )
26
- - [ Run Command] ( #run-command )
27
30
- [ Log] ( #log )
28
31
- [ Diff] ( #diff )
32
+ - [ Run Command] ( #run-command )
33
+ - [ Refresh] ( #refresh )
29
34
30
35
## Commit...
31
36
@@ -52,6 +57,16 @@ Same as [Commit...](#commit) but will list only staged changes in the dialog.
52
57
53
58
Stage changes for committing later.
54
59
60
+ ## Add To Last Commit
61
+
62
+ This will add the selected files to the last commit.
63
+
64
+ If you want to change the message of the last commit you will have to choose [ Commit...] ( #commit ) or [ Commit All...] ( #commit-all ) .
65
+
66
+ ## Undo Last Commit
67
+
68
+ This will undo the last commit but save the changes. Like ` git reset --mixed HEAD~1 ` .
69
+
55
70
## Discard Changes
56
71
57
72
This will discard changes to the selected files.
@@ -76,55 +91,57 @@ Save changes and checkout last commit.
76
91
77
92
Restore changes from last stash.
78
93
79
- ## Add To Last Commit
94
+ ## Fetch
80
95
81
- This will add the selected files to the last commit .
96
+ Fetch from all tracked repos .
82
97
83
- If you want to change the message of the last commit you will have to choose [ Commit... ] ( #commit ) or [ Commit All... ] ( #commit-all ) .
98
+ ## Fetch All
84
99
85
- ## Undo Last Commit
100
+ Fetch all project repos.
86
101
87
- This will undo the last commit but save the changes. Like ` git reset --mixed HEAD~1 ` .
102
+ ## Pull
88
103
89
- ## Switch Branch
104
+ Pull from tracked upstream.
90
105
91
- Checkout a different branch in this repo.
106
+ ## Pull All
92
107
93
- ## Create Branch
108
+ Pull all project repos.
94
109
95
- Create a branch and optionally track/create a remote branch.
110
+ ## Push
96
111
97
- ## Merge Branch
112
+ Push to tracked upstream.
98
113
99
- Merge or rebase a branch.
114
+ ## Push All
100
115
101
- ## Pull
116
+ Push all project repos.
102
117
103
- Pull from tracked upstream.
118
+ ## Sync
104
119
105
- ## Push
120
+ Pull then Push.
106
121
107
- Push to tracked upstream.
122
+ ## Sync All
108
123
109
- ## Sync
124
+ Pull then Push all project repos.
110
125
111
- Pull then Push.
126
+ ## Merge Branch
112
127
113
- ## Initialize
128
+ Merge or rebase a branch.
114
129
115
- Initialize a git repo for the current project.
130
+ ## Switch Branch
116
131
117
- ## Refresh
132
+ Checkout a different branch in this repo.
118
133
119
- Refresh the git status in Atom.
134
+ ## Create Branch
120
135
121
- ## Fetch
136
+ Create a branch and optionally track/create a remote branch.
122
137
123
- Fetch from all tracked repos.
138
+ ## Delete Branch
124
139
125
- ## Run Command
140
+ Delete a local and/or remote branch.
126
141
127
- Run any ` git ` command with selected ` %files% ` as an argument.
142
+ ## Initialize
143
+
144
+ Initialize a git repo for the current project.
128
145
129
146
## Log
130
147
@@ -133,3 +150,11 @@ Show the git log.
133
150
## Diff
134
151
135
152
Open the diff patch in a new editor.
153
+
154
+ ## Run Command
155
+
156
+ Run any ` git ` command with selected ` %files% ` as an argument.
157
+
158
+ ## Refresh
159
+
160
+ Refresh the git status in Atom.
0 commit comments