GitHub allows to rename your repos. I really like this solution.
Install curl if you haven’t and use terminal (or cygwin under windows):
Install curl if you haven’t and use terminal (or cygwin under windows):
user=MyUserName
pass=MyPassword
newName='{"name": "NewNameForRepo"}'
oldName="MyRepo"
curl -u "$user:$pass" -X PATCH -d "$newName" https://api.github.com/repos/$user/$oldName
Комментариев нет:
Отправить комментарий