Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 6e03b83

Browse files
Update README.md
1 parent b3526f2 commit 6e03b83

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

‎README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -103,20 +103,20 @@ Though there are 1000’s of articles about git, I have written this article is
103103
$ git fetch --all
104104

105105

106-
10.### Workspace synchronization from Repository (Workspace <-- Repository)
106+
10.### Workspace synchronization from Repository (Workspace <-- Repository)
107107

108108
# merge the specified branch to the current branch.
109109
$ git merge [branch]
110110

111111
# merge a branch into a target branch
112112
$ git merge [source branch] [target branch]
113113

114-
11.### Workspace synchronization from remote (Workspace <-- Repository <-- Remote)
114+
11.### Workspace synchronization from remote (Workspace <-- Repository <-- Remote)
115115

116116
# Retrieve the changes to the Remote Repository and merge with the local branch (fetch+merge)
117117
$ git pull origin [branch]
118118

119-
12.### Branching
119+
12.### Branching
120120

121121
# List all local branches. (the asterisk denotes the current branch)
122122
$ git branch
@@ -146,7 +146,7 @@ Though there are 1000’s of articles about git, I have written this article is
146146
$ git push origin --delete [branch-name]
147147
$ git branch -dr [remote/branch]
148148

149-
13.### View Information
149+
13.### View Information
150150

151151
# Display the changed files.
152152
$ git status
@@ -163,7 +163,7 @@ Though there are 1000’s of articles about git, I have written this article is
163163
# Show the latest commits of the current branch.
164164
$ git reflog
165165

166-
13.### Ignore files and folder
166+
13.### Ignore files and folder
167167

168168
# Delete the files in the Workspace and put this deletion into the Staging.
169169
$ git rm [file1] [file2] ...
@@ -172,7 +172,7 @@ Though there are 1000’s of articles about git, I have written this article is
172172
# Stop tracking the specified file, but the file will be remained in the Workspace.
173173
$ git rm --cached [file]
174174

175-
14.### Tag
175+
14.### Tag
176176

177177
# List all tags.
178178
$ git tag
@@ -249,9 +249,9 @@ Though there are 1000’s of articles about git, I have written this article is
249249

250250
I have followed many articles but among them, the following articles are really helpful. Those articles helped me a lot and also encourage me to write this article according to my understanding.
251251

252-
* [The-official-Git-site](https://git-scm.com/book/en/v2)
253-
* [git-most-frequently-used-commands](https://medium.com/analytics-vidhya/git-most-frequently-used-commands-9df9f200c235)
254-
* [atlassian](https://confluence.atlassian.com/bitbucketserver/basic-git-commands-776639767.html)
255-
* [ercankaracelik](https://ercankaracelik.wordpress.com/2018/12/08/basic-git-commands/)
252+
* [The-official-Git-site](https://git-scm.com/book/en/v2)
253+
* [Atlassian](https://confluence.atlassian.com/bitbucketserver/basic-git-commands-776639767.html)
254+
* [Git-most-frequently-used-commands](https://medium.com/analytics-vidhya/git-most-frequently-used-commands-9df9f200c235)
255+
* [Ercankaracelik](https://ercankaracelik.wordpress.com/2018/12/08/basic-git-commands/)
256256
* [tutorialdocs](hhttps://www.tutorialdocs.com/article/git-basic-command-list.html)
257257

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /