利用git上传文件到github

时间:2024-11-18 16:35:08

git add 文件名称/. “.”代表全部
git commit -m -a
git push -u origin master 推送到远程仓库
------------------------------------------

配置git到github

git config --global user.name "Your Name"
git config --global user.email "email@example.com"
设置与github的关联可用ssh
ssh-keygen -t rsa -C "your_email@youremail.com"
--------------------------------------------------

利用https上传github

clone https地址到本地

在本地新建一个文件夹,然后利用右键git bush(windows)或者cd
git clone https://github.com/zonghanli/123.git(右面的为你自己仓库的地址)

添加上传文件

git add . //注意add后面有一个空格和.

commit与push

git init
git commit -m ‘stumansys’
git remote add origin https://github.com/zonghanli/123.git(右面的为你自己仓库的地址)
git push origin master
(git remote 报错“”the key is already”的话,git remote rm origin)