如何在github上传新鲜的代码?
我有我所有的编码项目的目录。
我想用命令行上传(正确的术语?)到GitHub 。
我已经看了老问题 。
我知道如何克隆现有的项目,以及如何在做出任何更改之后推送它。
但在这种情况下,我想创build一个新的项目并添加文件。
我怎样才能完成这个使用命令行?
git init git add . git commit -m "Initial commit"
在此之后,创build一个新的GitHub存储库并按照屏幕上的说明进行操作。
如果您还没有在Github中创build项目,请在该站点上执行此操作。 如果内存服务,它们会显示一个页面,告诉您如何将现有的代码存入新的存储库。 然而,冒着过分简化的风险,你会按照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
只是添加到其他答案,在我知道我的方式周围git之前,我正在寻找一些方法来上传现有的代码到一个新的github(或其他git)回购。 以下是为newbs节省时间的简介:
假设你有新的空的github或者其他的git仓库:
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 )通过命令行创buildGitHub存储库,
使用命令行检查创buildgithub存储库 自己动手做Android例如用法。
自从你发布这个问题以来,Github似乎已经改变了他们的布局。 我刚刚创build了一个存储库,它用来在屏幕上给你说明。 看来他们已经改变了这种做法。
以下是他们用于回购创build的信息:
创build一个回购·GitHub帮助
在Linux中使用下面的命令在git中上传代码
1)git克隆库
请求用户名和密码。
2)得到respositiory目录。
3)git添加项目名称。
4)git commit -m'messgage'。
5)git push origin master。
– 用户名密码
将新的更改代码更新到Github
– >转到目录你的github代码
– > git commit ProjectName -m'Message'
– > git push origin master。
从Github指南:让你的项目到Github :(使用Github桌面版)
在GitHub桌面上设置您的项目
将项目放到GitHub桌面的最简单方法是将包含项目文件的文件夹拖到主应用程序屏幕上。
如果您正在拖动现有的Git存储库,则可以跳过并将代码推送到GitHub.com。
如果文件夹不是Git存储库,GitHub桌面会提示你把它变成一个存储库。 把你的项目变成一个Git仓库不会删除或破坏你的文件夹中的文件 – 它只会创build一些隐藏的文件,让Git做它的魔力。
在Windows中,它看起来像这样:(GitHub桌面3.0.5.2)
这不是最令人讨厌的方式,但它的工作原理。