Project3_AWS 자동화 인프라 구축
보호되어 있는 글입니다.
보호글
2024. 11. 1. 14:25
Project2_Ansible_Onpremise
보호되어 있는 글입니다.
보호글
2024. 11. 1. 14:03
Project1_VMware_CentOS8 Linux Infra
보호되어 있는 글입니다.
보호글
2024. 11. 1. 13:45
Git Hub 사용법 정리
1. 프로젝트 디렉터리 준비mkdir [file name]cd [file name] 2. Git 리포지토리 초기화 git init 3. 사용자 정보 설정 git config --global user.name "Username" git config --global user.email "email@example.com"4. 파일 생성 및 Git에 추가echo "# [file name]" >> README.md- 변경된 파일을 Git 스테이징 영역에 추가 git add .5. 커밋 생성 git commit -m "commit"6. GitHub 리포지토리 생성 및 리모트 연결git remote add origin https://github.com/YourUsername/YourRepoName.git7. ..
GIt
2024. 11. 1. 12:53