Thinkpad, Timeline

21.04.19(월)_오늘,예전에 공부했던거.

곰군 2021. 4. 19. 21:35

[예전에 공부했던거 json만들때 필요한 파일.]

json-lib
Maven - Json-lib::Welcome
---아래 파일이 필요함.

ezmorph 1.0.6 --이거는 설치파일.
jakarta commons-lang 2.5
jakarta commons-beanutils 1.8.0
jakarta commons-collections 3.2.1
jakarta commons-logging 1.1.1
JEE는 웹과 관련된거였는데
자카르타로 이름이 바뀌었다.

 

[git bash 관련 명령어]

git branch 
깃 브렌치 조회

git branch "1"
이름이 1인 브랜치 생성


git checkout 1
이름이 1인 브랜치로 이동(업데이트대기)

git branch -d 1
이름이 1인 브랜치 삭제.

error: pathspec 'new-branch' did not match any file(s) known to git
레파지토리에 브랜치 추가후 checkout하려고 할때 에러.

git remote update
git fetch
위에 두개 치고

git checkout new-branch
new-branch에 새로만든 브랜치명 입력.