일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 비리짐
- 핸드캐리쿠리어차이점
- 나일론지퍼
- 암홀트롭
- 헤이큐
- Armhole Drop
- 클린코드
- 비슬론지퍼
- 지연환가료
- 봉제용어
- 자켓실측
- 미니마카
- 40HQ컨테이너40GP컨테이너차이
- MERN스택
- 엑셀필터복사붙여넣기
- 엑셀자동서식
- 40HQ컨테이너
- TACKING
- 웹API
- 고급영어단어
- 엑셀드래그단축키
- AATCC
- 영어시간읽기
- 요척합의
- WHATTIMEOFTHEDAY
- 미국영어연음
- 필터링후복사붙여넣기
- 와끼
- 우레탄지퍼
- 슈퍼코딩
- Today
- Total
목록PROGRAMMING (428)
CASSIE'S BLOG
PS D:\personal\supercoding-workspace-react-2\react-fundamental-all\react-fundamental> git status On branch practice/4-6 Your branch is ahead of 'origin/practice/4-6' by 1 commit. (use "git push" to publish your local commits) nothing to commit, working tree clean PS D:\personal\supercoding-workspace-react-2\react-fundamental-all\react-fundamental> git status를 눌렀더니. Your branch is ahead of 'origi..
import React from 'react'; const AuthContext = React.createContext({ isLoggedIn: false, onLogin: (email, password) => {}, onLogout: () => { } }); export const AuthContextProvider = (props) => { return( {props.children} ) }; export default AuthContext 코드를 보니 마지막에 ' ; ' 거를 안 붙여줌. 해결하니까 이 에러가 뜸
import React, { useState, useEffect, useReducer } from 'react'; import Card from '../UI/Card/Card'; import classes from './Login.module.css'; import Button from '../UI/Button/Button'; const Login = (props) => { // const [enteredEmail, setEnteredEmail] = useState(''); // const [emailIsValid, setEmailIsValid] = useState(); // const [enteredPassword, setEnteredPassword] = useState(''); // const [pa..
error: pathspec 'practice/4-6' did not match any file(s) known to git branch 이동하기 git checkout [branch name] -b : branch 생성하고 이동 *error: pathspec '[branch name]' did not match any file(s) known to git 해당 에러는 로컬저장소 git과 리모트 저장소 git이 동기화가 되지 않아서 브랜치를 참조하지 못해서 발생. git remote update git checkout [branch name]
여러개의 부분부분 요소를 하나로 묶을 때 사용할 수 있는 api로 react.fragment 로 써짐. 여러개의 다른 html을 div나 다른 html태그를 선언해주지않고도 문제를 해결할 수 있다는데? practice/4-2 42강 git status git add . git status git commit -m "커밋메세지" git push origin git remote set-url origin https://{token}@github.com/{git_repository_url // (github.com 이후 일부 url만 입력) 다시 push를 시도한다. git status // 현재 checkout한 branch 확인 git checkout // 해당 브랜치로 checkout git add . ..
git을 사용하다 브랜치 전체를 clone하지 않고 특정 브랜치 하나만 clone하는 것이 가능하다. 특히 브랜치가 많은 경우 이 방법을 사용할 수 있다. git clone -b {branch_name} --single-branch {저장소 URL} ex) git clone -b javajigi --single-branch https://github.com/javajigi/java-racingcar 위와 같이 실행하면 java-racingcar의 javajigi branch만 clone할 수 있다. 그래서 이거를 했다. 중괄호는 없애야한다. git clone -b practice/3-4 --single-branch https://github.com/dev-owen/react-fundamental.git