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 7afeb8b

Browse files
author
Saiful
committed
readme update
1 parent a0fff63 commit 7afeb8b

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

‎README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ Though there are 1000’s of articles about git, I have written this article is
214214
# All changes of the latter will be offset by the former and applied to the current branch.
215215
$ git revert [commit]
216216

217-
### Removing files
217+
### Removing files from remote (Workspace --> Staging --> Repository --> Remote)
218218
219219
# Removes files from Stagging and your working directory
220220
# Start untracking a previously tracked file
@@ -223,6 +223,14 @@ Though there are 1000’s of articles about git, I have written this article is
223223
# Removes files from Stagging but the file will be remained in the Workspace.
224224
# Start untracking a previously tracked file
225225
$ git rm --cached [file]
226+
227+
### Removing files manual process (Workspace --> Staging --> Repository --> Remote)
228+
229+
# Manually delete the file from Workspace
230+
# The following command will permanently remove the file
231+
$ git add .
232+
$ git commit -m "message"
233+
$ git pull origin [branch]
226234
227235
### Stash
228236

0 commit comments

Comments
(0)

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