1. 程式人生 > >git的基本操作

git的基本操作

緩存 div mit light eat git pull add 倉庫 git

1、加入緩存

git add .

2、拉到本地

git pull origin feat_1st_phase

3、提交commit

git commit  -m ‘test‘

4、推到倉庫

git push origin feat_1st_phase

git的基本操作