fatal: not a git repository (or any of the parent directories): .git
当我git pull的时候,发现提示我上面的错误,后来发现git init 还是报错,后来我将我的项目从Zto下面删除掉后,然后
C:\Zto>git init
Initialized empty Git repository in C:/Zto/sjjsc/.git/
C:\Zto>git init
Initialized empty Git repository in C:/Zto/.git/
C:\Zto>git remote add origin http://xxxx/sjjsc.git
C:\Zto>git clone http://xxx/sjjsc.git
Cloning into 'sjjsc'...
remote: Counting objects: 766, done.
remote: Compressing objects: 100% (391/391), done.
Rremote: Total 766 (delta 458), reused 637 (delta 349)eceiving objects: 41 MiB | 6.82
Receiving objects: 100% (766/766), 11.56 MiB | 14.79 MiB/s, done.
Resolving deltas: 100% (458/458), done.
C:\Zto>git branch -a
C:\Zto>git checkout develop
error: pathspec 'develop' did not match any file(s) known to git.
C:\Zto>git init
Reinitialized existing Git repository in C:/Zto/.git/
C:\Zto>git pull origin develop
remote: Counting objects: 766, done.
remote: Compressing objects: 100% (391/391), done.
Receiving objremote: Total 766 (delta 458), reused 637 (delta 349)ects: 89%
Receiving objects: 100% (766/766), 11.56 MiB | 26.12 MiB/s, done.
Resolving deltas: 100% (458/458), done.
From http://git.ztosys.com/BigDataPlatform/sjjsc
* branch develop -> FETCH_HEAD
* [new branch] develop -> origin/develop
C:\Zto>git branch -a
* master
remotes/origin/develop
C:\Zto>git checkout develop
Switched to a new branch 'develop'
Branch 'develop' set up to track remote branch 'develop' from 'origin'.
C:\Zto>git branch -a
* develop
master
remotes/origin/develop
C:\Zto>cd sjjsc
C:\Zto\sjjsc>git branch -a
* develop
remotes/origin/HEAD -> origin/develop
remotes/origin/develop
remotes/origin/master
C:\Zto\sjjsc>git pull
Already up to date.