일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 행운퀴즈
- 정답
- 자바
- 캐시워크
- 오퀴즈정답
- 행운퀴즈정답
- TOSS
- ㄹㅂㅁㅇㅌ
- 토스
- spring게시판
- 초성퀴즈
- 캐슬
- 오늘의퀴즈
- Android
- 톹
- 이벤트
- 비트코인
- 행퀴
- 퀴즈
- Today
- 252,060
- Total
- 18,363,256
목록gitlab (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
synology ssh 접속 방법 synology 제어판 -> 터미널 및 SNMP -> SSH 서비스 활성화 Port 번호 설정 terminal 창에서 ssh user@Ip Address -p port 빨갛게 된 것은 자신이 해당되는 것을 입력해주시면 됩니다. 그리고 비밀번호 입력하시면 끝! synology root 계정 접속 sudo -i 비밀번호 입력 postgresql DB 연결 sudo -u postgres psql 비밀번호 입력 postrgresql DB 연결 해제 \q postgres create database (shell) " sudo -u postgres createdb dbname " postgres create database(psql 접속 후 실행) " create database ..
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..