'framework&tools/git'에 해당되는 글 3건

  1. 2012.03.19 유저 정보 설정.
  2. 2012.03.19 SSH key 관련
  3. 2012.03.14 Git 사용법

git bash  또는 리눅스 에서 명령어로 설정.
 

git config -- global user.name "Firstname Lastname"
git config -- global user.email "your_email@youremail.com" 


eclipse 에서 확인하기

Window > Preferences > Team > Git > Configuration
에서 확인 또는 설정 가능

ref:
http://help.github.com/win-set-up-git/

'framework&tools > git' 카테고리의 다른 글

SSH key 관련  (0) 2012.03.19
Git 사용법  (0) 2012.03.14
Posted by 뚜벅이조
,

SSH key 관련

framework&tools/git 2012. 3. 19. 14:02
generate ssh public key

1. 디렉토리 확인

cd ~/.ssh



2. 키 백업, 없으면 바로 키 생성

ls
mkdir key_backup
cp id_rsa* key_backup
rm id_rsa* 


3. 키 생성

ssh-keygen -t rsa -C "your_email@youremail.com" 



* id_rsa.pub 에 있는 공개키를 git-hub 나 ssh 계정에 public key 등록

Adding or changing a passphrase

ssh-keygen -p

 


ref:
http://help.github.com/win-set-up-git/ 
http://help.github.com/ssh-key-passphrases/ 

'framework&tools > git' 카테고리의 다른 글

유저 정보 설정.  (0) 2012.03.19
Git 사용법  (0) 2012.03.14
Posted by 뚜벅이조
,

Git 사용법

framework&tools/git 2012. 3. 14. 16:39
Git Quick Start

Cloning and Creating a Patch

$ git clone git://github.com/git/hello-world.git
$ cd hello-world
$ (edit files)
$ git add (files)
$ git commit -m 'Explain what I changed'
$ git format-patch origin/master

Creating and Commiting

$ cd (project-directory)
$ git init
$ (add some files)
$ git add .
$ git commit -m 'Initial commit'




ref: 
http://www.git-scm.com/ 
http://www.eclipse.org/egit/download/  

'framework&tools > git' 카테고리의 다른 글

유저 정보 설정.  (0) 2012.03.19
SSH key 관련  (0) 2012.03.19
Posted by 뚜벅이조
,