일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- codepipeline
- SQL
- docker
- Airflow
- Spring
- COALESCE
- Python
- IntelliJ
- Spring Error
- Flux
- chart.js
- Jenkins
- codedeploy error
- aws cicd
- aws
- codedeploy
- codebuild
- node
- bootstrap
- or some instances in your deployment group are experiencing problems.
- Kafka
- VPN
- PostgreSQL
- JavaScript
- 도커
- redis
- java bigdecimal
- kubeflow
- AWS CI/CD 구축하기
- chartjs
- Today
- Total
목록도구 (61)
Small Asteroid Blog

jekyllthemes.org/ Jekyll Themes jekyllthemes.org 다음 사이트에서 블로그 테마 선택할 수 있다 다음과 같이 초록색 화면이 나오면 성공한것이다. 다음과 같이 git bash창에서 깃 연동하기 git clone 파일 위치 이동 cd directory 필요한 플러그인 설치 bundle install 서버시작 bundle exec Jekyll serve //127.0.0.1:4000 에서 확인가능함
ctrl + alt + s Setting ctrl + alt + shift + s Project Structure sout + tab System.out.println(); psvm + tab public static void main(String[] args) { }
git 초기 설정으로 깃에 올리는 이름과 이메일을 설정해주어야한다. global명령어를 사용하지않으면 깃 push할때마다 이름과 이메일을 설정해주어야 한다. // git commit에 사용될 username git config --global user.name "your_name" // git commit에 사용될 email git config --global user.email "your_email@example.com" // 설정한 내용을 확인할 수 있다. git config --list git init 으로 깃과 연결해준다 git init git remote add origin 깃주소 // git push --set git push --set-upstream origin master git pull..
PaaS, SaaS, IaaS 용어는 클라우드 서비스 유형이다 PaaS ( Platform as a Service ) 개발 플랫폼으로 확장한 것으로 운영체제에 미리 플랫폼을 설치하여 서비스를 제공해주는 것을 뜻함 SaaS ( Sofrware as a Service ) 웹환경에서 사용자들이 서비스를 이용할 수 있는 환경 제공 IaaS ( Infrastructure as a Service ) 서버, 스토리지, 네트워크를 가상화 환경으로 만들어 필요에 따라 인프라 자원을 사용할 수 있게 제공하는 서비스

git 을 다른 아이디로 다시 연결하고 git push 작업을 진행하려고 했다. git push --set-upstream origin master 위의 명령어로 실행해도 rejected 라면 push가 되지 않았다 git push --set-upstream origin +master + 를 붙이면 강제 push 라서 git pull 명령어를 실행 후 git push 를 실행할 것을 추천드린다.