git查询branch commit代码量以及提交数目 Knowledge, like candlelight, can illuminate a person and countless people. 由于自己写的一些项目都是在local 端,没有在github上,于是想怎么去获取我自己commit 提交多少次以及代码改动量。 查询了一下资料,这里记录一下相关方法。 1.根据用户名时间段统计 gitlog--author=...
git rev-parse --short HEAD# 获取短commit idsdk_commit_id=`gitlog--abbrev-commit --pretty=oneline -1 |cut-c 1-7`# 获取短commit id
1.git branch创建分支 创建newImage分支 git branch newImage 提交新branch分支 git commit 这里注意到newImage并没有动,master到下面去了,这证明我们并未切换到newImage这个分支上 在git中,*这个符号代表你现在所在的分支。 于是我们需要—— 2.git checkout 切换分支 如果我们目前在master分支,情况如下图: 我们...
方法很直观,到需要选取的branch记下要pick的commit hash,然后回到要合并commit的branch使用git cherry-pick hash就可以了: 该方法只适合选取单一commit,如果需要合并某个范围的commit,那么rebase是个不错的选择。
或者,您可以使用branch命令,然后使用checkout命令。 控制台 git branch feature-23 git checkout feature-23 修改某些文件并执行commit命令后,feature-23 分支指向最新的提交,而 main 分支仍然指向上一个提交。 -a选项用于首先暂存更改,并立即将更改保存在 Git 目录中。-m选项用于提供消息。 在该示例中,提交消息使...
git checkout <branch_name> 切换到指定的分支。创建并切换到新分支 git checkout -b <branch_name> 创建一个新分支并立即切换到该分支。这个命令常用于快速开始一个新功能的开发。合并分支 git merge <branch_name> 将指定分支的内容合并到当前分支。合并时,Git会尝试自动解决冲突,如果遇到无法自动解决的冲突,...
如果没必要生成新的 commit,那直接使用 `git commit --amend` 就可以避免。 ### 少用 `git merge` 多用 `git rebase`比如这种:```Merge branch 'feature-A' of github.com/qiniu/review into feature-B```说的是把远程分支 feature-A 的代码合并到 feature-B 里。这里的 feature-A 通常是主分支。
git checkout <branch_name> 创建并切换到新分支:git checkout -b <branch_name> 删除本地分支:git branch -d <branch_name> 2.2合并分支:git merge 当一个功能开发完成后,可以将该功能所在的分支合并到主分支(如 main 或 master)。git checkout maingit merge <feature_branch> 合并操作可能会产生...
$ git switch <branch-name> 另外,如果希望创建并切换到一个新分支,命令为: $ git switch -c <new-branch-name> 这种明确的命令设计减少了误解,尤其是对于新手开发者来说,使用起来更加简单。 接下来是gitrestore命令,它也是在Git 2.23.0版本中引入的,用于更安全地恢复工作目录中的文件内容。该命令主要用于撤销...
git diff (displays the difference between two versions of a file) git ignore git tag (add a tag to a specific commit) git tag (verify tag) git tag -d (delete a tag) git branch (develop different features of your project in parallel) ...