본문 바로가기

gitbash3

[Ansible] Ansible로 Git 레포지토리 연결하기 먼저 아래 명령들을 진행한다 amazon-linux-extras enable ansible2 yum clean metadata yum install ansible -y yum install git -y git이라는 폴더를 하나 만들어주고(나는 /root/git/으로 만듬) vi git.yml을 만들어준다 --- - hosts: localhost become: yes tasks: - name: git co git: repo: 'https://github.com/suminhong/project_english.git' dest: /root/git/ repo url은 자신이 원하는 url 가져오면 된다 ansible-playbook git.yml 로 실행해보면 이제 git 폴더로 가서 살펴보겠다 내 레포지토리의.. 2020. 11. 8.
[SSH] Git Bash - ssh로 PuTTy처럼 쓰기 https://git-scm.com/ Git git-scm.com Git Bash 전부 Next 눌러서 깐다 윈도우 검색창에 Git Bash 검색해서 실행시킨다 일단 내 리눅스랑 통신이 되는지부터 확인해보자 ping IP주소 그리고 내 이름과 이메일을 등록해준다 git config --global user.name "이름" git config --global user.email "이메일" Git Bash는 리눅스 기반이기 때문에 리눅스 명령들이 가능하다 일단 /로 change directory를 하자 cd / SSH 공개키를 만들어보자 ssh-keygen.exe -t rsa 중간에 y 한번만 쳐주고 나머진 엔터쳐준다 해당 경로로 이동해보자 cd /c/Users/user/.ssh/ 해당 키를 리눅스로 복사.. 2020. 7. 9.
[Git] GitHub과 Git Bash 사용하기 https://github.com/ Build software better, together GitHub is where people build software. More than 50 million people use GitHub to discover, fork, and contribute to over 100 million projects. github.com 일단 github에서 New를 눌러서 레포지토리(원격저장소)를 하나 새로 만든다 여기 URL을 복사해둔다 그 다음에 Git Bash를 깐다 https://git-scm.com/ Git git-scm.com 깔고 전부 그냥 Next 눌러준다 그러고 이제 바탕화면에 아무 폴더를 하나 만들어준다. 그리고 거기에 마우스 우클릭을 하면 이런게 뜬다 Gi.. 2020. 7. 9.