After a manual update of a directory, a few files are shown as ignored in my development repo. These files or file types are not listed as 'to be ignored'. How can I stop them from being ignored?
Files unexpectedly ignored in git repo - need this behavior to stop
229 views Asked by Xdrone At
1
There are 1 answers
Related Questions in GIT
- problem to push files on a repository git
- diff3 output in git conflict style, including mergeable hunks
- Git Not In Sync with Local Branch
- Setting up the version control of .dotfiles while the .config is connected to a forked repo
- How to fix overriding the main branch in Git?
- I can't add text to "Message" in VS Code when committing to Git
- How can i redirect pull request from main branch to another branch
- Xcode commits (possibly outside of any branch) disappeared, how to get them back?
- Git/TortoiseGit : how to apply ONLY the changes from ONE commit from branch A, to branch B?
- How can I reintroduce username an password on git using fedora?
- GIT SKIP EMPTY DIRECTORIES
- Git smudge run once per checkout or per commit?
- I can't find ~/.profile or ~/.bashrc in C:/Users/<user>/.ssh folder
- Set environment variable during push for GitHub Actions
- Android WebRTC compile
Related Questions in VISUAL-STUDIO-2012
- An error occurred while trying to restore packages: 'Dapper' already has a dependency defined for 'System.Data.SqlClient'
- Getting Error 0x80131509 whenever I try to create a new empty project (using vs2012 as it's what my uni prefers)
- Visual Basic Supports
- Open Visual Studio 2012 solution in Visual Studio 2013
- Gif is Slow in Visual Studio C# Winform Application?
- The type initializer for 'Sybase.Data.AseClient1.AseConnection' threw an exception. SSIS - Sybase
- Is there a way to fix broken syntax highlighting in Visual Studio 2012?
- Visual Studio Ultimate
- Can __uuidof be used as a C-string const?
- How to connect MS Access database to Visual Basic
- Cannot drag and drop items from toolbox in Visual studio
- Invalid operation. Could not find default endpoint element
- I keep on receiving a "bash permission denied" notification every time I try to execute a program on VS Code
- Wix Toolset v4 Shortcut & installation directory per login user
- Migrating from VS2012: Opening in VS2022 does not prompt for upgrade
Related Questions in GIT-GUI
- How do I prevent the "Untrusted server" dialogue pop-up in Git GUI?
- how to let gui git accept multiple file selection to work with a custom tool?
- No such file or directory found - git bash
- Git GUI - Branching misunderstanding
- Git-Gui / Gitk Broken interface cause crash on kde plasma wayland
- How do I switch branches in Git Gui?
- Unstage/revert single lines with Git GUI
- Git GUI fails to identify bare repository while TortoiseGit succeeds
- Git Gui on Windows: couldn't open ".git/PREPARE_COMMIT_MSG": permission denied
- How do i push my microservice folders to Github as one repository
- Sourcetree commit description
- Remove commentary from git commit using git gui
- git-gui malfunction: can not create a directory or clone one
- Place a Visual Studio project in a git repository and add a remote (bare?) origin on networkdrive
- Windows git bash: git clone https://github.com/... results with fatal: working tree ... already exists
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
I think what you are saying is that there are some files that are unexpectedly ignored and you'd like that to stop.
Ignores can be setup in a few places. From a global level,
core.excludesfilecan be set to point to a file containing a list of ignores. The default points to$XDG_CONFIG_HOME/git/ignoreor$HOME/.config/git/ignore, ifXDG_CONFIG_HOMEis not set--and it's probably not if you're running Windows.core.excludesfilescan also be set at a repository-level, and ignores can also be set in.git/info/exclude. You should see the pattern you want in one of those locations and remove it.