Commit f9ebd6ed by TongZuu

Update git-command.md

parent 3aa00d58
......@@ -76,6 +76,33 @@ git apply my.patch
# Checkout and revert
#### git checkout to commit
ย้าย source code ไปยังจุดที่ commit ไว้
format : git checkout {commit id}
```
git checkout 8ec6
```
#### git checkout to master
ย้าย source code ไปยังที่ commit ไว้ล่าสุด
```
git checkout master
```
#### git revert to commit
ถอย source code ไปยังจุดที่ commit ไว้
format : git reset --hard {comit id}
```
git reset --hard 8ec6
```
# Other
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment