美文网首页
git 常用操作

git 常用操作

作者: IRONYT | 来源:发表于2016-10-21 10:29 被阅读10次
    设置用户名密码
            git config --global user.name [username]
            git config --global user.email [email]
    
    文件操作
            撤销修改:git checkout -- file
            删除文件:git rm file
            查看状态:git status
            添加记录:git add file 或 git add .
            添加描述:git commit -m "miao shu nei rong"
            同步数据:git pull
            提交数据:git push origin name
    
    分支操作
            切换分支:git checkout name
            查看分支:git branch
            创建分支:git branch name
            切换分支:git checkout name
            创建切换:git checkout -b name
            并到当前:git merge name
            删除分支:git branch -d name
            删除远程:git push origin :name
    
    删除项目中.git文件命令,可以解决 Xcode missing file 问题:
            find . -type d -name ".git"|xargs rm -rf
    
    上传项目到github操作步骤
    1、初始化git仓库
              git init
    2、添加项目到暂存区
              git add .
    3、提交代码到本地仓库
              git commit -m "提交信息"
    4、把项目链接到github
              git remote add origin https://github.com/FISHBALL1/DropList
        如果  fatal:remote origin already exists
              git remote rm origin
              git remote add origin https://github.com/FISHBALL1/DropList
    5、提交到github
              git push -u origin master
    
    
    
    

    相关文章

      网友评论

          本文标题:git 常用操作

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