본문 바로가기

GIT5

GIT branch 삭제 : local branch & remote branch Local Branch 삭제 $ git branch -d Remote Branch 삭제 $ git push -d 보통 remote_name은 origin 을 사용하므로 아래의 형태가 될 것이다. $ git push -d origin 2019. 11. 30.
GIT - error: remote: unable to find Error Msg ------------------------------------------------------------------------------------------ remote: error: remote: unable to find 1a0352d8d664add294d1a47c512aafcac48ccb8d remote: fatal: unable to get type of object 1a0352d8d664add294d1a47c512aafcac48cremote: cb8d error: git-upload-pack: git-pack-objects died with error. fatal: git-upload-pack: aborting due to possible repository corrupt.. 2009. 3. 4.
GIT Config 이제 대~~충 기본 사용법을 익혔으니 한 번 customize 해서 써볼까 하는 생각에 건들이게 된 git config 명령어. 여기에는 다양한 설정들이 있으니 아래의 커맨드를 입력하여 메뉴얼을 쭈욱 보자. $ man git-config 그중에서 역시나 눈에 들어오는 것은 색깔 바꾸기와 alias 설정 가능한 점들...등등 맘에 든다. ㅋㅋ 우리가 대부분 config 를 사용할때 $ git config [설정항목] [설정값] 를 사용하는데, 이렇게 하는 경우 현재 접속해 있을 동안만 적용이 된다. 이것을 자기 계정내에 저장해서 그 값을 계속 이용하고 싶은경우는 config 다음에 --global 을 붙여주면 된다. $ git config --global [설정항목] [설정값] 이렇게 global로 한 경.. 2009. 1. 29.
Simple GIT Usage Modification or re-submission the post with this document is allowd after you let me know about it. Questions or suggestion is welcome. You can contact me at dualistmage@nate.com Simple GIT Usage 2008-11-24 Dohyun Yun 1. Get the latest repository from server $ git pull OR $ git fetch $ git merge origin p.s pull is the operation of fetch and merge. But pull merge new contents directly to your rep.. 2008. 11. 24.