mirror of
https://github.com/m-lamonaca/dev-notes.git
synced 2025-04-05 18:36:41 +00:00
git: add git add --update
notes
This commit is contained in:
parent
3f955928da
commit
74342ea684
1 changed files with 3 additions and 2 deletions
|
@ -98,8 +98,9 @@ def load_reference(name_or_id):
|
|||
### Making Changes
|
||||
|
||||
`git status`: shows the status of changes as untracked, modified, or staged
|
||||
`git add <filename1 filename2 ...>`: add files to the staging area
|
||||
`git add -p|--patch <files>`: interactively stage chunks of a file
|
||||
`git add <files>`: add files contents to the staging area
|
||||
`git add -u|--update <files>`: stage changes but ignore untracked files
|
||||
`git add -p|--patch <files>`: interactively stage chunks of files
|
||||
|
||||
`git blame <file>`: show who last edited which line
|
||||
`git blame -L <start>,<end> -- <file>`: Annotate only the line range given by `<start>,<end>`, within the `<file>`
|
||||
|
|
Loading…
Add table
Reference in a new issue