본문 바로가기
반응형

SWE326

let's get the git! My environment! 1) local environment : Window 10 2) server environment : linux 1) let's connect the remote repository first, there's already git repository that someone made for me hahaha and branch too comman line > git clone check the branch (i need to use branch, not master) > git branch *master (i couldn't find branches!!!!!!!!!!!!!! X() > git branch -a *master branch1 branch2 .... (with '-a.. 2019. 11. 12.
tortoiseGit 설치 / git svn 명령어 비교 tortoiseGit 설치 1. git for windows 설치 https://gitforwindows.org/ 2. TortoiseGit 설치 +언어팩(한국어) 설치 https://tortoisegit.org/download/ 3. git repository 가져오기 link url 연결 참고 링크 : http://kwangho9-develope.blogspot.com/2016/11/git-clienttortoisegit.html svn git 명령어 비교 참고 링크 : 제타위키 https://zetawiki.com/wiki/Svn,_Git_%EB%AA%85%EB%A0%B9%EC%96%B4_%EB%8C%80%EC%9D%91 git명령어 commit과 push의 차이 참조링크 : http://doyou.. 2019. 11. 6.
Qt 버튼 클릭 이벤트 코드 예제 Signal Slot등록 상황 버튼이 2개( m_buttonGraphicMode, m_buttonTableMode) 있고, 그 두개의 버튼을 m_buttonGroup이 싸고 있다. m_buttonGraphicMode 버튼을 클릭 시, 화면에 보여지는 stackedWidget을 Graphic으로 바꾸고, 해당 버튼을 비활성화한다. m_buttonTableMode 버튼을 클릭 시, 화면에 보여지는 stackedWidget을 Table로 바꾸고, 해당 버튼을 비활성화 한다. /* 객체 생성 */ QButtonGroup* m_buttonGroup = new QButtonGroup; QPushButton* m_buttonTableMode = new QPushButton; QPushButton* m_buttonGraphicMode = ne.. 2019. 10. 30.
SVN이란? / TortoiseSVN / 리눅스 SVN 명령어 SVN 이란 : 서브버전(Subversion)은 소프트웨어 버전 관리 시스템. 명령행 인터페이스에서 사용하는 명령어를 따서 SVN이라고 줄여서 부르기도 한다. 서브버전은 서버-클라이언트 모델을 따른다. 서버는 작업하는 컴퓨터내에 둘 수도 있고, 전산망에 연결된 별도의 컴퓨터에 두고 사용할 수도 있다. 서브버전 서버와 클라이언트는 http, https, svn, svn+ssh의 규약으로 통신한다. 브랜치와 태크 개념 설명 - repository(저장소) : 프로젝트의 파일 및 변경 정보가 저장되는 장소 - trunk : 메인 개발 소스. 개발 소스를 commit했을 대 개발 소스가 모이는 곳 - brunch : trunk에서 분기된 개발 소스. 실험적인 기능을 추가하거나 출시를 우한 안정화 버전 작업을 할.. 2019. 10. 30.
반응형