删除远程仓库中的某个文件
git rm -r --cached some-directory
git commit -m ‘Remove the now ignored directory "some-directory"‘
git push origin master
初始化仓库
git init
查看仓库的状态
git status
向暂存区中添加文件
git add
保存仓库的历史记录
git commit
查看提交日志
git log
查看更改前后的差别
git diff
添加远程仓库
git remote add
推送至远程仓库
1.推送至master分支
git push -u origin master
2.推送至master以外的分支
例如:在本地仓库创建了feature-D分支;
git checkout -b feature-D
git push -u origin feature-D
时间: 2024-11-06 19:00:37