#Create README via cmd onto local repository
$ touch README.md
$ git add README.md
$ git commit -m "your commit message"
$ git push
@echo off
for /D %%D in ("C:directory_with_files_you_want_to_compress*") do "%ProgramFiles(x86)%WinRARRar.exe" a -cfg- -ep -idq -m0 -x*.rar -v100m "C:where_you_want_to_save_new_rar_files\%%~nxD.rar" "%%~fD" "C:directory_with_readme.txt
eadme.txt" && rd /Q /S "%%~fD" || echo/ && pause