- To ignore changes of tracked
file
git update-index --assume-unchanged <file>
- To start tracking changes of
fileagain:
git update-index --no-assume-unchanged
| #!/bin/bash | |
| # Taken from: https://red-full-moon.com/make-hevc-qsv-env-first-half/ | |
| # 環境の最新化 | |
| sudo apt update | |
| sudo apt dist-upgrade | |
| # 必要パッケージのインストール | |
| sudo apt install cmake make autoconf automake libtool g++ bison libpcre3-dev pkg-config libtool libdrm-dev xorg xorg-dev openbox libx11-dev libgl1-mesa-glx libgl1-mesa-dev libpciaccess-dev libfdk-aac-dev libvorbis-dev libvpx-dev libx264-dev libx265-dev ocl-icd-opencl-dev pkg-config yasm libx11-xcb-dev libxcb-dri3-dev libxcb-present-dev libva-dev libmfx-dev intel-media-va-driver-non-free opencl-clhpp-headers | |
| # libvaのインストール |
| #!/bin/env python3 | |
| # Script By Mushfiqur Rahman Abir | |
| import h5py | |
| import sys | |
| def print_h5_data(file): | |
| """Recursively print all groups and datasets in an HDF5 file""" | |
| for name in file: | |
| obj = file[name] |
| ## Configuration file for CAVA. Default values are commented out. Use either ';' or '#' for commenting. | |
| [general] | |
| # Smoothing mode. Can be 'normal', 'scientific' or 'waves'. DEPRECATED as of 0.6.0 | |
| ; mode = normal | |
| # Accepts only non-negative values. | |
| framerate = 60 |
| # Writen By: Mushfiqur Rahman Abir | |
| # Year: 2023 | |
| Get-ChildItem -Directory | ForEach-Object { | |
| Write-Host "`n■ Getting latest for $($_.FullName) ↓" -ForegroundColor Green | |
| git -C $_.FullName pull --all --recurse-submodules --verbose | |
| } |