Git 4

git stash - 애매한 경우엔 stash를

git stash 갓 stash를 아시나요? commit 하기는 애매하고, 삭제될지도 모르지만 저장이 필요한 경우. stash를 이용해 보세요. 위 명령어를 치면 현재 변화된 상태가 저장이 됩니다. 몇번이고 저장이 되며 이는 stack 형태로 쌓이게 됩니다. git stash list 현재 stash 목록이 보입니다. git pop 제일 나중에 넣은 stash 상태로 돌아갑니다. 그 전의 상태로 가고 싶으면 계속 git pop 하면 됩니다. git stash clear stash 모두 삭제합니다. Clear~

Git 2021.05.08

Git 설정 및 기본

git{명령어}{옵션}{웹주소} Michellehwang001/SeminStudy Flutter. Contribute to Michellehwang001/SeminStudy development by creating an account on GitHub. github.com 1. git config --global user.name "Michelle Hwang" //난 이렇게 2.git config --global user.email "your_email@youremail.com" //이메일 바꿔넣으시고 3. github 로 이동. Repository 만들기 4. 터미널에서 readme.md 파일 만들고 5. 터미널에서 다음과 같이 입력.. git init git add readme.md git comm..

Git 2021.03.18