.gitignore file in Sourcetree not working

前端 未结 8 1347
走了就别回头了
走了就别回头了 2021-01-30 01:23

I am working on a maven project and I want to ignore the files generated and stored in the /target folder of my project (Evaluation) root folder.In the root of my git repository

8条回答
  •  别那么骄傲
    2021-01-30 02:02

    Because there is the Sourcetree tag in the question I will answer you how to do this with Sourcetree, it's really simple.

    As said before you first have to remove the file from tracking and then make Sourcetree to ignore the file.

    1. Change something in the file so that it is shown to you or select it from the "file status" tab at the bottom of the open repository.
    2. Right click on the file and you see "Ignore...", but it is grayed out because as said above its already in track.
    3. Right click on the file and chose "Stop Tracking"
    4. The file will be shown with a red button which indicates it will be removed (from tracking)
    5. A new entry of the same file will be shown in "file status" with a blue question mark indicates a new file (new because you said remove from tracking in 4)
    6. Right click on the file from 5 and now you see the "Ignore..." is able to choose. Click on it and Sourcetree will put a new entry for the file in the .gitignore file
    7. You can see the .gitignore file if you click on "Setting" on the top right, choose "advanced" and then the first entry is about the ignore file, click on "edit" and it will be open.

提交回复
热议问题