Tools/Git 4

[Github Page] Github 블로그로 갈까?

[GitHub] GitHub 블로그 만들기 (Ruby) https://4d-why.tistory.com/57 홈브루 : ios 패키지 매니저 https://brew.sh/index_ko Homebrew The Missing Package Manager for macOS (or Linux). brew.sh 깃허브 페이지 공식문서 https://docs.github.com/ko/pages 지킬 공식 사이트 https://jekyllrb-ko.github.io/ 지킬을 이용해서 로컬에 블로그 생성 -> 깃허브 페이지를 통해서 호스팅 사전 준비 1.루비 설치 2. 번들러 echo 'export PATH="$HOME/.gem/ruby/3.2.0/bin:$PATH"' >> ~/.bash_profile

Tools/Git 2023.04.20

[ Github] this path skips through empty directories

폴더 경로가 스킵되서 나옵니다 Git hub에 "Folder Jumping" 기능이라합니다. 어떤 기준으로 경로가 스킵되는 건가? 단일 하위 디렉토리를 가진 디렉토리를 건너뛰어 저장소의 내비게이션 효율을 크게 향상시킬 수 있습니다. 특히 Java 패키지/디렉토리 구조와 같이 여러 수준의 중첩된 디렉토리가 있는 경우에 유용합니다. 참고: https://github.com/gogs/gogs/issues/1149 Directory/Folder/Path jumping · Issue #1149 · gogs/gogs To quickly navigate a repository it would be nice to be able to skip directories with only a single subdirectory..

Tools/Git 2023.04.19

Git

git 3대 목적 버전관리 백업 협업 GIT2 - CLI 버전관리 working tree : 파일을 수정하는 곳 Staging Area : 버전을 만들려고 하는 파일들 Repository 저장소 : 버전이 저장되는 곳 git init : initialize repository .git: git repository git status: working tree status git add: add to staging area git commit: create version git commit -m “Message” git commit -am “Message” git log: show version git log —stat git diff: show shanges git log-p git checkout git..

Tools/Git 2023.03.13