如何在github上上传文件

1.下载git客户端

官方下载地址:Git - Downloads 根据你自己的系统 下载对应版本。

如何在github上上传文件_第1张图片

安装基本上默认就好,位置的命名不要中文,安装完右键选着你要的文件使用git bash here

2.建立git仓库,cd到你的本地项目根目录下,执行git命

git init

3.将项目的所有文件添加到仓库中

git add.

4.将add的文件commit到仓库

git commit -m"注释语句"

5.去github上创建自己的Repository

git remote add origin [email protected]:******/-.git

6.上传github之前,要先pull一下,执行如下命令:

git pull origin master

7.上传代码到github远程仓库

git push -u origin master

8.上传完成

你可能感兴趣的:(数据库开发)