Skip to content

YoungHaKim7/git_training

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

43 Commits
 
 
 
 
 
 

Repository files navigation

GitHub 프로젝트에 기여하기

https://git-scm.com/book/ko/v2/GitHub-GitHub-%ED%94%84%EB%A1%9C%EC%A0%9D%ED%8A%B8%EC%97%90-%EA%B8%B0%EC%97%AC%ED%95%98%EA%B8%B0



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 느낌표 표시가 무슨 의미인지 알아보자

https://codingdog.tistory.com/entry/gitignore-%ED%8C%8C%EC%9D%BC%EC%97%90-%EC%9E%88%EB%8A%94-%EB%AC%B4%EC%8B%9C-%ED%8C%A8%ED%84%B4%EA%B3%BC-%EB%8A%90%EB%82%8C%ED%91%9C-%ED%8C%A8%ED%84%B4%EC%9D%84-%EA%B0%84%EB%8B%A8%ED%95%98%EA%B2%8C-%EC%95%8C%EC%95%84%EB%B4%85%EC%8B%9C%EB%8B%A4


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


A collection of useful .gitignore templates


git_training

git tutorial https://git-scm.com/docs/gittutorial

git 사용법 (한글설명)

https://youtu.be/ZqhJnaAPokk

GitLab : Merge Request

https://youtu.be/XsyY50cn6s8


Git and GitHub - 0 Experience to Professional in 1 Tutorial (Part 1) | SuperSimpleDev

https://youtu.be/hrTQipWp6co

Git and GitHub - 0 Experience to Professional in 1 Tutorial (Part 2) | SuperSimpleDev

https://youtu.be/1ibmWyt8hfw


Complete Git and GitHub Tutorial for Beginners | Apna College

https://youtu.be/Ez8F0nW6S-w?si=WB0ZbFC18IHuXboi


git diff

git status -sb

  • git status

    • 이것만 썼는데 뒤에 옵션이 붙는다. 다 찾아보자
  • 요약해서 status볼 수 있다.??

git add 다양한 활용법



GitLab에서 git 배우기

https://docs.gitlab.com/ee/tutorials/learn_git.html

GitLab Publish 배포

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

git submodule update

https://nochoco-lee.tistory.com/88

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published