Git基础命令使用(个人总结)

个人在开发中整理常用的git命令,相信很多人会需要到的。

全局配置信息:

    git config --global user.name "Your name"
    git config --global user.email "email@example.com"
        git config --global credential.helper store
        git config --list  //查询用户信息

删除tag

git tag | grep dev | xargs git tag -d
git show-ref --tag | grep dev | awk '{print $2}' | xargs git push origin --delete

增加忽略文件

        git rm -r --cached .
        git add .
        git commit -m 'update .gitignore'

 初始化项目

        git init 
        git add . 
        git commit -m 'init project'
        git remote add origin newurl
        git pull origin master --allow-unrelated-histories  //远程已经有文件情况下
        git push -u origin master

创建新的分支

    git branch -b 1.0.1
    git push origin 1.0.1 提交远程分支

删除远程分支:

    git push origin --delete <branchName>
    git init 提交远程
    添加远程版本库,如果版本库不存在,则会创建版本库
    git remote add origin https://git.coding.net/moyuanhui/Test.git
    更新本地代码(远程可能有些代码本地是没有的),origin是刚才创建的版本库
    git pull origin master
    提交本地代码
    git push origin master  

创建版本库

    git init
    git add filename
    git commit -m 'message'

查看文件不同

    git diff filename.txt 是工作区和暂存区的比较
    git diff --cached 是暂存区和分支比较
    git diff HEAD -- filename.txt 比较工作区和版本库的文件区别
    git log 版本历史
    git reflog 查看记录每一次命令
    git reset --hard HEAD^ 回退上一个版本
    git reset --head commitId 回退制定版本

撤销暂存区的文件修改

    git reset HEAD readme.txt
    git checkout -- readme.txt

从版本库中删除文件

    git rm test.txt
    git commit -m 'remove test.txt'

创建分支

    git checkout -b newBranch 创建newBranch分支
    ==
    git branch newBranch
    git checkout newBranch

查看当前分支

    git branch

合并分支

    git merge dev 表示合并dev分支到当前分支上
    查看分支:git branch

    创建分支:git branch <name>

    切换分支:git checkout <name>

    创建+切换分支:git checkout -b <name>
    
    合并某分支到当前分支:git merge <name>

    删除分支:git branch -d <name>

工作现场储藏:

    git stash
    git checkout -b issue-101
    git stash list    查看stash
    git stash apply stash@{0} 恢复指定的stash

创建标签:

    git tag v1.0  创建标签
    git tag 查看现有标签
    git log --pretty=oneline --abbrev-commit 查看提交历史记录
    git tag v1.0 2342534534 对已经提交的打上标签
    git show v1.0 可以用git show <tagname>查看标签信息:
    git tag -a v0.1 -m "说明文字"  创建带有说明的标签
    git tag -d v0.1 删除标签
    git push origin v1.0 推送某个标签到远程
    git push origin --tags 推送所有标签到远程

删除远程标签:

    git tag -d v1.0 先删除本地标签
    git push origin :refs/tags/v1.0 再删除远程标签

比较两个分支文件差异

    git diff branch1 branch2 --stat

拉取远程分支

表示拉取不成功。我们需要先执行

git fetch
然后再执行

git checkout -b 本地分支名 origin/远程分支名

修改远程地址

git remote set-url origin 新地址url

Authentication failed for错误解决

git config --system --unset credential.helper

本文版权归作者和博客园共有,欢迎转载,须保留此段声明,并给出原文链接,谢谢!
如果阅读了本文章,觉得有帮助,欢迎点击右下角推荐

    原文作者:牛嗷嗷
    原文地址: https://www.cnblogs.com/moyhui/p/8306503.html
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞