GIT14 git push하기 - terminal git terminalrepository로 push하기 - step by step 초기화 $ git init 파일등록 $ git add * 상태확인 a:add, m:modify $ git status -s commit 코멘트 작성 $ git commit remote 등록 $ git remote add bit https://url/... bit: 레이블, 이후 url 대신 레이블사용 등록된 모든 remote 확인 $ git remote -v remote로 push $ git push bit master Username: 입력 Password: 입력 remote 상태보기 $ git remote show bit 2016. 4. 1. SSH key & multi GitHub & IntelliJ SSH key 발급 git bash에서 실행 아래 명령 입력, 이메일은 수정 $ ssh-keygen -t rsa -b 4096 -C "your_email@example.com" 엔터 클릭 Enter a file in which to save the key (/Users/you/.ssh/id_rsa): [Press enter] SSH 암호 입력, 암호입력없이 하려면 엔터 Enter passphrase (empty for no passphrase): [Type a passphrase] Enter same passphrase again: [Type passphrase again] ssh key 클립보드에 복사 $ clip < ~/.ssh/id_rsa.pub 발급한 SSH key를 ssh-agent에 등록 ss.. 2016. 3. 25. 이전 1 2 3 다음