$ mv [old_folder] [new_folder]
$ ls
abc bbb.txt
$ mv abc xyz
$ ls
xyz bbb.txt
$ export GIT_SSL_NO_VERIFY=1
또는 전역으로 저장하고 싶으면
$ git config --global http.sslverify false
$ git config --global user.email "aaa@gmail.com"
$ git config --global user.name "aaa"
# default 15분
$ git config --global credential.helper cache
# 시간 직접 설정
$ git config --global credential.helper 'cache --timout=300'
$ git add [파일명1] [파일명2] [파일명3]
$ git rm -r --cached [committed_file or folder]
$ git add .
$ git commit -m "Applying gitignore"
$ git push