我是git的新手,想把一些java文件推送到远程github存储库。这些文件不是一个项目,只是我想在github上分享的一些算法问题。
当我尝试git push
警报fatal: not a git repository: .git
有没有快速方法可以使用git bash将某些/单个文件推送到repo?感谢
答案 0 :(得分:0)
一种解决方案是在您的文件所在的文件夹中执行git init .
然后将github repo添加为远程:
git remote add origin https://<yourLogin>@github.com/<yourLogin>/<yourRepo>
git add .
git commit -m "My first files"
git push -u origin master
另一种方法,特别是如果GitHub上的远程仓库不为空(因为README
和LICENSE
文件),则克隆该仓库:
git clone https://github.com/<yourLogin>/<yourRepo>
cd <yourRepo>
# copy your files there
git add .
git commit -m "My first files"
git push -u origin master