当前位置:  开发笔记 > 前端 > 正文

如何在github上传新代码?

如何解决《如何在github上传新代码?》经验,为你挑选了4个好方法。

我有一个包含所有编码项目的目录.

我想使用命令行上传(正确的术语?)它到GitHub.

我已经看过旧问题.

我知道如何克隆现有项目,以及如何在进行任何更改后推送它.

但在这种情况下,我想创建一个新项目并添加文件.

如何使用命令行完成此操作?



1> Veeti..:
git init
git add .
git commit -m "Initial commit"

在此之后,创建一个新的GitHub存储库并按照屏幕上的说明进行操作.


这个答案为初学者的"如何在GitHub中提交?"留下了太多信息.题.
@eSKay:你首先必须有一个本地仓库,然后添加一个遥控器,然后推送到那个遥控器.所有这些都是从命令行完成的.推送到github有一些先决条件,例如在github上创建一个项目并添加ssh密钥来识别自己.
我想这个问题的结果是因为github在其存储库中创建了一个README.md.问题通过'git pull -u origin master'指令解决了.这将github存储库合并到我的本地存储库中.然后我可以用'git push -u origin master'上传新版本

2> Rob Wilkerso..:

如果您尚未在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


如果用户为他们的存储库创建了一个ReadMe,我建议首先执行`pull`,否则他们将不得不进行合并.

3> mrmoje..:

只是为了补充其他答案,在我了解git之前,我正在寻找一些方法将现有代码上传到新的github(或其他git)repo.这是为新手节省时间的简报: -

假设您准备好了新的空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



4> ddewaele..:

您可以使用其存储库API(http://develop.github.com/p/repo.html)通过命令行创建GitHub存储库

使用命令行检查创建github存储库 自己动手做Android用例.

推荐阅读
手机用户2402852307
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有