Please enable JavaScript.
Coggle requires JavaScript to display documents.
Git, working directory, nano index.js để mở file và edit, :wp : write and…
Git
git branch và git checkout
Hiển thị tất cả branch
git branch [tên nhánh]
Tạo một nhánh mới
git branch [ B1 ] [ C1 ]
Tạo một branch mới trên nhánh C1
git checkout -b B3
Tạo một branch mới B3
git branch -d B3
Xóa branch B3
git commit
git commit -m "message"
git commit -a -m "message"
vừa commit , vừa add
git commit --amend -a
commit vào một commit đã tạo với những thay đổi nhỏ
git merge
git merge
Fast forward
git merge B5 --no-ff
git push
git push -u origin master
kết nối remote branch và local branch
git push --force
Ghi đè lịch sử local lên remote
git log
git log --oneline
Để biết commit hiện tại trong local là gì?
git rebase
git rebase master
git init
Khởi tạo git dưới local
git status
staging
Nơi review để chuẩn bị commit
git reset
Quay lại commit trước
git squash
dùng để gộp commit
git cherry-pick C2
Lấy commit C2 từ một người khác để viết code tiếp
Ignoring files
working directory
staging area
unstaging
nano index.js
để mở file và edit
:wp : write and quit
git add
git rm --cached <file>
repository
git remote add origin <link>