-
Install Discord.
-
Open Terminal.
-
Copy-paste and execute one of the below methods (enter password if prompted).
Method - 1:
| 1) Create a branch with the tag | |
| git branch {tagname}-branch {tagname} | |
| git checkout {tagname}-branch | |
| 2) Include the fix manually if it's just a change .... | |
| git add . | |
| git ci -m "Fix included" | |
| or cherry-pick the commit, whatever is easier | |
| git cherry-pick {num_commit} | |
| Get-ChildItem -Path . -filter *.flac | ForEach-Object -Process {[System.IO.Path]::GetFileNameWithoutExtension($_)} | ForEach-Object -Process {ffmpeg -i "$($_).flac" -acodec alac -vn "$($_).m4a"} |