3838
3939You are hitting` git init ` means you want to initialize the current directory as GIT repository.
4040
41- The followinggif files show initializing a new repository and a hidden subfolder containing all data structure required for version control.
41+ The followingGIF show initializing a new repository and a hidden subfolder containing all data structure required for version control.
4242
4343![ GIF showing git init command] ( /assets/images/2019-12-20-basic-git-commands/git-init.gif )
4444
6565
6666You can clone any public repository from the platforms like GitHub, BitBucket, GitLab, and other GIT hosting platforms.
6767
68- Thefollowig gif shows the` git clone ` command
68+ Thefollowing GIF shows the` git clone ` command
6969
7070![ GIF showing git clone command] ( /assets/images/2019-12-20-basic-git-commands/git-clone.gif )
7171
@@ -95,7 +95,7 @@ You can stage and take a snapshot of the current changes in a single command als
9595
9696Staging your changes first and then taking snapshot gives you complete control over the repository's history.
9797
98- Thefollowig gif shows the` git add ` command
98+ Thefollowing GIF shows the` git add ` command
9999
100100![ GIF showing git add command] ( /assets/images/2019-12-20-basic-git-commands/git-add.gif )
101101
@@ -112,7 +112,7 @@ You can write a meaningful message to the commit. It is recommended to write a c
112112
113113If you are committing a new feature to your project then your commit message should be` "Add <feature-name> feature" ` .
114114
115- Thefollowig gif shows the` git commit ` command
115+ Thefollowing GIF shows the` git commit ` command
116116
117117![ GIF showing git commit command] ( /assets/images/2019-12-20-basic-git-commands/git-commit.gif )
118118
@@ -142,7 +142,7 @@ HP@Gaurav MINGW64 /e/directory/example (master)
142142$
143143
144144```
145- Thefollowig gif shows the` git status ` command
145+ Thefollowing GIF shows the` git status ` command
146146
147147![ GIF showing git status command] ( /assets/images/2019-12-20-basic-git-commands/git-status.gif )
148148
@@ -158,7 +158,7 @@ $ git branch
158158HP@Gaurav MINGW64 /e/directory/example (master)
159159$
160160```
161- Thefollowig gif shows the` git branch ` command
161+ Thefollowing GIF shows the` git branch ` command
162162
163163![ GIF showing git branch command] ( /assets/images/2019-12-20-basic-git-commands/git-branch.gif )
164164
@@ -189,13 +189,13 @@ If your teammate made commits to the remote branch and you want to reflect these
189189
190190This command will check if there are any updates on the remote branch as compared to your local environment, if yes, then it will update your local environment with these changes. If no, then it will do nothing.
191191
192- Thefollowig gif shows the` git pull ` command
192+ Thefollowing GIF shows the` git pull ` command
193193
194194![ GIF showing git pull command] ( /assets/images/2019-12-20-basic-git-commands/git-pull.gif )
195195
196196##8.` git push `
197197
198- ` git push ` updates the remote repository with any commits made locally to abrach
198+ ` git push ` updates the remote repository with any commits made locally to abranch
199199
200200```
201201$ git push origin <branch-name-you-have made commits on>
@@ -222,15 +222,15 @@ To https://github.com/gauravkukade/example.git
222222HP@Gaurav MINGW64 /e/directory/example (master)
223223$
224224```
225- Thefollowig gif shows the` git push ` command
225+ Thefollowing GIF shows the` git push ` command
226226
227227![ GIF showing git push command] ( /assets/images/2019-12-20-basic-git-commands/git-push.gif )
228228
229229You are here means you like the post and hence here is your bonus content.
230230
231231###How to create a new branch locally
232232
233- You can create a new branchloacally using the following command
233+ You can create a new branchlocally using the following command
234234```
235235$ git checkout -b <your-new-branch-name>
236236