Git's ignore file and delete file operations

Source: Internet
Author: User

1 Deleting a workspace and staging a file
$ git rm A

2 only delete a file that has been staged, a file will not be tracked. Can execute git add a from new add back to staging
$ git rm--cached A

3 git MV operation at work to rename or move the original file, in the temporary delete the original file. Add a new file to the staging
Git mv c a <=> mv a C + git add a C

4 Ignore file. Gitignore
*. [OA] ignores files ending with o,a
*.PYC ignores all pyc suffix files
!test.pyc This file should not be ignored, need to be traced, if itself with! The opening file can be preceded by a "slash escape", for example \!test.pyc

foo/means ignoring a directory
**/res indicates that the res in the top-level directory is matched, and the res in the other subdirectories is matched

Git's ignore file and delete file operations

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.