将文件上传到公共存储库GitHub

时间:2017-05-25 02:10:33

标签: git github

我想将文件上传到公共存储库Github,以便人们可以下载我的源代码... 你能救我吗?

谢谢..

1 个答案:

答案 0 :(得分:1)

确保您的计算机上安装了git并创建了一个github存储库

打开终端/ cmd

cd / path / to / image / directory

按照以下命令

git init
git add -A
git commit -m "Upload images"
git remote add origin https://github.com/your-git-repo.git
git push -u origin master

来自gihub的图像源示例 https://github.com/PenAndPapers/AngularWebPortfolio/blob/master/client/assets/images/header-bg.jpg