使用git上传本地项目
作者:
乐观的猴 | 来源:发表于
2019-04-13 20:13 被阅读0次
- 首先, 安装 git 客户端软件. 下载地址 https://git-scm.com/downloads
- 进入项目文件夹下, 输入 git init, git 会在这个文件夹下, 创建一个 .git 的隐藏文件夹, 里面会存储git 的核心文件
- 使用 git add . 命令, 将项目中的所有文件, 提交到 暂存区
注意两点:
1 . git add 命令后面有个英文的句号 不要忘记 , 表示提交将该文件夹下所有文件
2 . 除项目本身的文件外,其他的先删除掉, 不要提交. 比如: 使用 idea 开发工具的话, 会生成 .idea 的文件夹, 这个文件夹, 是不用提交的. 使用 maven 管理代码的话, 会生成target 文件夹, 这个也是不用上传的, 不然每次都有很多差异文件
- 使用 git commit -m ' 提交说明' , 将文件提交到 git 仓库
- 使用 git remote add origin [ 远端仓库地址] 关联到远端仓库, 如 : git remote add origin htttps://abcd.git
- 使用 git pull --rebase origin master , 将本地仓库和远端仓库合并
- 使用 git push origin master , 推送到 远端分支
- 最后, 使用 git status 查询一下, 如下, 表示代码已经成功提交
$ git status
On branch master
Your branch is up to date with 'origin/master'.
本文标题:使用git上传本地项目
本文链接:https://www.haomeiwen.com/subject/mbmrwqtx.html
网友评论