Github 常用指令
git rm --cached "文件路径",不删除物理文件,仅将该文件从缓存中删除;
git init
git add
git commit -m “ ”// 提交暂存区文件到本地仓库中并提供注释
git branch -M main // 重命名branch
git remote add origin URL //连接仓库
git pull --rebase origin main // 代码合并
git push -u origin main //代码推送
Comments
Post a Comment