工作区指的就是需要进行管理的文件夹,工作区有一个隐藏目录.git
,这个目录就是Git的版本库。
Git版本库包含两个重要的东西:
- 暂存区(stage/index)
- 分支与指针(master、HEAD)
- 创建版本库
cd ./Working Dir
git init
- 文件或文件夹添加至暂存区
git add Files
- 暂存区删除文件或文件夹
- 删除文件
git rm file
- 删除文件夹
git rm -r --cached files
- 暂存区提交至当前分支(默认为master分支)
git commit -m [something]
- 查看版本库与工作区状态
git status
- 创建远程仓库
git remote add [name] [[email protected]:beingWH/git.git]
- 推送至远程仓库
## 首次使用-u
git push -u [remote] [local branch]
- 更新远程仓库分支至本地暂存区
git fetch [remote] [remote branch]
- 拉取至本地工作区
git merge [remote/remote branch]
- 直接拉取远程分支至工作区
git pull [remote] [local branch]