Add Interactive staging

This commit is contained in:
Aditya Harsh 2016-06-22 15:25:18 +05:30
parent 699b36eedf
commit f9c84b6c61
2 changed files with 9 additions and 0 deletions

View File

@ -93,6 +93,7 @@ P.S: All these commands are tested on `git version 2.7.4 (Apple Git-66)`.
* [Marks your commit as a fix of a previous commit.](#marks-your-commit-as-a-fix-of-a-previous-commit)
* [squash fixup commits normal commits.](#squash-fixup-commits-normal-commits)
* [skip staging area during commit.](#skip-staging-area-during-commit)
* [Interactive staging.](#interactive-staging)
* [List ignored files.](#list-ignored-files)
* [Status of ignored files.](#status-of-ignored-files)
* [Commits in Branch1 that are not in Branch2](#commits-in-branch1-that-are-not-in-branch2)
@ -688,6 +689,11 @@ git rebase -i --autosquash
git commit -am <commit message>
```
## Interactive staging.
```sh
git add -i
```
## List ignored files.
```sh
git check-ignore *

View File

@ -282,6 +282,9 @@
}, {
"title": "skip staging area during commit.",
"tip": "git commit -am <commit message>"
}, {
"title": "Interactive staging.",
"tip": "git add -i"
}, {
"title": "List ignored files.",
"tip": "git check-ignore *"