Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 452 Bytes

README.md

File metadata and controls

23 lines (15 loc) · 452 Bytes

l-haisu.github.io

l-haisu's host

visit me @ https://l-haisu.github.io/

git usage

推送文件到远程仓库,cd 进入文件夹,输入命令:

# 添加远程仓库别名为origin
git remote add origin 远程仓库地址
# 将当前目录下所有文件都添加到暂存区
git add .
# 将暂存区的文件提交到本地仓库
git commit -m "update infomation"
# 推送到远程仓库的某个分支
git push origin master