How to submit the working file to the Git temporary storage area
This article mainly explains "how to submit working papers to the Git temporary storage area". Interested friends may wish to have a look at it. The method introduced in this paper is simple, fast and practical. Let's let the editor take you to learn "how to submit a working file to the Git temporary storage area".
Staging area (Stage or Index)
Git add submits the working document to the temporary storage area
$git add hello.txt$ git statusOn branch masterNo commits yetChanges to be committed: (use "git rm-- cached." To unstage) new file: hello.txt file difference comparison
Git diff compares the differences between workspaces and staging areas
Git diffdiff-- git a/README.md b/README.mdindex 57edfa4..2ca7848 100644 Mustang-a test git+git note README.mdcards @-1 + 1 @ @-Redme
Git diff-cached compares the differences between temporary storage areas and version libraries
Git diff-- cacheddiff-- git a/README.md b/README.mdindex 9daeafb..57edfa4 100644 Muhammad-a test+test gitgit rm test+test gitgit rm README.mdcards @-1 + 1 @ @
Delete the file tracked by the cache
Git rm readmerm 'readme'baxiangdeMacBook:gitDemo baxiang$ git status is located in the branch master to submit changes: (use "git reset HEAD..." to cancel temporary storage) Delete: readme so far, I believe you have a deeper understanding of "how to submit working files to the Git temporary storage area". You might as well do it in practice! here is the website, more related content can enter the relevant channels to query, follow us, continue to learn!