在初始化仓库之前,要确认ssh key是否正确
ssh -T [email protected]
正确的结果如下
Hi username! You‘ve successfully authenticated, but GitHub does not provide shell access.
在你的github上创建一个远程的respository
ps:不要勾选Initilalize this repository ...,因为我们要在本地 init respository
然后切换到本地仓库目录下执行
git initgit add . git commit -m ‘init_commit‘ git remote add origin [email protected]:gordonFm/DemoRepo.git git push -u origin master
执行后在目录下会创建一个.init的目录,并且你的本地仓库也已经push到github上面了
时间: 2024-10-13 03:31:10