본문 바로가기
반응형

SWE/LetGit9

(png 파일) 마우스 포인터 아이콘 설정하는 방법 마우스 포인터 아이콘 변경하는 방법 인터넷에서 바로 cursor 파일을 받으면 부수 작업없이 설정만 하여 사용할 수 있다. 그러나 cursor 파일로 제공되는 것들 중 내 마음에 드는 것이 없다면 png 파일->cursor 파일로 변환이 필요하다. 1. 원하는 png 아이콘 구하기 직접 만들어도 되고 무료 사이트에서 다운받아도 된다. 내가 고른 강아지 아이콘 (Dog">icons8.com/icons/set/dog-jump--v3">Dog) 나는 여기서 다운받았다. 무료 사이트 : https://icons8.com/icons/pack/animals 2. png 파일을 cursor파일로 변환하기 아래 웹사이트에서 .png 파일을 .cur파일로 변환할 수 있다. https://www.cursor.cc/ 사이트.. 2020. 5. 29.
git stash / git merge 할 때 충돌 해결법 git stash 개념 : 자신이 어떤 작업을 하던 중에 다른 요청이 들어와, 하던 작업을 멈추고 잠시 브랜치를 변경해야 할 일이 있다. 이때, 아직 완료하지 않은 일을 commit 하는 것이 껄끄럽다. git stash명령어를 사용해 아직 완료하지 않은 일을 commit하지 않고 나중에 다시 꺼내와 마무리할 수 있다. - git stash 명령을 사용하면 워킹 디렉토리에서 수정한 파일들만 저장한다. - stash란 아래에 해당하는 파일들을 보관하는 장소이다. (1) Modified이면서 Tracked 상태인 파일 - Tracked상태인 파일을 수정한 경우 - Tracked : 과거에 이미 commit하여 스냅샷에 넣어진 관리 대상 상태의 파일 (2) Staging Area에 있는 파일(Staged 상태.. 2019. 12. 10.
how to disconnect git remote repository >git remote -v // check which remote repositories connect rn >git remote remove origin >git remote -v // check it again 2019. 12. 6.
let's get the git! My environment! 1) local environment : Window 10 2) server environment : linux 1) let's connect the remote repository first, there's already git repository that someone made for me hahaha and branch too comman line > git clone check the branch (i need to use branch, not master) > git branch *master (i couldn't find branches!!!!!!!!!!!!!! X() > git branch -a *master branch1 branch2 .... (with '-a.. 2019. 11. 12.
반응형