博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
git教程 入门
阅读量:5066 次
发布时间:2019-06-12

本文共 675 字,大约阅读时间需要 2 分钟。

快速上传已有代码到github

如何将最新代码上传到github,这里讲本地已有项目文件的情况(假如本地有一个helloworld的工程目录,目录中有很多项目文件。),步骤如下:

前提:已安装git客户端(),注册github账号。

一、在github上点击new repositories

 新建一个项目,名字可以和本地名字一样,也可以不一样。这里我们创建一样的工程名:helloworld

二、克隆项目到本地

解决fatal: destination path '.' already exists and is not an empty directory.

1. 从本地的git bash进入本地helloword目录。
2. git clone --no-checkout [url] temp
3. mv temp/.git .   #将 tmp 目录下的 .git 目录移到当前目录
4. rmdir temp
5. git reset --hard HEAD

三、上传代码到github

1.git bash进入本地helloword目录
2.用git status查看文件上传情况
3.用git add -A(把它们添加到暂存区)
4.git commit -m "代码提交信息"(所有本地代码提交到了 HEAD)
5.git push origin master(提交到远端仓库)

 

备注:

[url] 为github上项目的仓库地址

 

转载于:https://www.cnblogs.com/firebata/p/5157705.html

你可能感兴趣的文章
测试计划
查看>>
选择器
查看>>
Mysql与Oracle 的对比
查看>>
idea的maven项目无法引入junit
查看>>
jquery实现限制textarea输入字数
查看>>
thinkphp5 csv格式导入导出(多数据处理)
查看>>
fur168.com 改成5917电影
查看>>
PHP上传RAR压缩包并解压目录
查看>>
Codeforces 719B Anatoly and Cockroaches
查看>>
jenkins常用插件汇总
查看>>
c# 泛型+反射
查看>>
第九章 前后查找
查看>>
Python学习资料
查看>>
多服务器操作利器 - Polysh
查看>>
[LeetCode] Candy
查看>>
Jmeter学习系列----3 配置元件之计数器
查看>>
jQuery 自定义函数
查看>>
jq 杂
查看>>
jquery datagrid 后台获取datatable处理成正确的json字符串
查看>>
作业一
查看>>