Programming 5

git - centos 설치

git 설치 [root@master ~]# yum install git readme 파일 생성하기 [root@master ~]# echo "#test" >> README.md 깃 초기화 하면 파일생성 [root@master ~]# git init Initialized empty Git repository in /root/.git/ github.com에서 repository 만들기(아래 사진 참조) [root@master ~]# git add README.md [root@master ~]# git commit -m "Test GitHub" *** Please tell me who you are. Run git config --global user.email "you@example.com" git confi..

Programming 2021.05.22

git 명령어

$git config --list $ git config --global user.name //id 입력 $ git config --global user.email //email 입력 $ git config user.name //user name 내용 확인 $ git config user.email //email 내용확인 $ git config //컨피그 내용 확인 프로젝트 파일 있는곳 c:/project/hello $ cd /c/project/hello $ git init //깃 로컬 리포지토리 생성 $ vi .gitignore //제외할 파일 정의함 .gitignore venv $ git add --all //보낼 파일 작성 $ git commit -am "test 1" //로컬 리포지토리 저장 $ ..

Programming 2020.12.21

Git 설치 for windows10

windows 10 에서 git 설치 git-scm.com/ Git git-scm.com 다운로드 클릭 windows 클릭 -자동으로 다운 받음 , 그리고 받은 파일 실행 Next 클릭 Next 클릭 Next 클릭 Windows Exporer integration Git Bash Here : Git Bash를 연결하는 기능, 폴더에서 Git을 연결 Git GUI Here: Git GUI을 연결하는 기능, 폴더에서 Git을 연결 Git LFS 용량이 큰 파일을 지원하는 기능 Associate .git configuration files with the default text editor git 구성 파일을 기본 텍스트 편집기와 연결하는 기능 Associate .sh files to be run with B..

Programming 2020.12.21