[Flutter] Unable to boot the Simulator.
·
Flutter
* Android Studio에서 iOS simulator가 실행이 안되고 Unable to boot the Simulator. 오류 문구 발견!* 해결 방법 - X-code cache를 삭제한다 1. 왼쪽 상단에 사과를 누르고 이 mac에 관하여를 클릭한다. 2. 정보 -> 저장공간 -> 개발자 클릭한다. 3. X-code 캐시, 프로젝트 빌드 데이터 및 인덱스 삭제한다.(X-code와 관련한 것 모두 삭제)* 해결 완료! Referenceshttps://includecoding.tistory.com/284
[Flutter] CocoaPods not installed.
·
Flutter
* flutter doctor을 실행하고 오류가 발생  : 응용프로그램이 설치되지 않았음.✗ CocoaPods not installed. CocoaPods is used to retrieve the iOS and macOS platform side's plugin code that responds to your plugin usage on the Dart side. Without CocoaPods, plugins will not work on iOS or macOS. For more info, see https://flutter.dev/platform-plugins To install see https://guides.cocoapods...
[Git] git add / commit stage -> unstage 상태 변경하기
·
Git
* add 취소하기 - git add로 파일이 Staging Area에 들어간 경우 // add한 파일 취소 $ git add README.md $ git reset HEAD README.md // add한 파일 전체 취소 $ git add . $ git reset HEAD * commit 취소하기 - git push 전 commit한 파일 취소하기 // 해당 파일은 staged 상태로 워킹 디렉터리에 보존된다. $ git reset --soft HEAD^ // 바로 이전 commit 취소 $ git reset --soft HEAD~1 // 해당 파일은 unstaged 상태로 워킹 디렉터리에 보존된다. 다시 add 해야한다. $ git reset HEAD^ // 해당 파일은 unstaged 상태로 워킹 ..