목록GIT (22)
Mi Lugarcito
$ git reset --hard {커밋}
보호되어 있는 글입니다.
https://twpower.github.io/9-remove-gitignore-cache [Git] .gitignore에 추가해도 git에서 변화를 계속 감지하고 트래킹 할 때 Practice makes perfect! twpower.github.io
git checkout -b 브런치이름 //firt do commit -> do pull -> do push git add . or git add --all git commit -m "message" git pull origin "branch name" git push origin "branch name" //git pull git pull origin //git branch 생성 후 특정 branch로 push 하기 git init git remote add origin https://github.com/~.git git pull origin 브런치이름 git checkout -b 브런치이름 git add . git commit -m "어쩌구" git push origin 브런치이름 https://ve..
https://steemit.com/develope/@snowsprout/git-git-pull-error-your-local-changes-to-the-following-files-would-be-overwritten-by-merge [git] git pull 에러 발생시 ( error: Your local changes to the following files would be overwritten by merge ) — Steemit 간혹 여러 소스를 관리하다보면 아래와 같이 git pull 을 사용할때 에러가 발생할 수 있습니다. $ git pull origin master error: Your local changes to the following files would be overwritten ..
https://ifuwanna.tistory.com/263 [Git] 원격 저장소 연결 및 끊기 ( git remote ) 깃(GIt) 사용시 현재 로컬 저장소(local repository)에 연결되어 있는 원격 저장소(remote repository)를 연결을 끊고 다시 연결 하는 방법을 간단히 포스팅 합니다. 먼저 git remote -v 명령어를 사용하여 현재 ifuwanna.tistory.com
git clone을 하려고 하니 아래와 같이 에러메시지 출력됨 생성된 깃토큰 복사해서 노트에 일단 붙여넣기하기 Mac 인 경우 keychain 열어서 키체인 접근에서 github 입력하기 밑의 체크박스 "암호보기" 클릭해서 개인 노트북 비밀번호 입력하면 깃 아이디/비밀번호로 깃허브가 연동되어 있는경우 암호보기에 자신이 입력했던 깃허브 계정 비밀번호가 적혀져 있을것이다. Git Token 발급받았던 것을 붙여넣기 한 후, 변경 사항 저장 버튼 누르면 다시 깃허브가 intelij와 연결이 된다!
git clone/ git pull 차이점 (최초 다운로드 할때는 clone 하고 그 이후 수정/추가 작업할때는 pull 해서 사용) https://meaownworld.tistory.com/157 git에서 clone과 pull의 차이점 git을 처음 공부할 떄 clone을 많이 사용합니다. 조금 더 공부를 하다보면 git pull을 배울텐데 그럼 자연스레 "git clnoe과 pull의 차이는 뭐지?" 라는 의문을 갖게 될겁니다 결론부터 말하자면 둘의 차 meaownworld.tistory.com https://balsamic-egg.tistory.com/11 git clone 과 git pull 의 차이점 처음에는 clone을 배우다가 나중에는 pull을 배우게 됩니다. 그러다 보면 비슷하게 보이기..
velog.io/@ikalli/GitHub-Page-React%EB%A5%BC-%EC%9D%B4%EC%9A%A9%ED%95%9C-%ED%8F%AC%ED%8A%B8%ED%8F%B4%EB%A6%AC%EC%98%A4-%EC%9B%B9%EC%82%AC%EC%9D%B4%ED%8A%B8-%ED%98%B8%EC%8A%A4%ED%8C%85 GitHub Page + React를 이용한 포트폴리오 웹사이트 호스팅 React Template + GitHub Pages로 쉽게 포트폴리오 웹사이트를 제작해보자! ReactFolio는 React+TypeScript로 만들어진 오픈소스 포트폴리오 웹사이트 Dark Theme Temaplate입니다. velog.io