File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ git status
3636
git add .
3737

3838
# commit the tracked files of the staging area
39-
git commit -m "commit msg"
39+
git commit -m "commit-msg"
4040

4141
# push all the changes to the
4242
git push -u origin master
@@ -92,7 +92,7 @@ git fetch upstream
9292
# STEP #4: merging the new changes from the original repo to your forked local repo
9393
git merge upstream/master
9494

95-
# STEP #5: pushing the new changes of forked local repo to the
95+
# STEP #5: pushing the new changes of the forked local repo to the
9696
git push origin master
9797

9898
```
@@ -103,7 +103,7 @@ git push origin master
103103

104104
## Workflows
105105

106-
Open your `.zshrc` or `.bashrc` file. It is located in your root directory. Paste the following shell code there.
106+
Open your `.zshrc` or `.bashrc` file. It is located in your root directory. Paste the following shellcode there.
107107

108108
```sh
109109

@@ -176,7 +176,7 @@ gc [branch_name]
176176
gbp [branch_name]
177177

178178
# To add, commit and push changes to the
179-
gacp "commit msg"
179+
gacp "commit-msg"
180180

181181
```
182182

0 commit comments

Comments
 (0)