美文网首页
git 常用命令

git 常用命令

作者: Dev_Mob | 来源:发表于2016-04-26 15:12 被阅读10次
    git init //初始化
    git clone “https://github.com/CXDev/CoreXin.git"
    git add . //添加本地代码
    git remove ** //删除文件
    git commit -m “提交日志” //提交代码到本地git仓库,追加日志
    git push  //提交代码到服务器
    git pull  //获取服务器最新代码
    git branch -a  //查看所有分支
    git branch -r  //查看远程分支
    git branch -d  //删除分支
    git branch     //新建远程分支
    git status     //查看状态
    git log       //查看日志
    

    相关文章

      网友评论

          本文标题:git 常用命令

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