上传网站到GitHub

时间:2016-05-18 01:17:44

标签: github

我有一个网站项目,桌面上有几个文件夹和子文件夹。我想将此网站复制到GitHub。使用GitHub桌面应用程序时最好的方法是什么?好像我只能上传单个文件但没有文件夹。

2 个答案:

答案 0 :(得分:0)

打开你的ssh并输入以下内容:

cd [full project folder name] (eg ~/desktop/project1)
git init
git add .
git commit -m "initial commit"
git remote add origin git@github.com:[YourUSERNAME]/[YourREPOSITORY].git 
git push -u origin master

步骤5可以替换为:

git remote add origin [Your HTTPS repository]

如果您在请求ssh密钥时遇到错误。 (尽管你应该尽可能地设置它们。)

http://i.imgur.com/X0FDTbq.png

答案 1 :(得分:0)

2种方式:

使用命令行:

1. Create repo in github
2. Click clone or download then copy the URL
3. In command line,Navigate to the root of your project folder
4. initialize: git init
5. track files: git add . 
6. commit: git commit -m "your message/comment"
7. add remote repository: git remote add origin 'paste the repo link'
8. git push origin master

使用APP。

1. Create Repo on Github site
2. On you app, click + sign, under clone tab and Find that repo, then clone
3. Put all your files/folders inside 
4. Then Sync