test-repo
Git


test-repo | Git | |
---|---|---|
2 | 304 | |
5 | 53,829 | |
- | 0.9% | |
1.5 | 10.0 | |
25 days ago | 3 days ago | |
JavaScript | C | |
- | GNU General Public License v3.0 or later |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
test-repo
-
Getting Started with GitHub CLI: A Quick Guide to Installation and Usage
gh repo delete https://github.com/zpqrtbnk/test-repo.git
-
Automate git deploys
--- - hosts: localhost gather_facts: false tasks: - name: clone repo test git: repo: https://github.com/zpqrtbnk/test-repo.git dest: /home/emanuel/git-test/ clone: yes update: yes
Git
-
I stopped everything and started writing C again
I second "Modern C" by Jen Gustedt.
- Get the `cdecl` tool to build intuition about function signatures. What does "int( * ( *foo)(void))[3]" mean?
- Write it yourself.
- Be disciplined. Develop good hygiene with compiler flags, memory/address checks, and even fuzzing.
- Read good source code such as the linux kernel. This is an amusing header file from the linux kernel that defines some banned files. This is wisdom if you choose to follow it: https://github.com/git/git/blob/master/banned.h
- Push the language to its limits. Play with memory and data structures. Inspect everything. This book "Data-Oriented Design" by Richard Fabien is a great to explore as well. It's about organizing your data for efficient processing.
-
Why "alias" is my last resort for aliases
```
Internally git uses the __git_complete function to set up completions for its subcommands, though this may be specific to your OS/distro and perhaps or git version.
This does seem to ship as part of git now, here[1].
[1]: https://github.com/git/git/blob/6a64ac7b014fa2cfa7a69af3c253...
-
Git clone –depth 2 is better than –depth 1 if you want to Git push
It isn't mangled. The commit is there as-is. Instead the repository has a file, ".git/shallow", which tells it not to look for the parents of any commit listed there. If you do a '--depth 1' clone, the file will list the single commit that was retrieved.
This is similar to the 'grafts' feature. Indeed 'git log' says 'grafted'.
You can test this using "git cat-file -p" with the commit that got retrieved, to print the raw object.
> git clone --depth 1 https://github.com/git/git
-
Why Git Subtree Requires Explicit Installation: Understanding Its Role and How It Becomes a Core Git Command
git clone https://github.com/git/git cd git/contrib/subtree
-
Oh Shit, Git?
Not trying to defend the choice of `git checkout` over `git switch` (and `git restore`) but they were introduced in v2.23 of Git [0], which was released about 5 years ago [1]. If you take a look at their help pages, they still include a warning that says
> THIS COMMAND IS EXPERIMENTAL. THE BEHAVIOR MAY CHANGE.
Granted, it has been in there for basically as long as the command(s) existed [2] and after 5 years perhaps it might be time to no longer call it experimental.
Still, it does seem like `git checkout` might be a bit more backwards compatible (and also reflective of the time when this website was originally created).
[0] https://github.com/git/git/blob/757161efcca150a9a96b312d9e78...
- Git v2.48.1 security fixes for CVE-2024-52006 and CVE-2024-50349
-
Debugging with git bisect: A Smarter Approach to Bug Localization
Github: bisect
-
How to create own Python project in 5 minutes
Tools used on this article: psp: repository -- docs git: repository -- docs docker: repository -- docs make: repository -- docs python: repository -- docs
-
My Hacktoberfest Journey: From First Pull Request to the Hall of Fame
GIT Version Control System
-
Open source, learn in public e minha experiência
O sistema de versionamento de código mais utilizado, git
What are some alternatives?
git-repo-watcher - A simple bash script to watch a git repository and pull upstream changes if needed.
Subversion - Mirror of Apache Subversion
Apokto - An iOS jailbreak repo that allows you to configure and save a list of repos.
jj - A Git-compatible VCS that is both simple and powerful [Moved to: https://github.com/jj-vcs/jj]
git - A fork of Git containing Windows-specific patches.
vscode-gitlens - Supercharge Git inside VS Code and unlock untapped knowledge within each repository — Visualize code authorship at a glance via Git blame annotations and CodeLens, seamlessly navigate and explore Git repositories, gain valuable insights via rich visualizations and powerful comparison commands, and so much more

