Answers:
git init
git add .
git commit -m "Initial commit"
之后,创建一个新的GitHub存储库并按照屏幕上的说明进行操作。
如果您尚未在Github中创建项目,请在该站点上进行。如果有内存,它们会显示一个页面,告诉您确切如何将现有代码放入新存储库中。但是,冒着过于简化的风险,您将按照Veeti的说明进行操作,然后:
git remote add [name to use for remote] [private URI] # associate your local repository to the remote
git push [name of remote] master # push your repository to the remote
pull
如果用户为其存储库创建了自述文件,则建议先执行,否则他们将必须进行合并。
只是为了补充其他答案,在我了解git之前,我一直在寻找将现有代码上传到新github(或其他git)存储库的方法。这是可以为新手节省时间的简介:
假设您已经准备好新的空github或其他git repo:-
cd "/your/repo/dir"
git clone https://github.com/user_AKA_you/repoName # (creates /your/repo/dir/repoName)
cp "/all/your/existing/code/*" "/your/repo/dir/repoName/"
git add -A
git commit -m "initial commit"
git push origin master
或者,如果您已有本地git仓库
cd "/your/repo/dir/repoName"
#add your remote github or other git repo
git remote set-url origin https://github.com/user_AKA_you/your_repoName
git commit -m "new origin commit"
git push origin master
您可以使用其存储库API(http://develop.github.com/p/repo.html)通过命令行创建GitHub存储库。
在Linux中,使用以下命令在git中上传代码
1)git clone存储库
询问用户名和密码。
2)进入存储库目录。
3)git添加项目名称。
4)git commit -m'消息'
5)git push原始主机。
- 用户名密码
将新的更改代码更新到Github中
->转到目录,您的github上代码
-> git commit ProjectName -m'Message'
-> git push origin master。
从Github指南:将项目导入Github:(使用Github桌面版)
在GitHub桌面上设置您的项目
将项目放入GitHub Desktop的最简单方法是将包含项目文件的文件夹拖到主应用程序屏幕上。
如果要拖动现有的Git存储库,则可以向前跳过并将代码推送到GitHub.com。
如果该文件夹还不是Git存储库,则GitHub Desktop将提示您将其转换为存储库。将您的项目变成Git存储库不会删除或破坏文件夹中的文件,它只会创建一些隐藏的文件,让Git发挥作用。
在Windows中如下所示:(GitHub桌面3.0.5.2)
这不是最怪异的方法,但是可以。