'CM(ConfigurationManagement)/github'에 해당되는 글 7건

donaricano-btn

 Issue

- Bug or discussion about development

- Issue is managed by BTS(Bug Tracking System)


1. When do we use ?

- Find a bug

- Counsel or question

- Function that will be added


2. Syntax Highlight

````ruby

def hello_world

puts 'hello'

end

````


3. How to handle the issues

3_1. Label

- Attach a Label to the issue


3_2. milestones

Use Milestones to create collections of Issues and Pull Requests for a particular release or project.



4. To do list


5. Control Issue by using commit

5_1. commit to relate to issue

- Issues has a own number like #1

- I commit with issue number 


5_2. Issue will be closed 

- Example : commit message + fix #1


close #1

resolve #1.. etc







블로그 이미지

리딩리드

,
donaricano-btn

Info about github


1. shortcut key

shift + /


2. How to check a content change

- branch...branch


2_1. To check a content change during 7 days

- compare/master@{7.day.ago}...master

- day, week, month, year


2_2. To check a content change from specific day

- compare/master@{2015-01-01}...master

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

[GitHub] What if you push the wrong file(dir) to github?  (0) 2016.08.25
[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] 1. SSH Key  (0) 2016.05.08
블로그 이미지

리딩리드

,
donaricano-btn

SSH Key

1. Config


- id_rsa = private key

- id_rsa.pub = public key


2. registration

2_1. path

- github -> account -> New ssh key


2_2.  How to register

- cat ~/.ssh/id_rsa.pub

- add a blue part to key


2_3. confirm

- ssh -T git@github.com


- It means that you can access the github by using ssh



블로그 이미지

리딩리드

,