- github-프로젝트에-기여하기
- gitlab--merge-request
- github-프로젝트-릴리즈-하는-법
- github보다-보면-read-only로-표시된-경우를-볼-수-있다-그-이유는
- Git자주 쓰는 기능들
-
Tutorial
-
Youtube Tutorial
- Gitlab 배우기
GitHub 프로젝트에 기여하기|🔝|
-
branch 가져오기 https://cjh5414.github.io/get-git-remote-branch/
-
How to Earn with Open Source Contributions
gh로그인 할때 브라우져 강제로 띄우기|🔝|
rust개발자를 위한 git사용법 기초지식|🔝|
git 처음 만들어서 git연결 |🔝|
echo "# Makefile_training" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/YoungHaKim7/Makefile_training.git
git push -u origin main
.gitignore 느낌표 표시가 무슨 의미인지 알아보자|🔝|
github 프로젝트 릴리즈 하는 법|🔝|
- https://jvns.ca/blog/2024/02/16/popular-git-config-options/
pull.ff only
또는pull.rebase true
- 두 설정 모두
git pull
을 실행할 때 브랜치가 상위 브랜치와 다를 경우 실수로 병합 커밋을 생성하는 것을 방지하기 위함. pull.rebase true
는 매번git pull --rebase
를 실행하는 것과 동일.pull.ff only
는 매번git pull --ff-only
를 실행하...
- 두 설정 모두
Git Cheat Sheet|🔝|
gitignore규칙 한글로 잘 정리됨( 모든 폴더 하위폴더까지 적용하는것까지!!)|🔝|
https://nochoco-lee.tistory.com/46
-
.gitignore
세팅 언어별로 다 정리되어 있다. 굿 👍💕🙌
git_training|🔝|
- git tutorial
git 사용법 (한글설명)|🔝|
GitLab : Merge Request|🔝|
Git and GitHub - 0 Experience to Professional in 1 Tutorial (Part 1) | SuperSimpleDev|🔝|
Git and GitHub - 0 Experience to Professional in 1 Tutorial (Part 2) | SuperSimpleDev|🔝|
Complete Git and GitHub Tutorial for Beginners | Apna College|🔝|
https://youtu.be/Ez8F0nW6S-w?si=WB0ZbFC18IHuXboi
git diff|🔝|
-
변화된 diff를 볼 수 있다. 굿 👍
git status -sb|🔝|
-
git status
- 이것만 썼는데 뒤에 옵션이 붙는다. 다 찾아보자
-
요약해서 status볼 수 있다.??
git add 다양한 활용법|🔝|
-
git add -u 이거 기능 찾아보자
-
다른 쓸만한 블로그
-
Git PULL vs FETCH | The Modern Coder|🔝|
GitLab에서 git 배우기|🔝|
https://docs.gitlab.com/ee/tutorials/learn_git.html
GitLab Publish 배포|🔝|
-
Rust로 Gitlab으로 배포하는 방법(How to make use of the GitLab CI for Rust Projects
-
How to Enable GitLab Pages for GitLab CE and EE
-
Gitlab DevSecOps 파이프라인 소개 : CI/CD 에서 보안검사 쉽게하기!
-
gitlab ci examples
-
성공한 gitlab?? https://gitlab.com/mike-ensor/gitlab-downloader
Github보다 보면 read-only로 표시된 경우를 볼 수 있다. 그 이유는|🔝|
git submodule 삭제하는법|🔝|
http://snowdeer.github.io/git/2018/08/01/how-to-remove-git-submodule/
- 먼저 git submodule deinit -f 명령어를 통해서 해당 모듈을 deinit 해줍니다.
git submodule deinit -f test_app
- 그 다음 .git/modules 폴더에 들어가서 해당 폴더를 삭제합니다.
rm -rf .git/modules/test_app
- 마지막으로 git에서 해당 폴더를 제거해주면 됩니다.
git rm -f test_app