Programming/git6 git pull 오류시 버전 초기화 git fetch -- allgit reset —-hard origin/main 2024. 10. 6. 강제 push 다양한 이유로 충돌깃에 push 후 로컬 uncommit 하고 다시 푸시하면 오류 git push -f origin main 2024. 6. 8. git 원격 저장소 repository 변경 git remote set-url origin {새로운GITURL} ex)git remote set-url origin https://github.com/testB/your.git 확인 하기git config --list 2024. 6. 8. 특정 브랜치만 클론 git clone -b {branch_name} --single-branch {저장소 URL} 2024. 6. 8. .gitignore가 작동하지 않을때 git rm -r --cached .git add .git commit -m "fixed untracked files" 2024. 6. 8. 태그(tag) 넣어 푸시하기 git tag -a v0.1 -m "Flutter 프로젝트 v0.1"git push origin --tags 2024. 6. 6. 이전 1 다음