File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -109,7 +109,7 @@ Here you can specify which editor to start up in the ``editor`` line.
109109| ** Simple operations** | ** Full command** | ** Alias version** |
110110| :--- | :--- | :--- |
111111| Add all files to be tracked | `` git add -A `` | `` g add -A `` |
112- | Add a message to your commit | `` git commit -am "Your message" `` | `` g cma "Your message" `` |
112+ | Add all files and a message to your commit | `` git commit -am "Your message" `` | `` g cma "Your message" `` |
113113| Push your commits to the remote (Origin) | `` git push `` | `` g ps `` |
114114| Push a newly created branch | `` git push -u origin BranchName `` | `` g ps -u origin BranchName `` |
115115| Fetch (peak) the latest changes | `` git fetch `` | `` g ft `` |
@@ -134,4 +134,4 @@ Here you can specify which editor to start up in the ``editor`` line.
134134| Apply hidden changes | `` git stash pop `` | |
135135| Remove all files in .gitignore | `` git clean -dfX `` | `` g if `` (short for "ignored files") |
136136
137- These are all defined in `` ~/.gitconfig `` , and can be changed in there.
137+ These are all defined in `` ~/.gitconfig `` , and can be changed in there.
You can’t perform that action at this time.
0 commit comments