2016-10-19 5 views
0

로컬 브랜치를 동기화하지 난 아직도 자식에 안돼서, 나는 (10 년 이상) 내 직장 생활의 대부분을 위해 SVN을 사용했습니다힘내 GitHub의 저장소

내가 눈치가 내가 로컬로 일하고 있어요 프로젝트 , 원격 github 저장소를 업데이트하지 않습니다. 실제로 github는 내가 1 년 전에 저지른 마지막이라고 생각합니다.

로컬로 커밋하고 정기적으로 밀어 넣고 원격 저장소를 확인한 적이 없습니다.

아마도 1 년 전쯤에 프로젝트 프로젝트의 확장을 위해 지점을 만들 겠지만 내 컴퓨터에 로컬 저장소가 만들어졌고 모든 커밋/푸시가 실제로 로컬에 머무르고있는 것으로 보입니다. . 그것은 내 생각이지만 잘못된 것일 수 있습니다. 에 (

C:\Users\charb\git\StockScreener-persistence [persistence ≡ +1 ~0 -0 !]> git remote show origin 
* remote origin 
    Fetch URL: https://github.com/charcode/StockScreener.git 
    Push URL: https://github.com/charcode/StockScreener.git 
    HEAD branch: master 
    Remote branches: 
    adding_persistence tracked 
    master    new (next fetch will store in remotes/origin) 
    persistence  tracked 
    reducing_barrier new (next fetch will store in remotes/origin) 
    Local branches configured for 'git pull': 
    adding_persistence merges with remote adding_persistence 
    persistence  merges with remote persistence 
    Local refs configured for 'git push': 
    adding_persistence pushes to adding_persistence (local out of date) 
    persistence  pushes to persistence  (up to date) 
C:\Users\charb\git\StockScreener-persistence [persistence ≡ +1 ~0 -0 !]> 

지속성 내가 원격 지점에 코드를 저지하기 위해 오늘 생성 된 지점입니다 :

git remote show origin 

출력은 다음과 같다 :

나는 명령을 실행 github)

나는 git log으로 달렸으며 다음과 같이 표시했습니다 (상단 만 포함).

https://github.com/charbelgereige/StockFilter/commits/persistence

을 그리고 나는 작년 (내 최근 변경 사항이 표시되지 않습니다! :

commit b7732f31dc86f55c2f822d8a514d7726ac32a70f 
Author: charcode <[email protected]> 
Date: Wed Oct 19 01:11:48 2016 +0100 

    most of the first step of DB persistence for symbols and sectors done. 

    something still not working in the @Autowired repositories 

commit c308d1fbb7ed0b11043a865cc60014e9ca5ccc69 
Author: charcode <[email protected]> 
Date: Sun Oct 16 09:01:00 2016 +0100 

당신은 GitHub의에서 저장소에 갈 경우, 마지막 년 11 월 2015 커밋 말한다 - 운 좋게 나는 그들에게 국부적으로있다) 어떤 아이디어?

+2

URL이 일치하지 않습니다. Git은 리모컨이'https : // github.com/charcode/StockScreener'이고 repo가'https : // github.com/charbelgereige/StockFilter'라고 말합니다. –

답변

0

이가 (다시 리모컨을 추가) 시도 :

git remote remove origin 
git remote add origin [email protected]:charbelgereige/StockFilter.git 

을 그리고 주석 중 하나에서 언급 한 바와 같이 다시

+0

고맙습니다. 만나다 – Charbel