Programming

git - centos 설치

sysman 2021. 5. 22. 13:38

 

 

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 config --global user.name "Your Name"

to set your account's default identity.
Omit --global to set the identity only in this repository.

fatal: unable to auto-detect email address (got 'root@master.(none)')

 

내가 누군지 등록할 email과 이름을 기록
[root@master ~]# git config --global user.email "gate97@hanmail.com"
[root@master ~]# git config --global user.name "pjw"

 

깃 커밋할때 어떤 내용인지 작성
[root@master ~]# git commit -m "Test GitHub"
[master (root-commit) 8c67101] Test GitHub
 1 file changed, 1 insertion(+)
 create mode 100644 README.md


git branch를 마스터로..
[root@master ~]# git branch -M master

 

파일 업로드할 주소 등록
[root@master ~]# git remote add origin https://github.com/tech-picnic/project.git

 

파일 github에 업로드 푸쉬함.

[root@master ~]# git push -u origin master
Username for 'https://github.com': gate97@hanmail.net
Password for 'https://gate97@hanmail.net@github.com':
Counting objects: 3, done.
Writing objects: 100% (3/3), 217 bytes | 0 bytes/s, done.
Total 3 (delta 0), reused 0 (delta 0)
To https://github.com/tech-picnic/project.git
 * [new branch]      master -> master
Branch master set up to track remote branch master from origin.

 

github.com에 가보면 파일이 보임

 

 

 

nagios.yml 파일을 github에 올려보기

[root@master ~]# ls
README.md  anaconda-ks.cfg  ip_forward~  nagios.yml  nginx.yml

 

git 파일 준비
[root@master ~]# git add ./nagios.yml

커밋할때 메세지
[root@master ~]# git commit -am "k8s nagios container file"
[master bdc1876] k8s nagios container file
 1 file changed, 31 insertions(+)
 create mode 100644 nagios.yml

파일 업로드 푸시
[root@master ~]# git push -u origin master
Username for 'https://github.com': gate97@hanmail.net
Password for 'https://gate97@hanmail.net@github.com':
Counting objects: 4, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (3/3), done.
Writing objects: 100% (3/3), 504 bytes | 0 bytes/s, done.
Total 3 (delta 0), reused 0 (delta 0)
To https://github.com/tech-picnic/project.git
   8c67101..bdc1876  master -> master
Branch master set up to track remote branch master from origin.
[root@master ~]#

 

github.com에 가보면 파일 보임

 

 

 

---------------------------------------------------------

github.com에서 repository 만들기

아래와같이 사용방법이 나옴

 

 

 

 

 

참고

https://17billion.github.io/kubernetes/2019/04/24/kubernetes_control_plane_working.html

https://jhok.kr/2016/06/19/centos-7-git-%EC%84%A4%EC%B9%98-%EB%B0%8F-%EC%82%AC%EC%9A%A9/

'Programming' 카테고리의 다른 글

git 명령어  (0) 2020.12.21
Git 설치 for windows10  (0) 2020.12.21
자바스크립트-캔바스 그림  (0) 2020.12.15
자바스크립트 - 조심할 점  (0) 2020.12.09