美文网首页
Ubuntu 上传代码至GitHub

Ubuntu 上传代码至GitHub

作者: Sheldonlv | 来源:发表于2019-10-04 21:26 被阅读0次

安装git

sudo apt-get update
sudo apt-get install git

配置你的github

git config --global user.name "你的呢称"
git config --global user.email "你的呢称@domain.com"

创建项目

GitHub创建项目仓库
项目链接

查看配置信息

git config --list

查看配置信息

进入项目文件

cd 项目名称

进入项目文件

初始化仓库地址

git init

初始化仓库

添加上传文件

git add .

(“.”的意思是当前目录下所有文件)

添加备注信息

git commit -m '备注信息'

添加备注

清空远程origin

git remote rm origin

指明地址

git remote add origin https://github.com/你的名字/项目名称.git

上传代码

git push -u origin master

随后输入用户名和密码即可


信息输入

完成

完成

相关文章

网友评论

      本文标题:Ubuntu 上传代码至GitHub

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