Git 초기 셋팅

Git 2015. 3. 5. 15:12

Git 설치 후 다음 단계를 진행하여 전역으로 Git 접속 정보를 등록해 놓는다.


Git 설치는 아래 주소를 참조하세요

http://blog.duboku.com/com/install-git-ubuntu/



1. 

git config --global user.name "John Doe"

git config --global user.email johndoe@example.com


2.

git config --global credential.helper store

git clone http://example.com/repo.git

Username: <type your username>

Password: <type your password>


# cdedential uset 방법

git config --unset --global credential.helper


3. new branch

// 로컬 생성 

git checkout -b <branch>

'Git' 카테고리의 다른 글

git ignore 파일 만들기  (1) 2015.12.28
브랜치 생성, 삭제, 변경  (0) 2015.08.26

Ubuntu 14.04 LTS 에 Android Studio 설치 하기

안드로이드/android 2015. 2. 27. 15:04

1. JDK 설치


$ sudo add-apt-repository ppa:webupd8team/java

$ sudo apt-get update
$ sudo apt-get install oracle-java7-installer


# 이상하게 oracle-java8-installer 는 자꾸 에러가 나서 내 컴에서 7로 했다 왜그럴까?!!!!!


update-alternatives --display java
java -version

2. Android Studio 다운로드 및 설치


$ unzip android-studio-ide-135.1641136-linux.zip

$ mv android-studio /opt

$ cd /opt/android-studio/bin

$ ./studio.sh


/*** 

'tools.jar' seems to be not in Android Studio classpath.Please ensure JAVA_HOME points to JDK rather than JRE.

라는 에러메세지가 뜬다면


$ sudo vi /etc/environment


 1) PATH 맨 마지막에 :/usr/lib/jvm/java-7-oracle 추가

 2) 문서 맨 마지막에 JAVA_HOME=/usr/lib/jvm/java-7-oracle 추가

 3) 저장하고 닫기


 $ source /etc/environment


*****/



참조 사이트 및 블로그

1. http://blog.mckwon.com/16157

2. http://stackoverflow.com/questions/17474963/android-studio-tools-jar-file-is-not-present-in-classpath


3. http://askubuntu.com/questions/147400/problems-with-eclipse-and-android-sdk

4. https://www.davidlab.net/ko/tech/how-to-setup-android-dev-env-on-ubuntu-part1/


sublime text3 Best Plugin

sublime text 2014. 10. 29. 11:32

1. IMESupport (auto)

한글을 에디터 상에 초성, 중성, 종성이 바로 보이도록 하는 플러그인


2. Alignment (ctrl+alt+a)

소스 코드를 예쁘게 자동 정렬해 주는 플러그인 꼭 필요해 암 그렇고 말고


3. 



sublime text3 기본 셋팅

sublime text 2014. 10. 29. 11:08

{

"color_scheme": "Packages/User/Monokai (SL).tmTheme",

"font_size": 10,

"ignored_packages":

[

],

"highlight_modified_tabs":true,

"highlight_line":true

}



변수에서 탭키 눌렀을때 탭키 기본 기능으로 작동하기

sublime text 2014. 10. 28. 16:38

[

{ "keys": ["tab"], "command": "insert", "args": {"characters": "\t"} }

]

'sublime text' 카테고리의 다른 글

sublime text3 Best Plugin  (0) 2014.10.29
sublime text3 기본 셋팅  (0) 2014.10.29