怎么从本地的git上传到github
1个回答
展开全部
如果你的意思是,你已经在 Github 上建好了项目,clone 到本地,做完修改之后,想把本地的修改同步到 Github 上,那我说两说办法:
第一种:命令行操作
首先,在 Terminal 里面切换到 你项目所在的目录(windows 的话,用 cmd)
然后执行以下命令:
# 查看本地文件修改状况,可以看到你对项目文件的增删改的情况:
git status
# 如果有新添加的文件,执行下面命令将所有新添加的文件添加到版本库:
git add -A
# 将本地修改提交到本地版本库
git commit -m " something you want to descript your modify "
# PUSH 到远程版本
git push -u origin master
举个栗子:
NS:tput ns$ git status
On branch master
Your branch is up-to-date with 'origin/master'.
Changes to be committed:
(use "git reset HEAD <file>..." to unstage)
new file: index.js
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
modified: index.js
Untracked files:
(use "git add <file>..." to include in what will be committed)
.jshintrc
package.json
test/
NS:tput ns$ git commit -m 'create project tput'
[master b49f84b] create project tput
1 file changed, 33 insertions(+)
create mode 100644 index.js
NS:tput ns$ git push -u origin master
如果你不喜欢使用命令行,那可以使用 github 提供的桌面工具,百度知道好像不让发 URL,所以你可以自行百度 github 桌面版,去官网下载,有 Mac 和 Windows 版本。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询