今天楼主使用 ssh key 拉取仓库后,发现只能 commit 不能 push,特此记录。exception :can’t push to git://github.com/xxx/xxx.git use https://github.com/xxx/xxx.git
Step 1:get current remote
1 | git remote |
Step 2:reset remote url
1 | git remote set-url "your remote" git://github.com/"your .ssh config host "/demos.git |
这里咱们比较一下,是要对 url 做一定修改的
Step 3:push
由于楼主前面已经 commit 过了,所以这里直接 push
1 | git push |