Push2 Git 설치 및 사용법 Git 설치 git --version Git 버전 확인 sudo apt-get install git Git 저장소 생성 git init Git 파일 확인 ls -al ``` .git 확인 ``` Git 초기 설정 git config --global user.name "[사용자명]" git config --global user.email "[메일주소]" Git remote 설정 [생성] git remote add [생성이름] [git 주소] 생성이름 : origin 생성이 일반적 [삭제] git remote remove [생성이름] Git push git push origin master Git pull git pull origin master 2020. 6. 24. push, pop, shift, unshift, slice arr.push() - element 추가 (맨 끝 value) arr.pop() - element 삭제 (맨 끝 value) arr.unshift() - element 추가 (맨 앞 value) arr.shift() - element 삭제 (맨 앞 value) slice - 배열을 반환 2020. 6. 18. 이전 1 다음