git基本操作命令

git

推到远端(自己在本地改了代码)

1
2
3
4
5
git add .

git commit -m "消息内容"

git push

拉到本地,即:更新本地代码(别人改了代码)

1
git pull