美文网首页
Git 常用命令

Git 常用命令

作者: heheheyuanqing | 来源:发表于2017-07-12 10:49 被阅读13次

在学习过程中常使用github进行代码的存储,在上传到github中常用的命令:

来源网络
  • Workspace:工作区
  • Index / Stage:暂存区
  • Repository:仓库区(或本地仓库)
  • Remote:远程仓库

在本地目录新建一个git代码库
git init

git add *
git commit -m "test"

使用HTTP进行上传
git remote add origin https://github.com/iamcute/node.js.git

git push -u origin master

git status   显示有变更的文件
git branch   列出本地所有分支

相关文章

网友评论

      本文标题:Git 常用命令

      本文链接:https://www.haomeiwen.com/subject/tozvhxtx.html