일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 토스
- 오퀴즈정답
- 캐웤
- java
- spring게시판
- 정답
- 추천인
- 캐시워크
- 오퀴즈
- 리브메이트
- 캐슬
- 캐시슬라이드
- 돈버는퀴즈
- 행운퀴즈정답
- 이벤트
- ㄹㅂㅁㅇㅌ
- 톹
- 비트코인
- 오늘의퀴즈
- 행운퀴즈
- 초성퀴즈
- 캐시워크정답
- Android
- 자바
- 행퀴
- TOSS
- 안드로이드
- 토스정답
- 퀴즈
- 초성퀴즈정답
- Today
- 252,060
- Total
- 18,363,256
목록Push (4)
Gomdori
프로젝트가 있는 디렉토리로 이동하기. 혹은 Project Terminal에서 작업하기. 초기설정 Git 아이디 이메일 설정하기 git config --global user.name "gitlab이름" git config --global user.email "gitlab이메일" Init git init Remote 생성하기 git remote add origin https://gitlab.com/~/~/@@@@.git 현재 디렉토리 add 및 Commit 해주기 git add . git commit - "commit message" 프로젝트 올리기 push git push -u origin master
error: src refspec master does not match anyerror: failed to push some refs to 'https://IPAddress:port.git' 해결방법 git init git add . git commit -m "commit message" git remote add origin "https://ip address:port/name.git" git push -u origin master
Pushing to ssh://git@Ip주소/dir/project.git To ssh://Ip주소/dir/project.git ! [rejected] master -> master (non-fast-forward) error: failed to push some refs to 'ssh://git@Ip주소/dir/project.git hint: Updates were rejected because the tip of your current branch is behind hint: its remote counterpart. Integrate the remote changes (e.g. hint: 'git pull ...') before pushing again. hint: See the 'Note abou..
안녕하세요. 오늘은 Android Background Service 만들기입니다. Background Service란? 앱을 종료하여도 내부적으로 돌아가는 프로세스를 의미합니다. 즉, 예를 들어 사용자의 위치 정보 등을 갖고 올 때 사용됩니다. 바로 본론으로 들어가도록 하겠습니다. Manifests.xml ServiceThread -- Thread가 실행되는 부분입니다. public class ServiceThread extends Thread { Handler handler; boolean isRun = true; public ServiceThread(Handler handler) { this.handler = handler; } public void stopForever() { synchronized..