
git) pull request 과정
2021. 3. 23. 12:04
git & 배포/Deploy(AWS 등)
업스트리밍 등록 1. git remote add upstream github.com/codestates/fooding-bot-server git remote add upstream https://github.com/codestates/Bransome-client 깃 git status 에러 발생시 git remote -v git remote remove orign/upstream 등 2. git pull upstream dev (잘못 풀했으면 git reset HEAD^ ) 3. git checkout -b feature/ 기능 4, git add, git commit 5. git push origin feature/data 6. 7. upstream 가서 merge 하기 8. branch 삭제 9 깃 ..
에러) 'origin' does not appear to be a git repository
2021. 3. 22. 23:15
에러
git remote add origin '깃주소' git remote -v 로 확인
sql 자주쓰는 쿼리
2021. 3. 21. 21:12
DB/Prisma, SQL, MongoDB
sequelize npm install --save-dev sequelize-cli npx sequelize-cli init npx sequelize-cli model:generate --name User --attributes firstName:string,lastName:string,email:string npx sequelize-cli db:migrate create database ; show databases; show tables; use database ;