Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

add readme cmd

#Create README via cmd onto local repository

$ touch README.md 
$ git add README.md 
$ git commit -m "your commit message" 
$ git push 
Comment

add readme cmd


@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

Comment

PREVIOUS NEXT
Code Example
Python :: how to change int to four decimal places in python 
Python :: SciPy Convex Hull 
Python :: pandas sort dataframe by index 
Python :: create a virtualenv python3 
Python :: python count same number in list 
Python :: how to make a leaderboard in python 
Python :: translate french to english 
Python :: to string python 
Python :: binary gap python 
Python :: create new python environment check 
Python :: series.string.split expand 
Python :: python delete all occurrences from list 
Python :: how to make a dict from a file py 
Python :: how to run shell command ctrl + c in python script 
Python :: how to merge two variables to get an array in python 
Python :: python cv2 write to video 
Python :: sentence similarity python 
Python :: queryset to list python 
Python :: pandas count 
Python :: global in python 
Python :: python binary search 
Python :: How to track hands python opencv/mediapipe 
Python :: fill a column based on values in another column pandas 
Python :: ip validity checker python 
Python :: read part of file pandas 
Python :: opencv black white image 
Python :: python remove consecutive duplicates 
Python :: set python 3 as default mac 
Python :: how to create a virtual environment in python 
Python :: is vs == python 
ADD CONTENT
Topic
Content
Source link
Name
3+4 =