Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit d01d8a4

Browse files
authored
Do some spelling correction
1 parent da06f81 commit d01d8a4

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

_posts/git/2019-12-20-basic-git-commads.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ $
3838

3939
You are hitting `git init` means you want to initialize the current directory as GIT repository.
4040

41-
The following gif files show initializing a new repository and a hidden subfolder containing all data structure required for version control.
41+
The following GIF 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

@@ -65,7 +65,7 @@ $
6565

6666
You can clone any public repository from the platforms like GitHub, BitBucket, GitLab, and other GIT hosting platforms.
6767

68-
The followig gif shows the `git clone` command
68+
The following 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

9696
Staging your changes first and then taking snapshot gives you complete control over the repository's history.
9797

98-
The followig gif shows the `git add` command
98+
The following 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

113113
If you are committing a new feature to your project then your commit message should be `"Add <feature-name> feature"`.
114114

115-
The followig gif shows the `git commit` command
115+
The following 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-
The followig gif shows the `git status` command
145+
The following 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
158158
HP@Gaurav MINGW64 /e/directory/example (master)
159159
$
160160
```
161-
The followig gif shows the `git branch` command
161+
The following 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

190190
This 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-
The followig gif shows the `git pull` command
192+
The following 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 a brach
198+
`git push` updates the remote repository with any commits made locally to a branch
199199

200200
```
201201
$ git push origin <branch-name-you-have made commits on>
@@ -222,15 +222,15 @@ To https://github.com/gauravkukade/example.git
222222
HP@Gaurav MINGW64 /e/directory/example (master)
223223
$
224224
```
225-
The followig gif shows the `git push` command
225+
The following 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

229229
You 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 branch loacally using the following command
233+
You can create a new branch locally using the following command
234234
```
235235
$ git checkout -b <your-new-branch-name>
236236

0 commit comments

Comments
 (0)