본문 바로가기

Github3

github 자체 CI, CD => action github action Workflow syntax for github actions 정말 간단함:: branch에 push나 pr이 있을 때 action이 trigged하게 할 수 있다. 위 문서만 봐도 쉽게 사용할 수 있다. /.github/workflows/python-app.yml 자동으로 생성된 yml # This workflow will install Python dependencies, run tests and lint with a single version of Python # For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-action.. 2020. 7. 1.
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.