git 常用命令

克隆仓库

git clone  repository url

拉取代码

git pull

添加文件:

>>> git add folder/file

>>> git commit -m "add description"

>>> git push


删除仓库文件:

>>> git rm -r --cached folder/file

>>> git commit -m "delete description"

>>> git push

你可能感兴趣的:(git 常用命令)