Git工具使用笔记

git clone https://github.com/chuzihang01/test04.git
cd test04
ls
touch ten.php
vim ten.php
cat ten.php
git add ten.php
git commit -m '第一次通过git提交到仓库'
git status
git push
git config --global user.email "you@example.com" //绑定Github用户邮箱
git config --global user.name "Your Name" //绑定Github用户账号