然后去了解了下Contributions的规则,发现只会记录以下几种: Issues 和 pull requests 这个操作是在一年之内 这个操作是针对一个独立的仓库,不能是fork Commits 当你的commits满足以下条件时,它才会被展示出来: 一年之内提交的commits commits使用的email地址是与你的Github账号相关联的 这些commits是在一个独立的仓库...
About commits Similar to saving a file that's been edited, a commit records changes to one or more files in your branch. Git assigns each commit a unique ID, called a SHA or hash, that identifies: The specific changes When the changes were made Who created the changes When you make a...
In compliance with the EU-U.S. DPF, the UK Extension to the EU-U.S. DPF, and the Swiss-U.S. DPF, GitHub commits to resolve DPF Principles-related complaints about our collection and use of your personal information. EU, UK, and Swiss individuals with inquiries or complaints regarding ...
11 Commits bin lib spec .gitignore .rspec .travis.yml Gemfile Guardfile LICENSE.txt README.md Rakefile showlog.gemspec README MIT license Showlog Installation Add this line to your application's Gemfile: gem 'showlog' And then execute: ...
Folders and files Name Last commit message Last commit date Latest commit kimkulling and kullingk Refactor (#6127) May 3, 2025 0c02313·May 3, 2025 History 12,669 Commits .github cmake-modules code contrib doc fuzz include/assimp packaging/windows-innosetup ...
刚开始init的时候提醒no commits yet,没有任何可提交的东西 但是可以使用git add来追踪,我们先添加文件 将项目文件添加到本地仓库的暂存区(还没有真正添加到本地的Git仓库,可以撤销) 通过命令: git add README.md 运行完上面的命令后,我们可以再通过git status查看当前的状态: ...
bdeea1b· Mar 28, 2023 History2,509 Commits chrome-extension chrome-extension New version build 2.0.22 Mar 1, 2018 configData configData Added folder holder file so that git will keep it Feb 19, 2016 coverage coverage New version build 1.3.731 Mar 19, 2016 doc doc Add customdriver met...
Another way to tag commits is with a lightweight tag. This is basically the commit checksum stored in a file – no other information is kept. To create a lightweight tag, don’t supply the-a,-s, or-moption: This time, if you rungit showon the tag, you don’t see the extra tag...
or delete branchescheckout Switch branches or restore working tree filescommit Record changes to the repositorydiff Show changes between commits, commit and working tree, etcmerge Join two or more development histories togetherrebase Reapply commits on top of another base tiptag Create, list, delete...
git log显示所有的提交日志(Show all commits) git log -p这个文件的最后一次提交日志(Shwo changes over time for a specific file) git log --author=这个提交者最后一次的提交日志(Show changes over time for a specific committer) git blame此文件被谁修改了(Who changed what and when in file) ...