├── .gitignore ├── 01주 1. 2024 OSS 교과목 및 학과 소개.pdf ├── 01주 2. 교과목 OSS 수업을 위한 준비.pdf ├── 01주 3. 04. 2-1 깃 설치와 실행.pdf ├── 05주 대면수업 Pull Request 기초.pdf ├── 2024-2 [Quiz] OSS 01~ 08주.pdf ├── 2024-2 [Quiz] OSS 10~ 13주.pdf ├── 20241002 git cheat sheet by kang.pdf ├── LICENSE ├── README.md ├── [기출문제] OSS 2023-2 중간고사.pdf ├── sync-fork.md └── 원격강좌 교육자료 ├── 01. 1-1 강의개요.pdf ├── 02. 1-2 버전관리 개요.pdf ├── 03. 1-3 깃과 깃허브 개요.pdf ├── 04. 2-1 깃 설치와 실행.pdf ├── 05. 2-2 [실습]깃 설정과 저장소 생성.pdf ├── 06. 2-3 비주얼스튜디오코드와 리눅스 명령.pdf ├── 07. 3-1 깃 커밋과 로그.pdf ├── 08. 3-2 로그 이력과 과거 여행.pdf ├── 09. 3-3 [실습] 커밋과 로그 이력, 과거 여행.pdf ├── 10. 4-1 파일 비교 diff.pdf ├── 11. 4-2 파일 삭제 rm과 복원 restore.pdf ├── 12. 4-3 [실습] 파일 diff rm restore.pdf ├── 13. 5-1 버전과 태그 활용(실습).pdf ├── 14. 5-2 브랜치 개요와 관리.pdf ├── 15. 5-3 [실습] 브랜치 개요와 관리.pdf ├── 16. 6-1 원격 저장소 복제 Clone.pdf ├── 17. 6-2 지역과 원격 저장소 연동 push pull.pdf ├── 18. 6-3 [실습] 지역과 원격 저장소 브랜치 연동.pdf ├── 19. 7-1 오픈소스소프트웨어.pdf ├── 20. 7-2 임시저장 stash.pdf ├── 21. 7-3 [실습] 임시저장 stash.pdf ├── 22. 8-1 다양한 브랜치 병합.pdf ├── 23. 8-2 [실습] 다양한 브랜치 병합.pdf ├── 24. 8-3 병합 충돌과 해결.pdf ├── 25. 9-1 브랜치 리베이스 rebase.pdf ├── 26. 9-2 커밋 이력 수정.pdf ├── 27. 9-3 비주얼스튜디오코드에서 깃 활용.pdf ├── 28. 10-1 버전 되돌리기 reset.pdf ├── 29. 10-2 [실습] 버전 되돌리기 reset.pdf ├── 30. 10-3 커밋 취소 revert.pdf └── init.md /.gitignore: -------------------------------------------------------------------------------- 1 | # Byte-compiled / optimized / DLL files 2 | __pycache__/ 3 | *.py[cod] 4 | *$py.class 5 | 6 | # C extensions 7 | *.so 8 | 9 | # Distribution / packaging 10 | .Python 11 | build/ 12 | develop-eggs/ 13 | dist/ 14 | downloads/ 15 | eggs/ 16 | .eggs/ 17 | lib/ 18 | lib64/ 19 | parts/ 20 | sdist/ 21 | var/ 22 | wheels/ 23 | share/python-wheels/ 24 | *.egg-info/ 25 | .installed.cfg 26 | *.egg 27 | MANIFEST 28 | 29 | # PyInstaller 30 | # Usually these files are written by a python script from a template 31 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 32 | *.manifest 33 | *.spec 34 | 35 | # Installer logs 36 | pip-log.txt 37 | pip-delete-this-directory.txt 38 | 39 | # Unit test / coverage reports 40 | htmlcov/ 41 | .tox/ 42 | .nox/ 43 | .coverage 44 | .coverage.* 45 | .cache 46 | nosetests.xml 47 | coverage.xml 48 | *.cover 49 | *.py,cover 50 | .hypothesis/ 51 | .pytest_cache/ 52 | cover/ 53 | 54 | # Translations 55 | *.mo 56 | *.pot 57 | 58 | # Django stuff: 59 | *.log 60 | local_settings.py 61 | db.sqlite3 62 | db.sqlite3-journal 63 | 64 | # Flask stuff: 65 | instance/ 66 | .webassets-cache 67 | 68 | # Scrapy stuff: 69 | .scrapy 70 | 71 | # Sphinx documentation 72 | docs/_build/ 73 | 74 | # PyBuilder 75 | .pybuilder/ 76 | target/ 77 | 78 | # Jupyter Notebook 79 | .ipynb_checkpoints 80 | 81 | # IPython 82 | profile_default/ 83 | ipython_config.py 84 | 85 | # pyenv 86 | # For a library or package, you might want to ignore these files since the code is 87 | # intended to run in multiple environments; otherwise, check them in: 88 | # .python-version 89 | 90 | # pipenv 91 | # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. 92 | # However, in case of collaboration, if having platform-specific dependencies or dependencies 93 | # having no cross-platform support, pipenv may install dependencies that don't work, or not 94 | # install all needed dependencies. 95 | #Pipfile.lock 96 | 97 | # poetry 98 | # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. 99 | # This is especially recommended for binary packages to ensure reproducibility, and is more 100 | # commonly ignored for libraries. 101 | # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control 102 | #poetry.lock 103 | 104 | # pdm 105 | # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control. 106 | #pdm.lock 107 | # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it 108 | # in version control. 109 | # https://pdm.fming.dev/latest/usage/project/#working-with-version-control 110 | .pdm.toml 111 | .pdm-python 112 | .pdm-build/ 113 | 114 | # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm 115 | __pypackages__/ 116 | 117 | # Celery stuff 118 | celerybeat-schedule 119 | celerybeat.pid 120 | 121 | # SageMath parsed files 122 | *.sage.py 123 | 124 | # Environments 125 | .env 126 | .venv 127 | env/ 128 | venv/ 129 | ENV/ 130 | env.bak/ 131 | venv.bak/ 132 | 133 | # Spyder project settings 134 | .spyderproject 135 | .spyproject 136 | 137 | # Rope project settings 138 | .ropeproject 139 | 140 | # mkdocs documentation 141 | /site 142 | 143 | # mypy 144 | .mypy_cache/ 145 | .dmypy.json 146 | dmypy.json 147 | 148 | # Pyre type checker 149 | .pyre/ 150 | 151 | # pytype static type analyzer 152 | .pytype/ 153 | 154 | # Cython debug symbols 155 | cython_debug/ 156 | 157 | # PyCharm 158 | # JetBrains specific template is maintained in a separate JetBrains.gitignore that can 159 | # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore 160 | # and can be added to the global gitignore or merged into this file. For a more nuclear 161 | # option (not recommended) you can uncomment the following to ignore the entire idea folder. 162 | #.idea/ 163 | -------------------------------------------------------------------------------- /01주 1. 2024 OSS 교과목 및 학과 소개.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai7dnn/2024-OSS/942014605df6d4bb689139e1bf78868d03dd35cf/01주 1. 2024 OSS 교과목 및 학과 소개.pdf -------------------------------------------------------------------------------- /01주 2. 교과목 OSS 수업을 위한 준비.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai7dnn/2024-OSS/942014605df6d4bb689139e1bf78868d03dd35cf/01주 2. 교과목 OSS 수업을 위한 준비.pdf -------------------------------------------------------------------------------- /01주 3. 04. 2-1 깃 설치와 실행.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai7dnn/2024-OSS/942014605df6d4bb689139e1bf78868d03dd35cf/01주 3. 04. 2-1 깃 설치와 실행.pdf -------------------------------------------------------------------------------- /05주 대면수업 Pull Request 기초.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai7dnn/2024-OSS/942014605df6d4bb689139e1bf78868d03dd35cf/05주 대면수업 Pull Request 기초.pdf -------------------------------------------------------------------------------- /2024-2 [Quiz] OSS 01~ 08주.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai7dnn/2024-OSS/942014605df6d4bb689139e1bf78868d03dd35cf/2024-2 [Quiz] OSS 01~ 08주.pdf -------------------------------------------------------------------------------- /2024-2 [Quiz] OSS 10~ 13주.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai7dnn/2024-OSS/942014605df6d4bb689139e1bf78868d03dd35cf/2024-2 [Quiz] OSS 10~ 13주.pdf -------------------------------------------------------------------------------- /20241002 git cheat sheet by kang.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai7dnn/2024-OSS/942014605df6d4bb689139e1bf78868d03dd35cf/20241002 git cheat sheet by kang.pdf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2024 Hwan Soo Kang 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 2024-OSS 수정 2 | 2024-2 오픈소스소프트웨어 교과목 3 | 4 | ## 강환수 교수의 유튜브 강좌 5 | - [걍교수의 AIT code](https://www.youtube.com/@aitcode) 6 | - [오픈소스소프트웨어](https://www.youtube.com/watch?v=m0nk6c8bjYo&list=PLuiwxLXzcfdVnI_flMq1CVFyHPG6f8J42) 7 | 8 | ## 중간고사와 기말고사 9 | - 중간고사 범위 10 | - 1주와 6주 대면수업 내용 11 | - 2주에서 8주까지 온라인 원격수업(#01-18 동영상과 자료) 12 | - 기말고사 범위 13 | - 전체 수업 범위 14 | 15 | ## 개인과제: 다음 내용을 디자인 함께 평가 16 | - 개인 github 저장소 구축 17 | - 잔디심기(커밋을 자주 하도록) 18 | - 개인 github 첫 페이지 꾸미기(readme.md 파일 작성) 19 | - OSS 교과목 내용(Git & GitHub)의 정리 20 | - 자기주도학습에 의해 하나의 저장소 생성 후 구축 21 | - 개인과제 주소 업로드 22 | - [A반](https://docs.google.com/spreadsheets/d/1h9_Mlgt9wpgLoEXxeexH0rVLXnje0cYH-NCQoqE1eXg/edit?usp=sharing) 23 | - [B반](https://docs.google.com/spreadsheets/d/1N_nsCXXCHMTXm5z-7ULzgeUfiKECTVSyBsfPgSHF98I/edit?usp=sharing) 24 | - 과제마감일 25 | - 2024.12.06(금) 26 | 27 | ## 팀과제: 다음 내용을 디자인과 팀원들의 협업 활동 평가 28 | - 내용과 함께 깃허브의 다양한 기능 사용 평가 29 | - 이슈, 마일스톤, 레이블, PR, 위키, 프로젝트 등 30 | - 팀(수업의 같은 반 4-7명)별 github 저장소 구축 31 | - 내용 파일은 md 파일로 작성 32 | - 팀원의 활동이 축적 33 | - 팀과제 주소 업로드 34 | - [A반](https://docs.google.com/spreadsheets/d/1h9_Mlgt9wpgLoEXxeexH0rVLXnje0cYH-NCQoqE1eXg/edit?usp=sharing) 35 | - [B반](https://docs.google.com/spreadsheets/d/1N_nsCXXCHMTXm5z-7ULzgeUfiKECTVSyBsfPgSHF98I/edit?usp=sharing) 36 | - 과제마감일 37 | - 2024.12.06(금) 38 | 39 | > - 사례1: ‘오픈소스소프트웨어 보고서’ 구축 40 | > - OSS 개요, OSS 역사 41 | > - 대표적 OSS 소개 42 | > - OSS 저작권 43 | > - 사례2: 실제 소프트웨어개발 구축 44 | > - chatGPT로 최초 소프트웨어를 생성 45 | > - 팀원들이 더욱 개선해 나가는 협업 과정(커밋에 여러 번 발생) 46 | 47 | ## 깃과 깃허브를 사랑하기 위한 유튜브 영상 48 | - [드림코딩 깃과 깃허브 기초 6분](https://www.youtube.com/watch?v=lPrxhA4PLoA) 49 | - [드림코딩 깃과 깃허브 이해 50분](https://www.youtube.com/watch?v=Z9dvM7qgN9s) 50 | - [드림코딩 Vim 이해 25분](https://www.youtube.com/watch?v=cY0JxzENBJg) 51 | - [드림코딩 리눅스/유닉스 쉘 명령어 기초 30분](https://www.youtube.com/watch?v=EL6AQl-e3AQ) 52 | - [얄팍한 코딩사전 2시간20분](https://www.youtube.com/watch?v=1I3hMwQU6GU), [강좌자료](https://www.yalco.kr/lectures/git-github/) 53 | - [오픈소스 소프트웨어 실습 10. 소스 관리, add commit log show, HGU SW 중심대, 한동대 SW중심대학 사업단](https://www.youtube.com/watch?v=KQxBSLC5rjI) 54 | - [오픈소스 소프트웨어 실습 11. diff rever reset, HGU SW 중심대, 한동대 SW중심대학 사업단](https://www.youtube.com/watch?v=eITEQ196Rc4) 55 | 56 | 57 | ## 깃과 깃허브를 사랑하기 위한 참조 사이트 58 | 59 | ### 전체 60 | - [Git 좀 잘 써보자](https://wikidocs.net/book/1902) 61 | - [간편 Git](https://mylko72.gitbooks.io/git/content) 62 | 63 | ## 부교재(참고 자료) 64 | - Git 교과서 65 | - [인터넷 사이트](https://git.jiny.dev) 66 | - [출판사 제공 ebook](https://thebook.io/080212) 67 | - [저자의 실습 github 저장소](https://github.com/jinygit) 68 | 69 | ## 주요 오픈 소스 소프트웨어(OSS) 저장소 70 | - 프로그래밍 언어 71 | - [CPython, 표준파이썬](https://github.com/python/cpython) 72 | - [Apple swift, 앱개발 언어](https://github.com/apple/swift) 73 | - 운영체제 74 | - [리눅스](https://github.com/torvalds/linux) 75 | - 편집기 76 | - [vscode](https://github.com/microsoft/vscode) 77 | - [atom](https://github.com/atom/atom) 78 | - 버전관리시스템 79 | - [Git](https://git.kernel.org/pub/scm/git/git.git) 80 | - [Git](https://github.com/git/git) 81 | - 인공지능 라이브러리 82 | - [tensorflow](https://github.com/tensorflow/tensorflow) 83 | - [pytorch](https://github.com/pytorch/pytorch) 84 | - [scikit-learn](https://github.com/scikit-learn/scikit-learn) 85 | - 웹프로그래밍 프레임워크, 라이브러리 86 | - [boostrap(front-end framework)](https://github.com/twbs/bootstrap) 87 | - [react(JavaScript library for building user interfaces)](https://github.com/facebook/react) 88 | - [Vue.js(progressive framework for building user interfaces)](https://github.com/vuejs/vue) 89 | 90 | 91 | -------------------------------------------------------------------------------- /[기출문제] OSS 2023-2 중간고사.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai7dnn/2024-OSS/942014605df6d4bb689139e1bf78868d03dd35cf/[기출문제] OSS 2023-2 중간고사.pdf -------------------------------------------------------------------------------- /sync-fork.md: -------------------------------------------------------------------------------- 1 | # Sync-fork 메뉴 2 | 3 | ![image](https://github.com/user-attachments/assets/d51181be-b8fe-44cd-9437-e492f758b74f) 4 | 5 | -------------------------------------------------------------------------------- /원격강좌 교육자료/01. 1-1 강의개요.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai7dnn/2024-OSS/942014605df6d4bb689139e1bf78868d03dd35cf/원격강좌 교육자료/01. 1-1 강의개요.pdf -------------------------------------------------------------------------------- /원격강좌 교육자료/02. 1-2 버전관리 개요.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai7dnn/2024-OSS/942014605df6d4bb689139e1bf78868d03dd35cf/원격강좌 교육자료/02. 1-2 버전관리 개요.pdf -------------------------------------------------------------------------------- /원격강좌 교육자료/03. 1-3 깃과 깃허브 개요.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai7dnn/2024-OSS/942014605df6d4bb689139e1bf78868d03dd35cf/원격강좌 교육자료/03. 1-3 깃과 깃허브 개요.pdf -------------------------------------------------------------------------------- /원격강좌 교육자료/04. 2-1 깃 설치와 실행.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai7dnn/2024-OSS/942014605df6d4bb689139e1bf78868d03dd35cf/원격강좌 교육자료/04. 2-1 깃 설치와 실행.pdf -------------------------------------------------------------------------------- /원격강좌 교육자료/05. 2-2 [실습]깃 설정과 저장소 생성.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai7dnn/2024-OSS/942014605df6d4bb689139e1bf78868d03dd35cf/원격강좌 교육자료/05. 2-2 [실습]깃 설정과 저장소 생성.pdf -------------------------------------------------------------------------------- /원격강좌 교육자료/06. 2-3 비주얼스튜디오코드와 리눅스 명령.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai7dnn/2024-OSS/942014605df6d4bb689139e1bf78868d03dd35cf/원격강좌 교육자료/06. 2-3 비주얼스튜디오코드와 리눅스 명령.pdf -------------------------------------------------------------------------------- /원격강좌 교육자료/07. 3-1 깃 커밋과 로그.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai7dnn/2024-OSS/942014605df6d4bb689139e1bf78868d03dd35cf/원격강좌 교육자료/07. 3-1 깃 커밋과 로그.pdf -------------------------------------------------------------------------------- /원격강좌 교육자료/08. 3-2 로그 이력과 과거 여행.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai7dnn/2024-OSS/942014605df6d4bb689139e1bf78868d03dd35cf/원격강좌 교육자료/08. 3-2 로그 이력과 과거 여행.pdf -------------------------------------------------------------------------------- /원격강좌 교육자료/09. 3-3 [실습] 커밋과 로그 이력, 과거 여행.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai7dnn/2024-OSS/942014605df6d4bb689139e1bf78868d03dd35cf/원격강좌 교육자료/09. 3-3 [실습] 커밋과 로그 이력, 과거 여행.pdf -------------------------------------------------------------------------------- /원격강좌 교육자료/10. 4-1 파일 비교 diff.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai7dnn/2024-OSS/942014605df6d4bb689139e1bf78868d03dd35cf/원격강좌 교육자료/10. 4-1 파일 비교 diff.pdf -------------------------------------------------------------------------------- /원격강좌 교육자료/11. 4-2 파일 삭제 rm과 복원 restore.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai7dnn/2024-OSS/942014605df6d4bb689139e1bf78868d03dd35cf/원격강좌 교육자료/11. 4-2 파일 삭제 rm과 복원 restore.pdf -------------------------------------------------------------------------------- /원격강좌 교육자료/12. 4-3 [실습] 파일 diff rm restore.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai7dnn/2024-OSS/942014605df6d4bb689139e1bf78868d03dd35cf/원격강좌 교육자료/12. 4-3 [실습] 파일 diff rm restore.pdf -------------------------------------------------------------------------------- /원격강좌 교육자료/13. 5-1 버전과 태그 활용(실습).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai7dnn/2024-OSS/942014605df6d4bb689139e1bf78868d03dd35cf/원격강좌 교육자료/13. 5-1 버전과 태그 활용(실습).pdf -------------------------------------------------------------------------------- /원격강좌 교육자료/14. 5-2 브랜치 개요와 관리.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai7dnn/2024-OSS/942014605df6d4bb689139e1bf78868d03dd35cf/원격강좌 교육자료/14. 5-2 브랜치 개요와 관리.pdf -------------------------------------------------------------------------------- /원격강좌 교육자료/15. 5-3 [실습] 브랜치 개요와 관리.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai7dnn/2024-OSS/942014605df6d4bb689139e1bf78868d03dd35cf/원격강좌 교육자료/15. 5-3 [실습] 브랜치 개요와 관리.pdf -------------------------------------------------------------------------------- /원격강좌 교육자료/16. 6-1 원격 저장소 복제 Clone.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai7dnn/2024-OSS/942014605df6d4bb689139e1bf78868d03dd35cf/원격강좌 교육자료/16. 6-1 원격 저장소 복제 Clone.pdf -------------------------------------------------------------------------------- /원격강좌 교육자료/17. 6-2 지역과 원격 저장소 연동 push pull.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai7dnn/2024-OSS/942014605df6d4bb689139e1bf78868d03dd35cf/원격강좌 교육자료/17. 6-2 지역과 원격 저장소 연동 push pull.pdf -------------------------------------------------------------------------------- /원격강좌 교육자료/18. 6-3 [실습] 지역과 원격 저장소 브랜치 연동.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai7dnn/2024-OSS/942014605df6d4bb689139e1bf78868d03dd35cf/원격강좌 교육자료/18. 6-3 [실습] 지역과 원격 저장소 브랜치 연동.pdf -------------------------------------------------------------------------------- /원격강좌 교육자료/19. 7-1 오픈소스소프트웨어.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai7dnn/2024-OSS/942014605df6d4bb689139e1bf78868d03dd35cf/원격강좌 교육자료/19. 7-1 오픈소스소프트웨어.pdf -------------------------------------------------------------------------------- /원격강좌 교육자료/20. 7-2 임시저장 stash.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai7dnn/2024-OSS/942014605df6d4bb689139e1bf78868d03dd35cf/원격강좌 교육자료/20. 7-2 임시저장 stash.pdf -------------------------------------------------------------------------------- /원격강좌 교육자료/21. 7-3 [실습] 임시저장 stash.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai7dnn/2024-OSS/942014605df6d4bb689139e1bf78868d03dd35cf/원격강좌 교육자료/21. 7-3 [실습] 임시저장 stash.pdf -------------------------------------------------------------------------------- /원격강좌 교육자료/22. 8-1 다양한 브랜치 병합.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai7dnn/2024-OSS/942014605df6d4bb689139e1bf78868d03dd35cf/원격강좌 교육자료/22. 8-1 다양한 브랜치 병합.pdf -------------------------------------------------------------------------------- /원격강좌 교육자료/23. 8-2 [실습] 다양한 브랜치 병합.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai7dnn/2024-OSS/942014605df6d4bb689139e1bf78868d03dd35cf/원격강좌 교육자료/23. 8-2 [실습] 다양한 브랜치 병합.pdf -------------------------------------------------------------------------------- /원격강좌 교육자료/24. 8-3 병합 충돌과 해결.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai7dnn/2024-OSS/942014605df6d4bb689139e1bf78868d03dd35cf/원격강좌 교육자료/24. 8-3 병합 충돌과 해결.pdf -------------------------------------------------------------------------------- /원격강좌 교육자료/25. 9-1 브랜치 리베이스 rebase.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai7dnn/2024-OSS/942014605df6d4bb689139e1bf78868d03dd35cf/원격강좌 교육자료/25. 9-1 브랜치 리베이스 rebase.pdf -------------------------------------------------------------------------------- /원격강좌 교육자료/26. 9-2 커밋 이력 수정.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai7dnn/2024-OSS/942014605df6d4bb689139e1bf78868d03dd35cf/원격강좌 교육자료/26. 9-2 커밋 이력 수정.pdf -------------------------------------------------------------------------------- /원격강좌 교육자료/27. 9-3 비주얼스튜디오코드에서 깃 활용.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai7dnn/2024-OSS/942014605df6d4bb689139e1bf78868d03dd35cf/원격강좌 교육자료/27. 9-3 비주얼스튜디오코드에서 깃 활용.pdf -------------------------------------------------------------------------------- /원격강좌 교육자료/28. 10-1 버전 되돌리기 reset.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai7dnn/2024-OSS/942014605df6d4bb689139e1bf78868d03dd35cf/원격강좌 교육자료/28. 10-1 버전 되돌리기 reset.pdf -------------------------------------------------------------------------------- /원격강좌 교육자료/29. 10-2 [실습] 버전 되돌리기 reset.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai7dnn/2024-OSS/942014605df6d4bb689139e1bf78868d03dd35cf/원격강좌 교육자료/29. 10-2 [실습] 버전 되돌리기 reset.pdf -------------------------------------------------------------------------------- /원격강좌 교육자료/30. 10-3 커밋 취소 revert.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai7dnn/2024-OSS/942014605df6d4bb689139e1bf78868d03dd35cf/원격강좌 교육자료/30. 10-3 커밋 취소 revert.pdf -------------------------------------------------------------------------------- /원격강좌 교육자료/init.md: -------------------------------------------------------------------------------- 1 | # 원격강좌 교육자료 2 | --------------------------------------------------------------------------------