vscode에서 ftp-simple을 사용하여 코드 수정시 Permission Denied가 뜰때
$ chown -R root:root (디렉토리 이름)
$ chmod -R 777 (디렉토리 이름)
ubuntu에서 깃허브로 올리는 순서
$ sudo git init
$ git status
$ sudo git add -A : 모든 파일 추가
$ sudo git commit
$ sudo git commit -m "커밋 메세지 작성"
$ sudo git push origin +master(또는 main)
$ sudo git pull(저장소 업데이트)
$ git log
error: Your local changes to the following files would be overwritten by merge: 와 같은 에러 발생시
$ git stash
$ sudo git pull(저장소 업데이트)