接下来的文章将针对不同的场景需求,对Git的命令和操作进行解析和实践。本文依据不同场景对操作进行归类,以此对Git的功能有个全面的认识。
Git自助服务:
git help 命令
可获取命令详情
git config
vim file
git init
git clone
git add
git add
git commit [-a]
git commit --amend
git revert
| git reset --soft
git reset [--mixed]
| git reset [commit] file
git reset --hard
| git checkout [commit] file
git stach
| git stash pop
git fsck
|git log
|git log -g
|git reflog
git clean -df
git status
git diff
|git diff [commit]
|git diff --cached commit
|git diff [commit] [commit]
git log [-g]
|git reflog
git remote [-v]
git remote add
git remote rename old-name new-name
git remote rm name
git fetch
| git pull
git push
git tag
git tag
git branch
| git checkout -b
git branch -d
git merge
git rebase
在了解Git的功能后,之后章节将根据这些场景下的操作和命令进行详细分析和实践。