Git&GitHub9 백업 백업 #원격 저장소 연결 $ git remote add origin https://github.com/닉네임/레포이름.git #원격 저장소 확인 $ git remote -v #올리기 $ git push #처음 할때 어떤 원격저장소랑 기본적으로 연결할지 $ git push --set-upstream origin master #에러: 제어판>웹자격증명>깃허브 삭제> 일반자격증명 추가> https://api.github.com/변경할 계정 이름>푸시>로그인 remote: Permission to aaa/my-repo.git denied to aaa. fatal: unable to access 'https://github.com/aaa/my-repo.git/': The requested URL returned .. 2021. 12. 26. 깃 버전 관리 깃 버전 관리 #지금 계정 확인하기 $ git config user.name $ git config user.email #계정바꾸기 $ git config --global user.name 닉네임 $ git config --global user.email aaaa@gmail.com #버전관리 시작 $ git init . #상태 확인 $ git status #staging area에 추가 $ git add hello1.txt #버전 만들기 $ git commit -m "Message 1" #깃 버전 보기 $ git log -working tree: 수정한 것 -staging area: add한 것 -repository: 커밋한 것 #파일 상태 확인 $ git log --stat #차이점 확인 $ git d.. 2021. 12. 26. posix cli #posix cli: portable operating system interface -emulator 설치:git Bash -create/read/update/delete할거임 #명령어 -pwd: 내가 어디 있는가 -cd: change directory -cd ~: 홈디렉토리로 -ls: 파일 리스트 -ls --help: 매뉴얼 -ls -l:list long -touch showfile.txt: 빈 파일 만들기 -touch .hiddenfile.txt: '.'은 숨김파일 만들기 -ls -a: 숨긴 파일까지 다보기 -ls -la: l과 a둘다 -mkdir posix: posix라는 폴더 만들기 -mv dummy dummy1:더미폴더 더미1로 이름바꿈 -rm -r dummy1: 폴더지우기 -cd ../:부모.. 2021. 12. 26. 이전 1 2 다음