美文网首页
git 常用命令

git 常用命令

作者: TedFan | 来源:发表于2019-04-01 14:03 被阅读0次

克隆仓库

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 常用命令

      本文链接:https://www.haomeiwen.com/subject/snjulqtx.html