donaricano-btn

gitignore 설정이 작동안 할 때


1. 원인

- .gitignore 설정파일을 생성한 후 ignore할 값들을 생성했지만 제대로 작동하지 않는다

2. 해결

- 기존 캐시된 값을 지우면 설정된다




'CM(ConfigurationManagement) > git' 카테고리의 다른 글

[git] 4. Remote config  (0) 2016.05.12
[git] 3. commit control  (0) 2016.05.09
[git] 2.Create a branch  (0) 2016.05.08
[git]1. Basic information  (0) 2016.05.08
블로그 이미지

리딩리드

,
donaricano-btn

깃허브(github)로 블로그 만들기


1. 필요 항목

- 깃허브(github) 아이디

- Jekyll github : https://github.com/barryclark/jekyll-now


2. 구성

1) Jekyll 레파지토리에 접근하여 fork 한다

 Jekyll github : https://github.com/barryclark/jekyll-now 에 접속하여 fork 버튼을 클릭한다

- 그럼 아래와 같은 화면이 나타나면서 나의 저장소로 위의 저장소가  fork 된것을 확인 할 수 있다

2)  Page  접근 셋팅

- 셋팅을 클릭합니다

- 자신이 원하는 URL  주소를 설정한다

- 원하는이름.github.io 

- 이제 지정한 주소로 이동하면 아래와 같은 화면을 볼 수 있다


3. 


블로그 이미지

리딩리드

,
donaricano-btn

What if you push the wrong file(dir) to github?


1. Remove

- If you have a wrong file(dir) in your remote repository

1) Move the directory

2) Enter the git command

- git rm -r --cached wrong

- git commit -m "remove a wrong dir"

- git push origin master


'CM(ConfigurationManagement) > github' 카테고리의 다른 글

[GItHub] 깃허브(github)로 블로그 만들기  (0) 2016.12.08
[GitHub] PullRequest Handling  (0) 2016.06.06
[GitHub]How to send a Pull Request  (0) 2016.06.05
[gitHub] Issue  (0) 2016.05.19
[GitHub] 2. Info about github  (0) 2016.05.15
블로그 이미지

리딩리드

,
donaricano-btn

PullRequest Handling


1. Getting a Pull Request


2. How to know the source is safe on origin repository

2_1. Get a sender repository



2_2. To make a topic branch

- Merge

- Check a source 

- Branch delete

I  no longer need a pr1 branch




블로그 이미지

리딩리드

,