cd ~/workspace/git-sample
mkdir hello.git
cd hello.git
git init --bare
cd ..
git clone ~/workspace/git-sample/hello.git john-hello
cd ~/workspace/git-sample/john-hello
git config user.email "[email protected]"
git config user.name "john"
echo "123" >> hello.txt
git add .
git commit -m 'create hello file'
cd ~/workspace/git-sample/
git clone ~/workspace/git-sample/hello.git lily-hello
cd ~/workspace/git-sample/lily-hello
git config user.email "[email protected]"
git config user.name "lily"
vi hello.txt
123 456
git add .
git commit -m 'add 456'
git push -u origin master
vi hello.txt
123 789
git add .
git commit -m 'add 789'
git push -u origin master
git pull
git diff
# vi 編輯衝突
git add .
git commit
git push -u origin master