Пакет git-update-index-keeping-only: Информация

    Исходный пакет: git-update-index-keeping-only
    Версия: 0.3-alt1
    Собран:  4 июня 2019 г. 8:05
    Сообщить об ошибке в пакете
    Лицензия: GPLv2+
    О пакете: rm all but matching files from Git index. (Helps git-filter-branch.)
    Описание: 
    git-update-index-keeping-only
    - A simple executable script that removes all but matching files from
      Git index. It is a useful helper for git-filter-branch --index-filter
      (for convenience, git-filter-only-files script is included). It is
      implemented on top of git-rm. It takes the list of files to keep on stdin.
    
    git-filter-only-files OLD_COMMIT NEW_BRANCH
    - A wrapper around git-filter-branch to rewrite history so that only
      some specified files are kept.
    
    git-ls-paths-modified-since SINCE CURRENT_COMMIT
    - A helper to list the files modified or added in the diff between
      2 commits (SINCE and CURRENT_COMMIT).
    
    Example of usage:
    
    FILES="$(git-ls-paths-modified-since SINCE)"
    export FILES
    git filter-branch \
       --index-filter 'echo "$FILES" | git-update-index-keeping-only -q'
    
    or simply:
    
    git-ls-paths-modified-since SINCE | git-filter-only-files HEAD NEW_BRANCH

    Список rpm-пакетов, предоставляемых данным srpm-пакетом:
    git-update-index-keeping-only (noarch)

    Сопровождающий: Ivan Zakharyaschev

    Список участников:
    Ivan Zakharyaschev

      1. /bin/bash4
      2. rpm-build-licenses

    Последнее изменение


    25 июня 2017 г. Ivan Zakharyaschev 0.3-alt1
    - Split into more scripts which are individually useful:
      git-filter-only-files (to be combined with other criteria for
      selecting files), git-ls-paths-modified-since.
    - git filter-branch --prune-empty won't hurt us usually.
    - git-update-index-keeping-only fixed in some corner cases
      (how a file list is passed through xargs).
    22 декабря 2016 г. Ivan Zakharyaschev 0.2-alt1
    - git-update-index-keeping-only:
      correct work relative to the current (not toplevel) dir.
    - git-filter-only-files-modified-since:
      made independent of the current workdir.
    20 декабря 2016 г. Ivan Zakharyaschev 0.1-alt1
    - initial build for ALT Linux Sisyphus.