Private Memo
-
-
소소한 Git ( 및 기본 terminal 명령어 )Private Memo 2021. 11. 2. 01:47
(Working Directory -> ) Staging Area 에 현재 폴더 내 모든 파일 추가 git add . (Staging Area -> )Local Repository 로 msg 를 남기며 이동. git commit -m "" (Local Repository -> ) Remote Repository 로 이동. git push -u origin (The -u flag is used to set origin as the upstream remote in your git config. As you push a branch successfully or up to date it, it adds upstream reference. As you push local branch with (the) git ..