We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e77994 commit 0cdf33dCopy full SHA for 0cdf33d
README.md
@@ -35,7 +35,16 @@ This will set information to all repositories from your computer.
35
`git add "path/to/file.html"` (Individual file)
36
`git add .` (All files)"
37
38
-###Commit files in stage area
+###Remove changes from stage area (And keep it as untracked)
39
+`git reset HEAD "path/to/file.html"` (Individual file)
40
+`git reset HEAD .` (All files)
41
+
42
+###Remove changes from stage area (And discard it)
43
+`git reset --hard HEAD "path/to/file.html"` (Individual file)
44
+`git reset --hard HEAD .` (All files)
45
46
47
+###Commit changes in stage area
48
`git commit -m "A nice message about your commit"`
49
50
###Pull things to remote repo
0 commit comments