Github断点续传(git clone 经常失败)

Github 拉取代码:

1. 使用git clone, 经常掉线还不能断点续传(不推荐)

$ git clone "Your remote path"

2. 使用git fetch, 能断点续传(推荐)

$ git init
$ git fetch "Your remote path"	# 失败重新执行
$ git checkout "Your branch"

3. 使用git pull, 能断点续传(推荐)

$ git init
$ git remote add origin "Your remote path"
$ git pull	# 失败重新执行
$ git checkout "Your branch"

你可能感兴趣的:(git,github)