Link
Search
Menu
Expand
Document
Dev Jen's Blog
Home
Algorithm
Git
GitHub Pages 로컬에서 실행
기본브랜치 변경 (master → main)
Java
STUDY HALLE
[1주차] 자바 코드 실행과정
[2주차] 프리미티브 타입, 변수, 배열 사용법
[3주차] 연산자
[4주차] 제어문
[5주차] 클래스
JavaScript
GitHub
🌱 Recent Posts
Git CLI Command
2022-06-26
그만 찾아보고 외우자 git add 취소 $ git reset $ git reset <file> git commit 취소 $ git reset HEAD^ 최신 커밋 취소 $ git reset HEAD~n 최신 n개의 커밋 취소 git push 취소 1. $ git reset <commit id> 2. $ git commit -m "commit messages" ...