Yahoo France Recherche Web

Résultats de recherche

  1. 17 déc. 2013 · 12. According to the official Git documentation, in the section on Stashing, a dirty state is defined as ... the dirty state of your working directory — that is, your modified tracked files and staged changes. From this definition, files staged for commit are dirty as well.

  2. 1. It means the same as with a non-submodule: "dirty" means the index differs from HEAD and/or the work-tree differs from the index. Each submodule is its own repository, so to test if a submodule is dirty, "cd" into the submodule and test whether the repository is dirty. – torek. Jan 11, 2017 at 17:02.

  3. 16 avr. 2013 · % git describe --tags --dirty v1.0.0 % touch pom.xml % git describe --tags --dirty v1.0.0-dirty % git status # On branch dev nothing to commit (working directory clean) % git describe --tags --dirty v1.0.0 Here running "git status" updates the index as a side effect and fixes "git describe" output, just as with your workaround. The proper ...

  4. 16 juin 2014 · Git diff reports a submodule directory as -dirty even when there are only untracked files in the submodule directory. This is inconsistent with what git describe --dirty (man) says when run in the submodule directory in that state. Make --ignore-submodules=untracked the default for git diff (man) when there is no configuration variable or ...

  5. 18 juin 2014 · The index is the place in git where you register the changes you want to include in your next commit (via git add). If you have no changes recorded on your index at all, the index is considered clean, but if there are files added to the index, the index is considered dirty. The same applys to your working tree (the checked out files from your ...

  6. 17 avr. 2010 · For “untracked” (will include ignored files, if present): git ls-files --others. For “untracked and unignored”: git ls-files --exclude-standard --others. My first thought is to just check whether these commands have output: test -z "$(git ls-files --others)" If it exits with 0 then there are no untracked files.

  7. 6 janv. 2020 · Go to your postgres console and find out the details in the Schema_Migrations table. If you see Dirty=true then you have found your root cause, you just need to update the same by running an update query. Have a look at the below commands. select * from schema_migrations; update schema_migrations set dirty =false where version=XXXX;

  8. This method can be called to remove the 'ng-dirty' class and set the form to its pristine state (ng-pristine class). This method will also propagate to all the controls contained in this form. Setting a form back to a pristine state is often useful when we want to 'reuse' a form after saving or resetting it.

  9. 15 avr. 2012 · 21. Having dirty pages is normal when there are changes (UPDATE/INSERT/DELETE) to the database. When you change a row, MySQL updates it in the buffer pool, marking the page as “dirty”. The change is written in the binary log as well, so in case of crash, MySQL will replay the log and data won't be lost. Writting to the binary log is a fast ...

  10. 22 mars 2015 · vm.dirty_background_ratio is the percentage of system memory which when dirty, causes the system to start writing data to the disk. vm.dirty_ratio is the percentage of system memory which when dirty, causes the process doing writes to block and write out dirty pages to the disk. These tunable depend on what your system is running; if you run a ...

  1. Recherches associées