Sử dụng git

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Document</title>
</head>
<body>
	git config --global user.name "Pham Ngoc Tuong"
	git config --global user.email "tuongpn@shopdunk.vn"
	git init
	git remote add origin https://lionelpham@bitbucket.org/lionelpham/ischoolvn.git
	Kiểm tra xem : git remote -v nhình thấy fetch và push
	git status
	git add . (All)
	Ví dụ 1: git add new.php
	Ví dụ 2: git add images/
	git status
	git commit -m "2018-09-18"
	Ví dụ: 
	git push -u origin master
	Nếu gặp lỗi thì thêm dòng này ...
	git push -u origin master --force
	git pull origin master
	Mật khẩu: lionelpham@
	<!-- Quy trình rẽ làm lệnh rẽ nhánh -->
		Sau khi oke các bước trên 
		Bước 1: Create branch
		git branch task1
		git branch task2
		Bước 2: go to branch
		git checkout task1
		git checkout task2
		Bước 3: Use
		Tạo file freetuts.txt Welcome to Freetuts.net
		git add freetuts.txt
		git commit -m "Them file freetuts.txt"
		git push -u origin master --force
		Bước 4: Vào task2 thêm thành quả nào.
		Minh chứng 2 branch tách biệt nhau
		+ Ở các bài trước mình có nói là mỗi branch sẽ tách biệt nhau, và để minh chứng điều đó thì mình sẽ đưa ra một ví dụ.
		+ Tại branch task1 bạn hãy tạo một file file1.txt, sau đó thực hiện thao tác commit.  Tiếp theo bạn chuyển sang branch task2 thì lập tức file1.txt sẽ biến mất vì task2 không hề tồn tại file1.txt. Nhưng khi bạn chuyển sang lại branch task1 thì lập tức file đó lại xuất hiện.
		ví dụ: Bạn hãy tạo một file tên là freetuts.txt với nội dung như sau
		Welcome to Freetuts.net
		git checkout task2
		git add freetuts.txt
		git commit -m "Them file freetuts.txt"
		sudo git clone  https://gitlab.com/shopdunk-web/tintuc-shopdunk.git
</body>
</html>

Last updated