devOps(4)
-
[ zsh ] 맥 터미널에서 내 프로젝트 파일 구조를 보고 싶다면?
맥 터미널에서 아래 명령어를 친다. 우선 🍻 brew 가 설치되어 있어야한다. github 통해 설치 $ git clone https://github.com/Homebrew/brew homebrew 더 자세한 설명은 brew brew_kr [Homebrew The Missing Package Manager for macOS (or Linux). brew.sh](https://brew.sh/index_ko) tree 설치방법 ( brew 가 설치되어 있다는 가정하에..) $ brew install tree 폴더 구조 보는 방법 $ tree 그 외 명령어 찾았다! 너다..이거 좋구나.. 1. 색 넣어서 파일 구조 구분 $ tree -C 색 들어가서 더 구분하기 좋구나~ 더보기 2. 디렉토리의 목록 보기 tr..
2023.08.25 -
[ git ] mac terminal message : Changes not staged for commit
terminal log 1 git status git status Changes not staged for commit 커밋을 위해 준비되지 않은 상황? 저번부터 코테 문제를 풀고 commit, Push 를 해도 main 에 여전히 commit 할 내용이 있어 보면 Programmers/Programmers.xcodeproj/project.pbxproj modified: Programmers/Programmers.xcodeproj/project.xcworkspace/xcuserdata/a0000.xcuserdatad/UserInterfaceState.xcuserstate 검색해보니 ls -a (.이 붙은 파일 목록까지 볼 수 있음, Finder에서는 `shift` + `cmd` + `.` )를 쳐 보았고..
2023.08.02 -
[ Git ] Error log - Git 터미널 : fetch 하고 push, rsh 터미널 세팅
깃허브 브랜치를 master 기본으로 세팅하려고 git switch master 를 하려고 하는데 이런 메세지가 뜸.. error: Your local changes to the following files would be overwritten by checkout: iOSudemy/Calculator-Layout-iOS13_BySeohyun/Calculator Layout iOS13.xcodeproj/project.pbxproj iOSudemy/Calculator-Layout-iOS13_BySeohyun/Calculator Layout iOS13/Main.storyboard Please commit your changes or stash them before you switch branches. Abo..
2023.05.11 -
[ Github ] SSH 로 Git Clone 하는 방법
SSH 란? Secure Shell 의 약어로, Private Key 와 Public key 한 쌍으로 인증하는 보안이 강화된 안전한 정보 교환 방식 시큐어 셸(Secure SHell, SSH)은 네트워크 상의 다른 컴퓨터에 로그인하거나 원격 시스템에서 명령을 실행하고 다른 시스템으로 파일을 복사할 수 있도록 해 주는 응용 프로그램 또는 그 프로토콜을 가리킨다. 기존의 rsh, rlogin, 텔넷 등을 대체하기 위해 설계되었으며, 강력한 인증 방법 및 안전하지 못한 네트워크에서 안전하게 통신을 할 수 있는 기능을 제공한다. 기본적으로는 22번 포트를 사용한다. SSH는 암호화 기법을 사용하기 때문에, 통신이 노출된다고 하더라도 이해할 수 없는 암호화된 문자로 보인다. [출처] 위키백과 로컬에 SSH 키 ..
2022.05.21