git常用的几个命令
-- 加文件加入待提交区
git add file
-- 提交,并加上描述
git commit -m '描述
-- push到远程仓库
git push origin master
- - clone分支
git clone http://***/***.git
-- 拉取并合并
git pull
-- 加文件加入待提交区
git add file
-- 提交,并加上描述
git commit -m '描述
-- push到远程仓库
git push origin master
- - clone分支
git clone http://***/***.git
-- 拉取并合并
git pull