We konden deze vermelding niet vinden. Er worden benaderende resultaten weergegeven. Controleer je spelling of stel voor deze term aan het woordenboek toe te voegen.
git filter-branch
You can use git filter-branch to remove the identifier strings en masse
Puede usar git filter-branch para eliminar las cadenas de identificador en masa
If you did actually want to remove a file from history, git filter-branch is the hacksaw you're looking for.
Dicho esto, si realmente quieres eliminar un archivo de la historia del repositorio, git filter-branch es la instrucción que estás buscando.
It runs much faster and more efficiently than git filter-branch, and has interesting features that significantly simplify work when making changes to the history of a repository.
Se ejecuta de forma mucho más rápida y eficiente que git filter-branch, y cuenta con interesantes funcionalidades que simplifican notablemente el trabajo a la hora de realizar modificaciones en el historial de un repositorio.
If you want to remove all accidentally committed editor backup files, you can run something like git filter-branch - tree-filter 'rm -f ~' HEAD.
Otro ejemplo: si se desean eliminar todos los archivos de respaldo del editor que han sido almacenados por error, se podría lanzar algo así como git filter-branch - tree-filter "find -type f -name ' ~' -delete" HEAD.
The only other differing use of git rm in the book is in Removing Objects where we briefly use and explain the - ignore-unmatch when running git filter-branch, which simply makes it not error out when the file we are trying to remove doesn't exist.
El único otro uso diferente de git rm en el libro está en Borrando objetos, donde utilizamos brevemente y explicamos el - ignore-unmatch al ejecutar git filter-branch, el cual simplemente hace que no salga un error cuando el archivo que estamos tratando de eliminar no existe.
To solve this problem you can use git rebase with the - root option or git filter-branch with the - tree-filter option.
Para solucionar este problema puede usar el comando git rebase con la opción - root o el comando git filter-branch con la opción - tree-filter.
Potentieel gevoelige of ongepaste informatie
Er worden alleen voorbeelden gegeven om u te helpen het woord of de woordcombinatie waarop u hebt gezocht, te vertalen. Deze worden niet door ons geselecteerd of gevalideerd en kunnen ongepaste taal bevatten. Wij vragen u melding te maken van voorbeelden die dienen te worden aangepast of verwijderd. Vertalingen met grof of informeel taalgebruik worden meestal rood of oranje gemarkeerd.